mirror of
https://gitea.tendokyu.moe/Hay1tsme/artemis.git
synced 2026-02-14 11:47:28 +08:00
add back games, conform them to new title dispatch
This commit is contained in:
21
titles/cxb/__init__.py
Normal file
21
titles/cxb/__init__.py
Normal file
@@ -0,0 +1,21 @@
|
||||
from titles.cxb.index import CxbServlet
|
||||
from titles.cxb.const import CxbConstants
|
||||
from titles.cxb.database import CxbData
|
||||
from titles.cxb.read import CxbReader
|
||||
|
||||
index = CxbServlet
|
||||
database = CxbData
|
||||
reader = CxbReader
|
||||
|
||||
use_default_title = False
|
||||
include_protocol = True
|
||||
title_secure = True
|
||||
game_codes = [CxbConstants.GAME_CODE]
|
||||
trailing_slash = True
|
||||
use_default_host = False
|
||||
|
||||
include_port = True
|
||||
uri = "http://$h:$p/" # If you care about the allnet response you're probably running with no SSL
|
||||
host = ""
|
||||
|
||||
current_schema_version = 1
|
||||
426
titles/cxb/base.py
Normal file
426
titles/cxb/base.py
Normal file
@@ -0,0 +1,426 @@
|
||||
import logging
|
||||
import json
|
||||
from decimal import Decimal
|
||||
from base64 import b64encode
|
||||
from typing import Any, Dict
|
||||
from hashlib import md5
|
||||
from datetime import datetime
|
||||
|
||||
from core.config import CoreConfig
|
||||
from titles.cxb.config import CxbConfig
|
||||
from titles.cxb.const import CxbConstants
|
||||
from titles.cxb.database import CxbData
|
||||
|
||||
class CxbBase():
|
||||
def __init__(self, cfg: CoreConfig, game_cfg: CxbConfig) -> None:
|
||||
self.config = cfg # Config file
|
||||
self.game_config = game_cfg
|
||||
self.data = CxbData(cfg) # Database
|
||||
self.game = CxbConstants.GAME_CODE
|
||||
self.logger = logging.getLogger("cxb")
|
||||
self.version = CxbConstants.VER_CROSSBEATS_REV
|
||||
|
||||
def handle_action_rpreq_request(self, data: Dict) -> Dict:
|
||||
return({})
|
||||
|
||||
def handle_action_hitreq_request(self, data: Dict) -> Dict:
|
||||
return({"data":[]})
|
||||
|
||||
def handle_auth_usercheck_request(self, data: Dict) -> Dict:
|
||||
profile = self.data.profile.get_profile_index(0, data["usercheck"]["authid"], self.version)
|
||||
if profile is not None:
|
||||
self.logger.info(f"User {data['usercheck']['authid']} has CXB profile")
|
||||
return({"exist": "true", "logout": "true"})
|
||||
|
||||
self.logger.info(f"No profile for aime id {data['usercheck']['authid']}")
|
||||
return({"exist": "false", "logout": "true"})
|
||||
|
||||
def handle_auth_entry_request(self, data: Dict) -> Dict:
|
||||
self.logger.info(f"New profile for {data['entry']['authid']}")
|
||||
return({"token": data["entry"]["authid"], "uid": data["entry"]["authid"]})
|
||||
|
||||
def handle_auth_login_request(self, data: Dict) -> Dict:
|
||||
profile = self.data.profile.get_profile_index(0, data["login"]["authid"], self.version)
|
||||
|
||||
if profile is not None:
|
||||
self.logger.info(f"Login user {data['login']['authid']}")
|
||||
return({"token": data["login"]["authid"], "uid": data["login"]["authid"]})
|
||||
|
||||
self.logger.warn(f"User {data['login']['authid']} does not have a profile")
|
||||
return({})
|
||||
|
||||
def handle_action_loadrange_request(self, data: Dict) -> Dict:
|
||||
range_start = data['loadrange']['range'][0]
|
||||
range_end = data['loadrange']['range'][1]
|
||||
uid = data['loadrange']['uid']
|
||||
|
||||
self.logger.info(f"Load data for {uid}")
|
||||
profile = self.data.profile.get_profile(uid, self.version)
|
||||
songs = self.data.score.get_best_scores(uid)
|
||||
|
||||
data1 = []
|
||||
index = []
|
||||
versionindex = []
|
||||
|
||||
for profile_index in profile:
|
||||
profile_data = profile_index["data"]
|
||||
|
||||
if int(range_start) == 800000:
|
||||
return({"index":range_start, "data":[], "version":10400})
|
||||
|
||||
if not ( int(range_start) <= int(profile_index[3]) <= int(range_end) ):
|
||||
continue
|
||||
#Prevent loading of the coupons within the profile to use the force unlock instead
|
||||
elif 500 <= int(profile_index[3]) <= 510:
|
||||
continue
|
||||
#Prevent loading of songs saved in the profile
|
||||
elif 100000 <= int(profile_index[3]) <= 110000:
|
||||
continue
|
||||
#Prevent loading of the shop list / unlocked titles & icons saved in the profile
|
||||
elif 200000 <= int(profile_index[3]) <= 210000:
|
||||
continue
|
||||
#Prevent loading of stories in the profile
|
||||
elif 900000 <= int(profile_index[3]) <= 900200:
|
||||
continue
|
||||
else:
|
||||
index.append(profile_index[3])
|
||||
data1.append(b64encode(bytes(json.dumps(profile_data, separators=(',', ':')), 'utf-8')).decode('utf-8'))
|
||||
|
||||
'''
|
||||
100000 = Songs
|
||||
200000 = Shop
|
||||
300000 = Courses
|
||||
400000 = Events
|
||||
500000 = Challenges
|
||||
600000 = Bonuses
|
||||
700000 = rcLog
|
||||
800000 = Partners
|
||||
900000 = Stories
|
||||
'''
|
||||
|
||||
# Coupons
|
||||
for i in range(500,510):
|
||||
index.append(str(i))
|
||||
couponid = int(i) - 500
|
||||
dataValue = [{
|
||||
"couponId":str(couponid),
|
||||
"couponNum":"1",
|
||||
"couponLog":[],
|
||||
}]
|
||||
data1.append(b64encode(bytes(json.dumps(dataValue[0], separators=(',', ':')), 'utf-8')).decode('utf-8'))
|
||||
|
||||
|
||||
# ShopList_Title
|
||||
for i in range(200000,201451):
|
||||
index.append(str(i))
|
||||
shopid = int(i) - 200000
|
||||
dataValue = [{
|
||||
"shopId":shopid,
|
||||
"shopState":"2",
|
||||
"isDisable":"t",
|
||||
"isDeleted":"f",
|
||||
"isSpecialFlag":"f"
|
||||
}]
|
||||
data1.append(b64encode(bytes(json.dumps(dataValue[0], separators=(',', ':')), 'utf-8')).decode('utf-8'))
|
||||
|
||||
#ShopList_Icon
|
||||
for i in range(202000,202264):
|
||||
index.append(str(i))
|
||||
shopid = int(i) - 200000
|
||||
dataValue = [{
|
||||
"shopId":shopid,
|
||||
"shopState":"2",
|
||||
"isDisable":"t",
|
||||
"isDeleted":"f",
|
||||
"isSpecialFlag":"f"
|
||||
}]
|
||||
data1.append(b64encode(bytes(json.dumps(dataValue[0], separators=(',', ':')), 'utf-8')).decode('utf-8'))
|
||||
|
||||
#Stories
|
||||
for i in range(900000,900003):
|
||||
index.append(str(i))
|
||||
storyid = int(i) - 900000
|
||||
dataValue = [{
|
||||
"storyId":storyid,
|
||||
"unlockState1":["t"] * 10,
|
||||
"unlockState2":["t"] * 10,
|
||||
"unlockState3":["t"] * 10,
|
||||
"unlockState4":["t"] * 10,
|
||||
"unlockState5":["t"] * 10,
|
||||
"unlockState6":["t"] * 10,
|
||||
"unlockState7":["t"] * 10,
|
||||
"unlockState8":["t"] * 10,
|
||||
"unlockState9":["t"] * 10,
|
||||
"unlockState10":["t"] * 10,
|
||||
"unlockState11":["t"] * 10,
|
||||
"unlockState12":["t"] * 10,
|
||||
"unlockState13":["t"] * 10,
|
||||
"unlockState14":["t"] * 10,
|
||||
"unlockState15":["t"] * 10,
|
||||
"unlockState16":["t"] * 10
|
||||
}]
|
||||
data1.append(b64encode(bytes(json.dumps(dataValue[0], separators=(',', ':')), 'utf-8')).decode('utf-8'))
|
||||
|
||||
for song in songs:
|
||||
song_data = song["data"]
|
||||
songCode = []
|
||||
|
||||
songCode.append({
|
||||
"mcode": song_data['mcode'],
|
||||
"musicState": song_data['musicState'],
|
||||
"playCount": song_data['playCount'],
|
||||
"totalScore": song_data['totalScore'],
|
||||
"highScore": song_data['highScore'],
|
||||
"everHighScore": song_data['everHighScore'] if 'everHighScore' in song_data else ["0","0","0","0","0"],
|
||||
"clearRate": song_data['clearRate'],
|
||||
"rankPoint": song_data['rankPoint'],
|
||||
"normalCR": song_data['normalCR'] if 'normalCR' in song_data else ["0","0","0","0","0"],
|
||||
"survivalCR": song_data['survivalCR'] if 'survivalCR' in song_data else ["0","0","0","0","0"],
|
||||
"ultimateCR": song_data['ultimateCR'] if 'ultimateCR' in song_data else ["0","0","0","0","0"],
|
||||
"nohopeCR": song_data['nohopeCR'] if 'nohopeCR' in song_data else ["0","0","0","0","0"],
|
||||
"combo": song_data['combo'],
|
||||
"coupleUserId": song_data['coupleUserId'],
|
||||
"difficulty": song_data['difficulty'],
|
||||
"isFullCombo": song_data['isFullCombo'],
|
||||
"clearGaugeType": song_data['clearGaugeType'],
|
||||
"fieldType": song_data['fieldType'],
|
||||
"gameType": song_data['gameType'],
|
||||
"grade": song_data['grade'],
|
||||
"unlockState": song_data['unlockState'],
|
||||
"extraState": song_data['extraState']
|
||||
})
|
||||
index.append(song_data['index'])
|
||||
data1.append(b64encode(bytes(json.dumps(songCode[0], separators=(',', ':')), 'utf-8')).decode('utf-8'))
|
||||
|
||||
for v in index:
|
||||
try:
|
||||
v_profile = self.data.profile.get_profile_index(0, uid, self.version)
|
||||
v_profile_data = v_profile["data"]
|
||||
versionindex.append(int(v_profile_data["appVersion"]))
|
||||
except:
|
||||
versionindex.append('10400')
|
||||
|
||||
return({"index":index, "data":data1, "version":versionindex})
|
||||
|
||||
def handle_action_saveindex_request(self, data: Dict) -> Dict:
|
||||
save_data = data['saveindex']
|
||||
|
||||
try:
|
||||
#REV Omnimix Version Fetcher
|
||||
gameversion = data['saveindex']['data'][0][2]
|
||||
self.logger.warning(f"Game Version is {gameversion}")
|
||||
except:
|
||||
pass
|
||||
|
||||
if "10205" in gameversion:
|
||||
self.logger.info(f"Saving CrossBeats REV profile for {data['saveindex']['uid']}")
|
||||
#Alright.... time to bring the jank code
|
||||
|
||||
for value in data['saveindex']['data']:
|
||||
|
||||
if 'playedUserId' in value[1]:
|
||||
self.data.profile.put_profile(data['saveindex']['uid'], self.version, value[0], value[1])
|
||||
if 'mcode' not in value[1]:
|
||||
self.data.profile.put_profile(data['saveindex']['uid'], self.version, value[0], value[1])
|
||||
if 'shopId' in value:
|
||||
continue
|
||||
if 'mcode' in value[1] and 'musicState' in value[1]:
|
||||
song_json = json.loads(value[1])
|
||||
|
||||
songCode = []
|
||||
songCode.append({
|
||||
"mcode": song_json['mcode'],
|
||||
"musicState": song_json['musicState'],
|
||||
"playCount": song_json['playCount'],
|
||||
"totalScore": song_json['totalScore'],
|
||||
"highScore": song_json['highScore'],
|
||||
"clearRate": song_json['clearRate'],
|
||||
"rankPoint": song_json['rankPoint'],
|
||||
"combo": song_json['combo'],
|
||||
"coupleUserId": song_json['coupleUserId'],
|
||||
"difficulty": song_json['difficulty'],
|
||||
"isFullCombo": song_json['isFullCombo'],
|
||||
"clearGaugeType": song_json['clearGaugeType'],
|
||||
"fieldType": song_json['fieldType'],
|
||||
"gameType": song_json['gameType'],
|
||||
"grade": song_json['grade'],
|
||||
"unlockState": song_json['unlockState'],
|
||||
"extraState": song_json['extraState'],
|
||||
"index": value[0]
|
||||
})
|
||||
self.data.score.put_best_score(data['saveindex']['uid'], song_json['mcode'], self.version, value[0], songCode[0])
|
||||
return({})
|
||||
else:
|
||||
self.logger.info(f"Saving CrossBeats REV Sunrise profile for {data['saveindex']['uid']}")
|
||||
|
||||
#Sunrise
|
||||
try:
|
||||
profileIndex = save_data['index'].index('0')
|
||||
except:
|
||||
return({"data":""}) #Maybe
|
||||
|
||||
profile = json.loads(save_data["data"][profileIndex])
|
||||
aimeId = profile["aimeId"]
|
||||
i = 0
|
||||
|
||||
for index, value in enumerate(data["saveindex"]["data"]):
|
||||
if int(data["saveindex"]["index"][index]) == 101:
|
||||
self.data.profile.put_profile(aimeId, self.version, data["saveindex"]["index"][index], value)
|
||||
if int(data["saveindex"]["index"][index]) >= 700000 and int(data["saveindex"]["index"][index])<= 701000:
|
||||
self.data.profile.put_profile(aimeId, self.version, data["saveindex"]["index"][index], value)
|
||||
if int(data["saveindex"]["index"][index]) >= 500 and int(data["saveindex"]["index"][index]) <= 510:
|
||||
self.data.profile.put_profile(aimeId, self.version, data["saveindex"]["index"][index], value)
|
||||
if 'playedUserId' in value:
|
||||
self.data.profile.put_profile(aimeId, self.version, data["saveindex"]["index"][index], json.loads(value))
|
||||
if 'mcode' not in value and "normalCR" not in value:
|
||||
self.data.profile.put_profile(aimeId, self.version, data["saveindex"]["index"][index], json.loads(value))
|
||||
if 'shopId' in value:
|
||||
continue
|
||||
|
||||
# MusicList Index for the profile
|
||||
indexSongList = []
|
||||
for value in data["saveindex"]["index"]:
|
||||
if int(value) in range(100000,110000):
|
||||
indexSongList.append(value)
|
||||
|
||||
for index, value in enumerate(data["saveindex"]["data"]):
|
||||
if 'mcode' not in value:
|
||||
continue
|
||||
if 'playedUserId' in value:
|
||||
continue
|
||||
|
||||
data1 = json.loads(value)
|
||||
|
||||
songCode = []
|
||||
songCode.append({
|
||||
"mcode": data1['mcode'],
|
||||
"musicState": data1['musicState'],
|
||||
"playCount": data1['playCount'],
|
||||
"totalScore": data1['totalScore'],
|
||||
"highScore": data1['highScore'],
|
||||
"everHighScore": data1['everHighScore'],
|
||||
"clearRate": data1['clearRate'],
|
||||
"rankPoint": data1['rankPoint'],
|
||||
"normalCR": data1['normalCR'],
|
||||
"survivalCR": data1['survivalCR'],
|
||||
"ultimateCR": data1['ultimateCR'],
|
||||
"nohopeCR": data1['nohopeCR'],
|
||||
"combo": data1['combo'],
|
||||
"coupleUserId": data1['coupleUserId'],
|
||||
"difficulty": data1['difficulty'],
|
||||
"isFullCombo": data1['isFullCombo'],
|
||||
"clearGaugeType": data1['clearGaugeType'],
|
||||
"fieldType": data1['fieldType'],
|
||||
"gameType": data1['gameType'],
|
||||
"grade": data1['grade'],
|
||||
"unlockState": data1['unlockState'],
|
||||
"extraState": data1['extraState'],
|
||||
"index": indexSongList[i]
|
||||
})
|
||||
|
||||
self.data.score.put_best_score(aimeId, data1['mcode'], self.version, indexSongList[i], songCode[0])
|
||||
i += 1
|
||||
return({})
|
||||
|
||||
def handle_action_sprankreq_request(self, data: Dict) -> Dict:
|
||||
uid = data['sprankreq']['uid']
|
||||
self.logger.info(f"Get best rankings for {uid}")
|
||||
p = self.data.score.get_best_rankings(uid)
|
||||
|
||||
rankList: list[Dict[str, Any]] = []
|
||||
|
||||
for rank in p:
|
||||
if rank["song_id"] is not None:
|
||||
rankList.append({
|
||||
"sc": [rank["score"],rank["song_id"]],
|
||||
"rid": rank["rev_id"],
|
||||
"clear": rank["clear"]
|
||||
})
|
||||
else:
|
||||
rankList.append({
|
||||
"sc": [rank["score"]],
|
||||
"rid": rank["rev_id"],
|
||||
"clear": rank["clear"]
|
||||
})
|
||||
|
||||
return({
|
||||
"uid": data["sprankreq"]["uid"],
|
||||
"aid": data["sprankreq"]["aid"],
|
||||
"rank": rankList,
|
||||
"rankx":[1,1,1]
|
||||
})
|
||||
|
||||
def handle_action_getadv_request(self, data: Dict) -> Dict:
|
||||
return({"data":[{"r":"1","i":"100300","c":"20"}]})
|
||||
|
||||
def handle_action_getmsg_request(self, data: Dict) -> Dict:
|
||||
return({"msgs":[]})
|
||||
|
||||
def handle_auth_logout_request(self, data: Dict) -> Dict:
|
||||
return({"auth":True})
|
||||
|
||||
def handle_action_rankreg_request(self, data: Dict) -> Dict:
|
||||
uid = data['rankreg']['uid']
|
||||
self.logger.info(f"Put {len(data['rankreg']['data'])} rankings for {uid}")
|
||||
|
||||
for rid in data['rankreg']['data']:
|
||||
#REV S2
|
||||
if "clear" in rid:
|
||||
try:
|
||||
self.data.score.put_ranking(user_id=uid, rev_id=int(rid["rid"]), song_id=int(rid["sc"][1]), score=int(rid["sc"][0]), clear=rid["clear"])
|
||||
except:
|
||||
self.data.score.put_ranking(user_id=uid, rev_id=int(rid["rid"]), song_id=0, score=int(rid["sc"][0]), clear=rid["clear"])
|
||||
#REV
|
||||
else:
|
||||
try:
|
||||
self.data.score.put_ranking(user_id=uid, rev_id=int(rid["rid"]), song_id=int(rid["sc"][1]), score=int(rid["sc"][0]), clear=0)
|
||||
except:
|
||||
self.data.score.put_ranking(user_id=uid, rev_id=int(rid["rid"]), song_id=0, score=int(rid["sc"][0]), clear=0)
|
||||
return({})
|
||||
|
||||
def handle_action_addenergy_request(self, data: Dict) -> Dict:
|
||||
uid = data['addenergy']['uid']
|
||||
self.logger.info(f"Add energy to user {uid}")
|
||||
profile = self.data.profile.get_profile_index(0, uid, self.version)
|
||||
data1 = profile["data"]
|
||||
p = self.data.item.get_energy(uid)
|
||||
energy = p["energy"]
|
||||
|
||||
if not p:
|
||||
self.data.item.put_energy(uid, 5)
|
||||
|
||||
return({
|
||||
"class": data1["myClass"],
|
||||
"granted": "5",
|
||||
"total": "5",
|
||||
"threshold": "1000"
|
||||
})
|
||||
|
||||
array = []
|
||||
|
||||
newenergy = int(energy) + 5
|
||||
self.data.item.put_energy(uid, newenergy)
|
||||
|
||||
if int(energy) <= 995:
|
||||
array.append({
|
||||
"class": data1["myClass"],
|
||||
"granted": "5",
|
||||
"total": str(energy),
|
||||
"threshold": "1000"
|
||||
})
|
||||
else:
|
||||
array.append({
|
||||
"class": data1["myClass"],
|
||||
"granted": "0",
|
||||
"total": str(energy),
|
||||
"threshold": "1000"
|
||||
})
|
||||
return array[0]
|
||||
|
||||
def handle_action_eventreq_request(self, data: Dict) -> Dict:
|
||||
self.logger.info(data)
|
||||
return {"eventreq": ""}
|
||||
|
||||
def handle_action_stampreq_request(self, data: Dict) -> Dict:
|
||||
self.logger.info(data)
|
||||
return {"stampreq": ""}
|
||||
41
titles/cxb/config.py
Normal file
41
titles/cxb/config.py
Normal file
@@ -0,0 +1,41 @@
|
||||
from core.config import CoreConfig
|
||||
|
||||
class CxbServerConfig():
|
||||
def __init__(self, parent_config: "CxbConfig"):
|
||||
self.__config = parent_config
|
||||
|
||||
@property
|
||||
def enable(self) -> bool:
|
||||
return CoreConfig.get_config_field(self.__config, 'cxb', 'server', 'enable', default=True)
|
||||
|
||||
@property
|
||||
def loglevel(self) -> int:
|
||||
return CoreConfig.str_to_loglevel(CoreConfig.get_config_field(self.__config, 'cxb', 'server', 'loglevel', default="info"))
|
||||
|
||||
@property
|
||||
def hostname(self) -> str:
|
||||
return CoreConfig.get_config_field(self.__config, 'cxb', 'server', 'hostname', default="localhost")
|
||||
|
||||
@property
|
||||
def ssl_enable(self) -> bool:
|
||||
return CoreConfig.get_config_field(self.__config, 'cxb', 'server', 'ssl_enable', default=False)
|
||||
|
||||
@property
|
||||
def port(self) -> int:
|
||||
return CoreConfig.get_config_field(self.__config, 'cxb', 'server', 'port', default=8082)
|
||||
|
||||
@property
|
||||
def port_secure(self) -> int:
|
||||
return CoreConfig.get_config_field(self.__config, 'cxb', 'server', 'port_secure', default=443)
|
||||
|
||||
@property
|
||||
def ssl_cert(self) -> str:
|
||||
return CoreConfig.get_config_field(self.__config, 'cxb', 'server', 'ssl_cert', default="cert/title.crt")
|
||||
|
||||
@property
|
||||
def ssl_key(self) -> str:
|
||||
return CoreConfig.get_config_field(self.__config, 'cxb', 'server', 'ssl_key', default="cert/title.key")
|
||||
|
||||
class CxbConfig(dict):
|
||||
def __init__(self) -> None:
|
||||
self.server = CxbServerConfig(self)
|
||||
15
titles/cxb/const.py
Normal file
15
titles/cxb/const.py
Normal file
@@ -0,0 +1,15 @@
|
||||
class CxbConstants():
|
||||
GAME_CODE = "SDCA"
|
||||
|
||||
CONFIG_NAME = "cxb.yaml"
|
||||
|
||||
VER_CROSSBEATS_REV = 0
|
||||
VER_CROSSBEATS_REV_SUNRISE_S1 = 1
|
||||
VER_CROSSBEATS_REV_SUNRISE_S2 = 2
|
||||
VER_CROSSBEATS_REV_SUNRISE_S2_OMNI = 3
|
||||
|
||||
VERSION_NAMES = ("crossbeats REV.", "crossbeats REV. SUNRISE", "crossbeats REV. SUNRISE S2", "crossbeats REV. SUNRISE S2 Omnimix")
|
||||
|
||||
@classmethod
|
||||
def game_ver_to_string(cls, ver: int):
|
||||
return cls.VERSION_NAMES[ver]
|
||||
13
titles/cxb/database.py
Normal file
13
titles/cxb/database.py
Normal file
@@ -0,0 +1,13 @@
|
||||
|
||||
from core.data import Data
|
||||
from core.config import CoreConfig
|
||||
from titles.cxb.schema import CxbProfileData, CxbScoreData, CxbItemData, CxbStaticData
|
||||
|
||||
class CxbData(Data):
|
||||
def __init__(self, cfg: CoreConfig) -> None:
|
||||
super().__init__(cfg)
|
||||
|
||||
self.profile = CxbProfileData(self.config, self.session)
|
||||
self.score = CxbScoreData(self.config, self.session)
|
||||
self.item = CxbItemData(self.config, self.session)
|
||||
self.static = CxbStaticData(self.config, self.session)
|
||||
145
titles/cxb/index.py
Normal file
145
titles/cxb/index.py
Normal file
@@ -0,0 +1,145 @@
|
||||
from twisted.web.http import Request
|
||||
from twisted.web import resource, server
|
||||
from twisted.internet import reactor, endpoints
|
||||
import yaml
|
||||
import json
|
||||
import re
|
||||
import inflection
|
||||
import logging, coloredlogs
|
||||
from logging.handlers import TimedRotatingFileHandler
|
||||
from typing import Dict
|
||||
|
||||
from core.config import CoreConfig
|
||||
from titles.cxb.config import CxbConfig
|
||||
from titles.cxb.const import CxbConstants
|
||||
from titles.cxb.rev import CxbRev
|
||||
from titles.cxb.rss1 import CxbRevSunriseS1
|
||||
from titles.cxb.rss2 import CxbRevSunriseS2
|
||||
|
||||
class CxbServlet(resource.Resource):
|
||||
def __init__(self, core_cfg: CoreConfig, cfg_dir: str) -> None:
|
||||
self.isLeaf = True
|
||||
self.cfg_dir = cfg_dir
|
||||
self.core_cfg = core_cfg
|
||||
self.game_cfg = CxbConfig()
|
||||
self.game_cfg.update(yaml.safe_load(open(f"{cfg_dir}/cxb.yaml")))
|
||||
|
||||
self.logger = logging.getLogger("cxb")
|
||||
log_fmt_str = "[%(asctime)s] CXB | %(levelname)s | %(message)s"
|
||||
log_fmt = logging.Formatter(log_fmt_str)
|
||||
fileHandler = TimedRotatingFileHandler("{0}/{1}.log".format(self.core_cfg.server.log_dir, "cxb"), encoding='utf8',
|
||||
when="d", backupCount=10)
|
||||
|
||||
fileHandler.setFormatter(log_fmt)
|
||||
|
||||
consoleHandler = logging.StreamHandler()
|
||||
consoleHandler.setFormatter(log_fmt)
|
||||
|
||||
self.logger.addHandler(fileHandler)
|
||||
self.logger.addHandler(consoleHandler)
|
||||
|
||||
self.logger.setLevel(self.game_cfg.server.loglevel)
|
||||
coloredlogs.install(level=self.game_cfg.server.loglevel, logger=self.logger, fmt=log_fmt_str)
|
||||
|
||||
self.versions = [
|
||||
CxbRev(core_cfg, self.game_cfg),
|
||||
CxbRevSunriseS1(core_cfg, self.game_cfg),
|
||||
CxbRevSunriseS2(core_cfg, self.game_cfg),
|
||||
]
|
||||
|
||||
def setup(self):
|
||||
if self.game_cfg.server.enable:
|
||||
endpoints.serverFromString(reactor, f"tcp:{self.game_cfg.server.port}:interface={self.core_cfg.server.listen_address}")\
|
||||
.listen(server.Site(CxbServlet(self.core_cfg, self.cfg_dir)))
|
||||
|
||||
if self.core_cfg.server.is_develop and self.game_cfg.server.ssl_enable:
|
||||
endpoints.serverFromString(reactor, f"ssl:{self.game_cfg.server.port_secure}"\
|
||||
f":interface={self.core_cfg.server.listen_address}:privateKey={self.game_cfg.server.ssl_key}:"\
|
||||
f"certKey={self.game_cfg.server.ssl_cert}")\
|
||||
.listen(server.Site(CxbServlet(self.core_cfg, self.cfg_dir)))
|
||||
|
||||
self.logger.info(f"Crossbeats title server ready on port {self.game_cfg.server.port} & {self.game_cfg.server.port_secure}")
|
||||
else:
|
||||
self.logger.info(f"Crossbeats title server ready on port {self.game_cfg.server.port}")
|
||||
|
||||
|
||||
def render_POST(self, request: Request):
|
||||
version = 0
|
||||
internal_ver = 0
|
||||
func_to_find = ""
|
||||
cmd = ""
|
||||
subcmd = ""
|
||||
req_url = request.uri.decode()
|
||||
url_split = req_url.split("/")
|
||||
req_bytes = request.content.getvalue()
|
||||
|
||||
try:
|
||||
req_json: Dict = json.loads(req_bytes)
|
||||
|
||||
except Exception as e:
|
||||
try:
|
||||
req_json: Dict = json.loads(req_bytes.decode().replace('"', '\\"').replace("'", '"'))
|
||||
|
||||
except Exception as f:
|
||||
self.logger.warn(f"Error decoding json: {e} / {f} - {req_url} - {req_bytes}")
|
||||
return b""
|
||||
|
||||
if req_json == {}:
|
||||
self.logger.warn(f"Empty json request to {req_url}")
|
||||
return b""
|
||||
|
||||
cmd = url_split[len(url_split) - 1]
|
||||
subcmd = list(req_json.keys())[0]
|
||||
|
||||
if subcmd == "dldate":
|
||||
if not type(req_json["dldate"]) is dict or "filetype" not in req_json["dldate"]:
|
||||
self.logger.warn(f"Malformed dldate request: {req_url} {req_json}")
|
||||
return b""
|
||||
|
||||
filetype = req_json["dldate"]["filetype"]
|
||||
filetype_split = filetype.split("/")
|
||||
version = int(filetype_split[0])
|
||||
filetype_inflect_split = inflection.underscore(filetype).split("/")
|
||||
|
||||
match = re.match("^([A-Za-z]*)(\d\d\d\d)$", filetype_split[len(filetype_split) - 1])
|
||||
if match:
|
||||
subcmd = f"{inflection.underscore(match.group(1))}xxxx"
|
||||
else:
|
||||
subcmd = f"{filetype_inflect_split[len(filetype_inflect_split) - 1]}"
|
||||
else:
|
||||
filetype = subcmd
|
||||
|
||||
func_to_find = f"handle_{cmd}_{subcmd}_request"
|
||||
|
||||
if version <= 10102:
|
||||
version_string = "Rev"
|
||||
internal_ver = CxbConstants.VER_CROSSBEATS_REV
|
||||
|
||||
elif version == 10113 or version == 10103:
|
||||
version_string = "Rev SunriseS1"
|
||||
internal_ver = CxbConstants.VER_CROSSBEATS_REV_SUNRISE_S1
|
||||
|
||||
elif version >= 10114 or version == 10104:
|
||||
version_string = "Rev SunriseS2"
|
||||
internal_ver = CxbConstants.VER_CROSSBEATS_REV_SUNRISE_S2
|
||||
|
||||
else:
|
||||
version_string = "Base"
|
||||
|
||||
self.logger.info(f"{version_string} Request {req_url} -> {filetype}")
|
||||
self.logger.debug(req_json)
|
||||
|
||||
try:
|
||||
handler = getattr(self.versions[internal_ver], func_to_find)
|
||||
resp = handler(req_json)
|
||||
|
||||
except AttributeError as e:
|
||||
self.logger.warning(f"Unhandled {version_string} request {req_url} - {e}")
|
||||
resp = {}
|
||||
|
||||
except Exception as e:
|
||||
self.logger.error(f"Error handling {version_string} method {req_url} - {e}")
|
||||
raise
|
||||
|
||||
self.logger.debug(f"{version_string} Response {resp}")
|
||||
return json.dumps(resp, ensure_ascii=False).encode("utf-8")
|
||||
62
titles/cxb/read.py
Normal file
62
titles/cxb/read.py
Normal file
@@ -0,0 +1,62 @@
|
||||
from typing import Optional, Dict, List
|
||||
from os import walk, path
|
||||
import urllib
|
||||
import csv
|
||||
|
||||
from read import BaseReader
|
||||
from core.config import CoreConfig
|
||||
from titles.cxb.database import CxbData
|
||||
from titles.cxb.const import CxbConstants
|
||||
|
||||
class CxbReader(BaseReader):
|
||||
def __init__(self, config: CoreConfig, version: int, bin_arg: Optional[str], opt_arg: Optional[str], extra: Optional[str]) -> None:
|
||||
super().__init__(config, version, bin_arg, opt_arg, extra)
|
||||
self.data = CxbData(config)
|
||||
|
||||
try:
|
||||
self.logger.info(f"Start importer for {CxbConstants.game_ver_to_string(version)}")
|
||||
except IndexError:
|
||||
self.logger.error(f"Invalid project cxb version {version}")
|
||||
exit(1)
|
||||
|
||||
def read(self) -> None:
|
||||
pull_bin_ram = True
|
||||
|
||||
if not path.exists(f"{self.bin_dir}"):
|
||||
self.logger.warn(f"Couldn't find csv file in {self.bin_dir}, skipping")
|
||||
pull_bin_ram = False
|
||||
|
||||
if pull_bin_ram:
|
||||
self.read_csv(f"{self.bin_dir}")
|
||||
|
||||
def read_csv(self, bin_dir: str) -> None:
|
||||
self.logger.info(f"Read csv from {bin_dir}")
|
||||
|
||||
try:
|
||||
fullPath = bin_dir + "/export.csv"
|
||||
with open(fullPath, encoding="UTF-8") as fp:
|
||||
reader = csv.DictReader(fp)
|
||||
for row in reader:
|
||||
song_id = row["mcode"]
|
||||
index = row["index"]
|
||||
title = row["name"]
|
||||
artist = row["artist"]
|
||||
genre = row["category"]
|
||||
|
||||
if not "N/A" in row["standard"]:
|
||||
self.logger.info(f"Added song {song_id} chart 0")
|
||||
self.data.static.put_music(self.version, song_id, index, 0, title, artist, genre, int(row["standard"].replace("Standard ","").replace("N/A","0")))
|
||||
if not "N/A" in row["hard"]:
|
||||
self.logger.info(f"Added song {song_id} chart 1")
|
||||
self.data.static.put_music(self.version, song_id, index, 1, title, artist, genre, int(row["hard"].replace("Hard ","").replace("N/A","0")))
|
||||
if not "N/A" in row["master"]:
|
||||
self.logger.info(f"Added song {song_id} chart 2")
|
||||
self.data.static.put_music(self.version, song_id, index, 2, title, artist, genre, int(row["master"].replace("Master ","").replace("N/A","0")))
|
||||
if not "N/A" in row["unlimited"]:
|
||||
self.logger.info(f"Added song {song_id} chart 3")
|
||||
self.data.static.put_music(self.version, song_id, index, 3, title, artist, genre, int(row["unlimited"].replace("Unlimited ","").replace("N/A","0")))
|
||||
if not "N/A" in row["easy"]:
|
||||
self.logger.info(f"Added song {song_id} chart 4")
|
||||
self.data.static.put_music(self.version, song_id, index, 4, title, artist, genre, int(row["easy"].replace("Easy ","").replace("N/A","0")))
|
||||
except:
|
||||
self.logger.warn(f"Couldn't read csv file in {self.bin_dir}, skipping")
|
||||
256
titles/cxb/rev.py
Normal file
256
titles/cxb/rev.py
Normal file
@@ -0,0 +1,256 @@
|
||||
import json
|
||||
from decimal import Decimal
|
||||
from base64 import b64encode
|
||||
from typing import Any, Dict
|
||||
from hashlib import md5
|
||||
from datetime import datetime
|
||||
|
||||
from core.config import CoreConfig
|
||||
from core.data import Data, cached
|
||||
from titles.cxb.config import CxbConfig
|
||||
from titles.cxb.base import CxbBase
|
||||
from titles.cxb.const import CxbConstants
|
||||
|
||||
class CxbRev(CxbBase):
|
||||
def __init__(self, cfg: CoreConfig, game_cfg: CxbConfig) -> None:
|
||||
super().__init__(cfg, game_cfg)
|
||||
self.version = CxbConstants.VER_CROSSBEATS_REV
|
||||
|
||||
def handle_data_path_list_request(self, data: Dict) -> Dict:
|
||||
return { "data": "" }
|
||||
|
||||
def handle_data_putlog_request(self, data: Dict) -> Dict:
|
||||
if data["putlog"]["type"] == "ResultLog":
|
||||
score_data = json.loads(data["putlog"]["data"])
|
||||
userid = score_data['usid']
|
||||
|
||||
self.data.score.put_playlog(userid, score_data['mcode'], score_data['difficulty'], score_data["score"], int(Decimal(score_data["clearrate"]) * 100), score_data["flawless"], score_data["super"], score_data["cool"], score_data["fast"], score_data["fast2"], score_data["slow"], score_data["slow2"], score_data["fail"], score_data["combo"])
|
||||
return({"data":True})
|
||||
return {"data": True }
|
||||
|
||||
@cached(lifetime=86400)
|
||||
def handle_data_music_list_request(self, data: Dict) -> Dict:
|
||||
ret_str = ""
|
||||
with open(r"titles/cxb/rev_data/MusicArchiveList.csv") as music:
|
||||
lines = music.readlines()
|
||||
for line in lines:
|
||||
line_split = line.split(',')
|
||||
ret_str += f"{line_split[0]},{line_split[1]},{line_split[2]},{line_split[3]},{line_split[4]},{line_split[5]},{line_split[6]},{line_split[7]},{line_split[8]},{line_split[9]},{line_split[10]},{line_split[11]},{line_split[12]},{line_split[13]},{line_split[14]},\r\n"
|
||||
|
||||
return({"data":ret_str})
|
||||
|
||||
@cached(lifetime=86400)
|
||||
def handle_data_item_list_icon_request(self, data: Dict) -> Dict:
|
||||
ret_str = "\r\n#ItemListIcon\r\n"
|
||||
with open(r"titles/cxb/rev_data/Item/ItemArchiveList_Icon.csv", encoding="utf-8") as item:
|
||||
lines = item.readlines()
|
||||
for line in lines:
|
||||
ret_str += f"{line[:-1]}\r\n"
|
||||
return({"data":ret_str})
|
||||
|
||||
@cached(lifetime=86400)
|
||||
def handle_data_item_list_skin_notes_request(self, data: Dict) -> Dict:
|
||||
ret_str = "\r\n#ItemListSkinNotes\r\n"
|
||||
with open(r"titles/cxb/rev_data/Item/ItemArchiveList_SkinNotes.csv", encoding="utf-8") as item:
|
||||
lines = item.readlines()
|
||||
for line in lines:
|
||||
ret_str += f"{line[:-1]}\r\n"
|
||||
return({"data":ret_str})
|
||||
|
||||
@cached(lifetime=86400)
|
||||
def handle_data_item_list_skin_effect_request(self, data: Dict) -> Dict:
|
||||
ret_str = "\r\n#ItemListSkinEffect\r\n"
|
||||
with open(r"titles/cxb/rev_data/Item/ItemArchiveList_SkinEffect.csv", encoding="utf-8") as item:
|
||||
lines = item.readlines()
|
||||
for line in lines:
|
||||
ret_str += f"{line[:-1]}\r\n"
|
||||
return({"data":ret_str})
|
||||
|
||||
@cached(lifetime=86400)
|
||||
def handle_data_item_list_skin_bg_request(self, data: Dict) -> Dict:
|
||||
ret_str = "\r\n#ItemListSkinBg\r\n"
|
||||
with open(r"titles/cxb/rev_data/Item/ItemArchiveList_SkinBg.csv", encoding="utf-8") as item:
|
||||
lines = item.readlines()
|
||||
for line in lines:
|
||||
ret_str += f"{line[:-1]}\r\n"
|
||||
return({"data":ret_str})
|
||||
|
||||
@cached(lifetime=86400)
|
||||
def handle_data_item_list_title_request(self, data: Dict) -> Dict:
|
||||
ret_str = "\r\n#ItemListTitle\r\n"
|
||||
with open(r"titles/cxb/rev_data/Item/ItemList_Title.csv", encoding="shift-jis") as item:
|
||||
lines = item.readlines()
|
||||
for line in lines:
|
||||
ret_str += f"{line[:-1]}\r\n"
|
||||
return({"data":ret_str})
|
||||
|
||||
@cached(lifetime=86400)
|
||||
def handle_data_shop_list_music_request(self, data: Dict) -> Dict:
|
||||
ret_str = "\r\n#ShopListMusic\r\n"
|
||||
with open(r"titles/cxb/rev_data/Shop/ShopList_Music.csv", encoding="shift-jis") as shop:
|
||||
lines = shop.readlines()
|
||||
for line in lines:
|
||||
ret_str += f"{line[:-1]}\r\n"
|
||||
return({"data":ret_str})
|
||||
|
||||
@cached(lifetime=86400)
|
||||
def handle_data_shop_list_icon_request(self, data: Dict) -> Dict:
|
||||
ret_str = "\r\n#ShopListIcon\r\n"
|
||||
with open(r"titles/cxb/rev_data/Shop/ShopList_Icon.csv", encoding="shift-jis") as shop:
|
||||
lines = shop.readlines()
|
||||
for line in lines:
|
||||
ret_str += f"{line[:-1]}\r\n"
|
||||
return({"data":ret_str})
|
||||
|
||||
@cached(lifetime=86400)
|
||||
def handle_data_shop_list_title_request(self, data: Dict) -> Dict:
|
||||
ret_str = "\r\n#ShopListTitle\r\n"
|
||||
with open(r"titles/cxb/rev_data/Shop/ShopList_Title.csv", encoding="shift-jis") as shop:
|
||||
lines = shop.readlines()
|
||||
for line in lines:
|
||||
ret_str += f"{line[:-1]}\r\n"
|
||||
return({"data":ret_str})
|
||||
|
||||
def handle_data_shop_list_skin_hud_request(self, data: Dict) -> Dict:
|
||||
return({"data":""})
|
||||
|
||||
def handle_data_shop_list_skin_arrow_request(self, data: Dict) -> Dict:
|
||||
return({"data":""})
|
||||
|
||||
def handle_data_shop_list_skin_hit_request(self, data: Dict) -> Dict:
|
||||
return({"data":""})
|
||||
|
||||
@cached(lifetime=86400)
|
||||
def handle_data_shop_list_sale_request(self, data: Dict) -> Dict:
|
||||
ret_str = "\r\n#ShopListSale\r\n"
|
||||
with open(r"titles/cxb/rev_data/Shop/ShopList_Sale.csv", encoding="shift-jis") as shop:
|
||||
lines = shop.readlines()
|
||||
for line in lines:
|
||||
ret_str += f"{line[:-1]}\r\n"
|
||||
return({"data":ret_str})
|
||||
|
||||
def handle_data_extra_stage_list_request(self, data: Dict) -> Dict:
|
||||
return({"data":""})
|
||||
|
||||
@cached(lifetime=86400)
|
||||
def handle_data_exxxxx_request(self, data: Dict) -> Dict:
|
||||
extra_num = int(data["dldate"]["filetype"][-4:])
|
||||
ret_str = ""
|
||||
with open(fr"titles/cxb/rev_data/Ex000{extra_num}.csv", encoding="shift-jis") as stage:
|
||||
lines = stage.readlines()
|
||||
for line in lines:
|
||||
ret_str += f"{line[:-1]}\r\n"
|
||||
return({"data":ret_str})
|
||||
|
||||
def handle_data_bonus_list10100_request(self, data: Dict) -> Dict:
|
||||
return({"data": ""})
|
||||
|
||||
def handle_data_free_coupon_request(self, data: Dict) -> Dict:
|
||||
return({"data": ""})
|
||||
|
||||
@cached(lifetime=86400)
|
||||
def handle_data_news_list_request(self, data: Dict) -> Dict:
|
||||
ret_str = ""
|
||||
with open(r"titles/cxb/rev_data/NewsList.csv", encoding="UTF-8") as news:
|
||||
lines = news.readlines()
|
||||
for line in lines:
|
||||
ret_str += f"{line[:-1]}\r\n"
|
||||
return({"data":ret_str})
|
||||
|
||||
def handle_data_tips_request(self, data: Dict) -> Dict:
|
||||
return({"data":""})
|
||||
|
||||
@cached(lifetime=86400)
|
||||
def handle_data_license_request(self, data: Dict) -> Dict:
|
||||
ret_str = ""
|
||||
with open(r"titles/cxb/rev_data/License_Offline.csv", encoding="UTF-8") as lic:
|
||||
lines = lic.readlines()
|
||||
for line in lines:
|
||||
ret_str += f"{line[:-1]}\r\n"
|
||||
return({"data":ret_str})
|
||||
|
||||
@cached(lifetime=86400)
|
||||
def handle_data_course_list_request(self, data: Dict) -> Dict:
|
||||
ret_str = ""
|
||||
with open(r"titles/cxb/rev_data/Course/CourseList.csv", encoding="UTF-8") as course:
|
||||
lines = course.readlines()
|
||||
for line in lines:
|
||||
ret_str += f"{line[:-1]}\r\n"
|
||||
return({"data":ret_str})
|
||||
|
||||
@cached(lifetime=86400)
|
||||
def handle_data_csxxxx_request(self, data: Dict) -> Dict:
|
||||
# Removed the CSVs since the format isnt quite right
|
||||
extra_num = int(data["dldate"]["filetype"][-4:])
|
||||
ret_str = ""
|
||||
with open(fr"titles/cxb/rev_data/Course/Cs000{extra_num}.csv", encoding="shift-jis") as course:
|
||||
lines = course.readlines()
|
||||
for line in lines:
|
||||
ret_str += f"{line[:-1]}\r\n"
|
||||
return({"data":ret_str})
|
||||
|
||||
@cached(lifetime=86400)
|
||||
def handle_data_mission_list_request(self, data: Dict) -> Dict:
|
||||
ret_str = ""
|
||||
with open(r"titles/cxb/rev_data/MissionList.csv", encoding="shift-jis") as mission:
|
||||
lines = mission.readlines()
|
||||
for line in lines:
|
||||
ret_str += f"{line[:-1]}\r\n"
|
||||
return({"data":ret_str})
|
||||
|
||||
def handle_data_mission_bonus_request(self, data: Dict) -> Dict:
|
||||
return({"data": ""})
|
||||
|
||||
def handle_data_unlimited_mission_request(self, data: Dict) -> Dict:
|
||||
return({"data": ""})
|
||||
|
||||
@cached(lifetime=86400)
|
||||
def handle_data_event_list_request(self, data: Dict) -> Dict:
|
||||
ret_str = ""
|
||||
with open(r"titles/cxb/rev_data/Event/EventArchiveList.csv", encoding="shift-jis") as mission:
|
||||
lines = mission.readlines()
|
||||
for line in lines:
|
||||
ret_str += f"{line[:-1]}\r\n"
|
||||
return({"data":ret_str})
|
||||
|
||||
def handle_data_event_music_list_request(self, data: Dict) -> Dict:
|
||||
return({"data": ""})
|
||||
|
||||
def handle_data_event_mission_list_request(self, data: Dict) -> Dict:
|
||||
return({"data": ""})
|
||||
|
||||
def handle_data_event_achievement_single_high_score_list_request(self, data: Dict) -> Dict:
|
||||
return({"data": ""})
|
||||
|
||||
def handle_data_event_achievement_single_accumulation_request(self, data: Dict) -> Dict:
|
||||
return({"data": ""})
|
||||
|
||||
def handle_data_event_ranking_high_score_list_request(self, data: Dict) -> Dict:
|
||||
return({"data": ""})
|
||||
|
||||
def handle_data_event_ranking_accumulation_list_request(self, data: Dict) -> Dict:
|
||||
return({"data": ""})
|
||||
|
||||
def handle_data_event_ranking_stamp_list_request(self, data: Dict) -> Dict:
|
||||
return({"data": ""})
|
||||
|
||||
def handle_data_event_ranking_store_list_request(self, data: Dict) -> Dict:
|
||||
return({"data": ""})
|
||||
|
||||
def handle_data_event_ranking_area_list_request(self, data: Dict) -> Dict:
|
||||
return({"data": ""})
|
||||
|
||||
@cached(lifetime=86400)
|
||||
def handle_data_event_stamp_list_request(self, data: Dict) -> Dict:
|
||||
ret_str = ""
|
||||
with open(r"titles/cxb/rev_data/Event/EventStampList.csv", encoding="shift-jis") as event:
|
||||
lines = event.readlines()
|
||||
for line in lines:
|
||||
ret_str += f"{line[:-1]}\r\n"
|
||||
return({"data":ret_str})
|
||||
|
||||
def handle_data_event_stamp_map_list_csxxxx_request(self, data: Dict) -> Dict:
|
||||
return({"data": "1,2,1,1,2,3,9,5,6,7,8,9,10,\r\n"})
|
||||
|
||||
def handle_data_server_state_request(self, data: Dict) -> Dict:
|
||||
return({"data": True})
|
||||
10
titles/cxb/rev_data/Course/CourseList.csv
Normal file
10
titles/cxb/rev_data/Course/CourseList.csv
Normal file
@@ -0,0 +1,10 @@
|
||||
Cs0000,0,10001,1422284400,4096483201,0,-1,-1,100,0,クリアすると段位が「見習い」に昇格します。,-1,
|
||||
Cs0001,1,10001,1422284400,4096483201,0,-1,-1,110,0,クリアすると段位が「初段」に昇格します。,-1,
|
||||
Cs0002,2,10001,1422284400,4096483201,0,-1,-1,120,0,クリアすると段位が「二段」に昇格します。,-1,
|
||||
Cs0003,3,10001,1422284400,4096483201,0,-1,-1,130,0,クリアすると段位が「三段」に昇格します。,-1,
|
||||
Cs0004,4,10001,1422284400,4096483201,0,-1,-1,140,0,クリアすると段位が「四段」に昇格します。,-1,
|
||||
Cs0005,5,10001,1422284400,4096483201,0,-1,-1,150,0,クリアすると段位が「五段」に昇格します。,-1,
|
||||
Cs0006,6,10001,1422284400,4096483201,0,-1,-1,160,0,クリアすると段位が「六段」に昇格します。,-1,
|
||||
Cs0007,7,10001,1422284400,4096483201,0,-1,-1,170,0,クリアすると段位が「七段」に昇格します。,-1,
|
||||
Cs0008,8,10001,1422284400,4096483201,0,-1,-1,180,0,クリアすると段位が「八段」に昇格します。,-1,
|
||||
Cs0009,9,10001,1422284400,4096483201,0,-1,-1,190,0,クリアすると段位が「九段」に昇格します。,-1,
|
||||
|
4
titles/cxb/rev_data/Course/Cs0000.csv
Normal file
4
titles/cxb/rev_data/Course/Cs0000.csv
Normal file
@@ -0,0 +1,4 @@
|
||||
1,dazzli,4,1,-,-1,-1,2,-1,1,-1,1,
|
||||
2,hokoro,0,1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
3,sundro,1,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
4,sundro,3,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
|
4
titles/cxb/rev_data/Course/Cs0001.csv
Normal file
4
titles/cxb/rev_data/Course/Cs0001.csv
Normal file
@@ -0,0 +1,4 @@
|
||||
1,dazzli,4,1,-,-1,-1,2,-1,1,-1,1,
|
||||
2,hokoro,0,1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
3,sundro,1,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
4,sundro,3,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
|
4
titles/cxb/rev_data/Course/Cs0002.csv
Normal file
4
titles/cxb/rev_data/Course/Cs0002.csv
Normal file
@@ -0,0 +1,4 @@
|
||||
1,dazzli,4,1,-,-1,-1,2,-1,1,-1,1,
|
||||
2,hokoro,0,1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
3,sundro,1,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
4,sundro,3,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
|
4
titles/cxb/rev_data/Course/Cs0003.csv
Normal file
4
titles/cxb/rev_data/Course/Cs0003.csv
Normal file
@@ -0,0 +1,4 @@
|
||||
1,dazzli,4,1,-,-1,-1,2,-1,1,-1,1,
|
||||
2,hokoro,0,1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
3,sundro,1,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
4,sundro,3,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
|
4
titles/cxb/rev_data/Course/Cs0004.csv
Normal file
4
titles/cxb/rev_data/Course/Cs0004.csv
Normal file
@@ -0,0 +1,4 @@
|
||||
1,dazzli,4,1,-,-1,-1,2,-1,1,-1,1,
|
||||
2,hokoro,0,1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
3,sundro,1,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
4,sundro,3,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
|
4
titles/cxb/rev_data/Course/Cs0005.csv
Normal file
4
titles/cxb/rev_data/Course/Cs0005.csv
Normal file
@@ -0,0 +1,4 @@
|
||||
1,dazzli,4,1,-,-1,-1,2,-1,1,-1,1,
|
||||
2,hokoro,0,1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
3,sundro,1,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
4,sundro,3,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
|
4
titles/cxb/rev_data/Course/Cs0006.csv
Normal file
4
titles/cxb/rev_data/Course/Cs0006.csv
Normal file
@@ -0,0 +1,4 @@
|
||||
1,dazzli,4,1,-,-1,-1,2,-1,1,-1,1,
|
||||
2,hokoro,0,1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
3,sundro,1,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
4,sundro,3,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
|
4
titles/cxb/rev_data/Course/Cs0007.csv
Normal file
4
titles/cxb/rev_data/Course/Cs0007.csv
Normal file
@@ -0,0 +1,4 @@
|
||||
1,dazzli,4,1,-,-1,-1,2,-1,1,-1,1,
|
||||
2,hokoro,0,1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
3,sundro,1,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
4,sundro,3,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
|
4
titles/cxb/rev_data/Course/Cs0008.csv
Normal file
4
titles/cxb/rev_data/Course/Cs0008.csv
Normal file
@@ -0,0 +1,4 @@
|
||||
1,dazzli,4,1,-,-1,-1,2,-1,1,-1,1,
|
||||
2,hokoro,0,1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
3,sundro,1,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
4,sundro,3,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
|
4
titles/cxb/rev_data/Course/Cs0009.csv
Normal file
4
titles/cxb/rev_data/Course/Cs0009.csv
Normal file
@@ -0,0 +1,4 @@
|
||||
1,dazzli,4,1,-,-1,-1,2,-1,1,-1,1,
|
||||
2,hokoro,0,1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
3,sundro,1,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
4,sundro,3,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
|
39
titles/cxb/rev_data/Event/EventArchiveList.csv
Normal file
39
titles/cxb/rev_data/Event/EventArchiveList.csv
Normal file
@@ -0,0 +1,39 @@
|
||||
Cs1000,0,10000,1443233520,4096483201,1,ev000,1,
|
||||
Cs1001,0,10000,1443233520,4096483201,1,ev001,1,
|
||||
Cs1002,0,10000,1443233520,4096483201,1,ev002,1,
|
||||
Cs1003,0,10000,1443233520,4096483201,1,ev003,1,
|
||||
Cs1004,0,10000,1443233520,4096483201,1,ev004,1,
|
||||
Cs1005,0,10000,1443233520,4096483201,1,ev005,1,
|
||||
Cs1006,0,10000,1443233520,4096483201,1,ev006,1,
|
||||
Cs1007,0,10000,1443233520,4096483201,1,ev007,1,
|
||||
Cs1008,0,10000,1443233520,4096483201,1,ev008,1,
|
||||
Cs1009,0,10000,1443233520,4096483201,1,ev009,1,
|
||||
Cs1010,0,10000,1443233520,4096483201,1,ev010,1,
|
||||
Cs1011,0,10000,1443233520,4096483201,1,ev011,1,
|
||||
Cs1012,0,10000,1443233520,4096483201,1,ev012,1,
|
||||
Cs1013,0,10000,1443233520,4096483201,1,ev013,1,
|
||||
Cs1014,0,10000,1443233520,4096483201,1,ev014,1,
|
||||
Cs1015,0,10000,1443233520,4096483201,1,ev015,1,
|
||||
Cs1016,0,10000,1443233520,4096483201,1,ev016,1,
|
||||
Cs1017,0,10000,1443233520,4096483201,1,ev017,1,
|
||||
Cs1018,0,10000,1443233520,4096483201,1,ev018,1,
|
||||
Cs1019,0,10000,1443233520,4096483201,1,ev019,1,
|
||||
Cs1020,0,10000,1443233520,4096483201,1,ev020,1,
|
||||
Cs1021,0,10000,1443233520,4096483201,1,ev021,1,
|
||||
Cs1022,0,10000,1443233520,4096483201,1,ev022,1,
|
||||
Cs1023,0,10000,1443233520,4096483201,1,ev023,1,
|
||||
Cs1024,0,10000,1443233520,4096483201,1,ev024,1,
|
||||
Cs1025,0,10000,1443233520,4096483201,1,ev025,1,
|
||||
Cs1026,0,10000,1443233520,4096483201,1,ev026,1,
|
||||
Cs1027,0,10000,1443233520,4096483201,1,ev027,1,
|
||||
Cs1028,0,10000,1443233520,4096483201,1,ev028,1,
|
||||
Cs1029,0,10000,1443233520,4096483201,1,ev029,1,
|
||||
Cs1030,0,10000,1443233520,4096483201,1,ev030,1,
|
||||
Cs1031,0,10000,1443233520,4096483201,1,ev031,1,
|
||||
Cs1032,0,10000,1443233520,4096483201,1,ev032,1,
|
||||
Cs1033,0,10000,1443233520,4096483201,1,ev033,1,
|
||||
Cs1034,0,10000,1443233520,4096483201,1,ev034,1,
|
||||
Cs1035,0,10000,1443233520,4096483201,1,ev035,1,
|
||||
Cs1036,0,10000,1443233520,4096483201,1,ev036,1,
|
||||
Cs1037,0,10000,1443233520,4096483201,1,ev037,1,
|
||||
Cs1038,0,10000,1443233520,4096483201,1,ev038,1,
|
||||
|
39
titles/cxb/rev_data/Event/EventStampList.csv
Normal file
39
titles/cxb/rev_data/Event/EventStampList.csv
Normal file
@@ -0,0 +1,39 @@
|
||||
Cs1000,1,1,1,1,1,1,1,1,1,1,
|
||||
Cs1001,1,1,1,1,1,1,1,1,1,1,
|
||||
Cs1002,1,1,1,1,1,1,1,1,1,1,
|
||||
Cs1003,1,1,1,1,1,1,1,1,1,1,
|
||||
Cs1004,1,1,1,1,1,1,1,1,1,1,
|
||||
Cs1005,1,1,1,1,1,1,1,1,1,1,
|
||||
Cs1006,1,1,1,1,1,1,1,1,1,1,
|
||||
Cs1007,1,1,1,1,1,1,1,1,1,1,
|
||||
Cs1008,1,1,1,1,1,1,1,1,1,1,
|
||||
Cs1009,1,1,1,1,1,1,1,1,1,1,
|
||||
Cs1010,1,1,1,1,1,1,1,1,1,1,
|
||||
Cs1011,1,1,1,1,1,1,1,1,1,1,
|
||||
Cs1012,1,1,1,1,1,1,1,1,1,1,
|
||||
Cs1013,1,1,1,1,1,1,1,1,1,1,
|
||||
Cs1014,1,1,1,1,1,1,1,1,1,1,
|
||||
Cs1015,1,1,1,1,1,1,1,1,1,1,
|
||||
Cs1016,1,1,1,1,1,1,1,1,1,1,
|
||||
Cs1017,1,1,1,1,1,1,1,1,1,1,
|
||||
Cs1018,1,1,1,1,1,1,1,1,1,1,
|
||||
Cs1019,1,1,1,1,1,1,1,1,1,1,
|
||||
Cs1020,1,1,1,1,1,1,1,1,1,1,
|
||||
Cs1021,1,1,1,1,1,1,1,1,1,1,
|
||||
Cs1022,1,1,1,1,1,1,1,1,1,1,
|
||||
Cs1023,1,1,1,1,1,1,1,1,1,1,
|
||||
Cs1024,1,1,1,1,1,1,1,1,1,1,
|
||||
Cs1025,1,1,1,1,1,1,1,1,1,1,
|
||||
Cs1026,1,1,1,1,1,1,1,1,1,1,
|
||||
Cs1027,1,1,1,1,1,1,1,1,1,1,
|
||||
Cs1028,1,1,1,1,1,1,1,1,1,1,
|
||||
Cs1029,1,1,1,1,1,1,1,1,1,1,
|
||||
Cs1030,1,1,1,1,1,1,1,1,1,1,
|
||||
Cs1031,1,1,1,1,1,1,1,1,1,1,
|
||||
Cs1032,1,1,1,1,1,1,1,1,1,1,
|
||||
Cs1033,1,1,1,1,1,1,1,1,1,1,
|
||||
Cs1034,1,1,1,1,1,1,1,1,1,1,
|
||||
Cs1035,1,1,1,1,1,1,1,1,1,1,
|
||||
Cs1036,1,1,1,1,1,1,1,1,1,1,
|
||||
Cs1037,1,1,1,1,1,1,1,1,1,1,
|
||||
Cs1038,1,1,1,1,1,1,1,1,1,1,
|
||||
|
10
titles/cxb/rev_data/Ex0000.csv
Normal file
10
titles/cxb/rev_data/Ex0000.csv
Normal file
@@ -0,0 +1,10 @@
|
||||
StageMax,ClearCount,StageNo.,MCODE,Diff(std),Diff(hrd),Diff(mas),Diff(ulm),Diff(esy),Level(op), Level(val), Grade(op),Grade(val),GT(nml),GT(svl),GT(ult),GT(nhp),GT(esy),HS(op),HS(val),APP,DAP,F-V,F-H,FT(ac),FT(tab),FT(pho),Combo(op),Combo(val),FullCombo,ClearRate(op),ClearRate(val)
|
||||
2,1,1,-,2,2,2,1,2,-1,-,1,1,-1,-1,-1,-1,-1,1,-2,-1,-1,-1,-1,-1,-1,-1,1,300,-1,-1,-,
|
||||
2,-,2,-,2,2,2,1,2,-1,-,1,1,-1,-1,-1,-1,-1,1,-2,-1,-1,-1,-1,-1,-1,-1,1,300,-1,-1,-,
|
||||
3,3,1,-,2,2,1,1,2,-1,-,1,2,-1,-1,-1,-1,-1,1,-2,-1,-1,-1,-1,-1,-1,-1,-1,-,-1,-1,-,
|
||||
3,-,2,-,2,2,1,1,2,-1,-,1,2,-1,-1,-1,-1,-1,1,-2,-1,-1,-1,-1,-1,-1,-1,-1,-,-1,-1,-,
|
||||
3,-,3,-,2,2,1,1,2,1,50,1,2,2,2,1,2,2,1,-2,-1,-1,-1,-1,-1,-1,-1,-1,-,-1,-1,-,
|
||||
4,4,1,dynami:fronti:rebell:fronti2:auflcb:auflcb2,2,2,1,1,2,-1,-,1,-1,-1,-1,-1,-1,-1,1,-2,-1,-1,-1,-1,-1,-1,-1,-1,-,-1,-1,-,
|
||||
4,-,2,-,2,2,1,1,2,-1,-,1,-1,-1,-1,-1,-1,-1,1,-2,-1,-1,-1,-1,-1,-1,-1,-1,-,-1,-1,-,
|
||||
4,-,3,-,2,2,1,1,2,-1,-,1,-1,-1,-1,-1,-1,-1,1,-2,-1,-1,-1,-1,-1,-1,-1,-1,-,-1,-1,-,
|
||||
4,-,4,-,2,2,1,1,2,-1,-,1,-1,-1,-1,-1,-1,-1,1,-2,-1,-1,-1,-1,-1,-1,-1,-1,-,-1,-1,-,
|
||||
|
10
titles/cxb/rev_data/Ex0001.csv
Normal file
10
titles/cxb/rev_data/Ex0001.csv
Normal file
@@ -0,0 +1,10 @@
|
||||
StageMax,ClearCount,StageNo.,MCODE,Diff(std),Diff(hrd),Diff(mas),Diff(ulm),Diff(esy),Level(op), Level(val), Grade(op),Grade(val),GT(nml),GT(svl),GT(ult),GT(nhp),GT(esy),HS(op),HS(val),APP,DAP,F-V,F-H,FT(ac),FT(tab),FT(pho),Combo(op),Combo(val),FullCombo,ClearRate(op),ClearRate(val)
|
||||
2,1,1,-,2,2,1,1,2,1,50,-1,-,2,2,1,2,2,1,-2,-1,-1,-1,-1,-1,-1,-1,-1,-,1,-1,-,
|
||||
2,-,2,-,2,2,1,1,2,1,50,-1,-,2,2,1,2,2,1,-2,-1,-1,-1,-1,-1,-1,-1,-1,-,1,-1,-,
|
||||
3,3,1,-,2,2,1,1,2,1,,-1,-,-1,-1,-1,-1,-1,1,-2,-1,-1,-1,-1,-1,-1,-1,-1,-,-1,-1,-,
|
||||
3,-,2,-,2,2,1,1,2,1,,-1,-,-1,-1,-1,-1,-1,1,-2,-1,-1,-1,-1,-1,-1,-1,-1,-,-1,-1,-,
|
||||
3,-,3,-,2,2,1,1,2,1,,-1,-,-1,-1,-1,-1,-1,1,-2,-1,-1,-1,-1,-1,-1,-1,-1,-,-1,-1,-,
|
||||
4,4,1,dynami:fronti:rebell:fronti2:auflcb:auflcb2,2,2,1,1,2,1,,-1,-,-1,-1,-1,-1,-1,1,-2,-1,-1,-1,-1,-1,-1,-1,-1,-,-1,-1,-,
|
||||
4,-,2,-,2,2,1,1,2,1,,-1,-,-1,-1,-1,-1,-1,1,-2,-1,-1,-1,-1,-1,-1,-1,-1,-,-1,-1,-,
|
||||
4,-,3,-,2,2,1,1,2,1,,-1,-,-1,-1,-1,-1,-1,1,-2,-1,-1,-1,-1,-1,-1,-1,-1,-,-1,-1,-,
|
||||
4,-,4,-,2,2,1,1,2,1,,-1,-,-1,-1,-1,-1,-1,1,-2,-1,-1,-1,-1,-1,-1,-1,-1,-,-1,-1,-,
|
||||
|
2
titles/cxb/rev_data/ExtraStageList.csv
Normal file
2
titles/cxb/rev_data/ExtraStageList.csv
Normal file
@@ -0,0 +1,2 @@
|
||||
No.,Ver.,ESID,Title,StartTime,EndTime,出現曲MCODE,出現RP,出現エフェクト,Diff(std),Diff(hrd),Diff(mas),Diff(ulm),Diff(esy),GT(nml),GT(svl),GT(ult),GT(nhp),GT(esy),HS(op),HS(val),APP,DAP,F-V,F-H,FT(ac),FT(tab),FT(pho)
|
||||
1,1000,Ex0000,MEGALOMAN[i]A出現,1411697520.0288,1443233520.0288,megaro,0,3,2,2,1,2,2,2,2,1,2,2,1,-2,-1,-1,-1,-1,-1,-1,-1,
|
||||
|
3
titles/cxb/rev_data/Item/ItemArchiveList_Icon.csv
Normal file
3
titles/cxb/rev_data/Item/ItemArchiveList_Icon.csv
Normal file
@@ -0,0 +1,3 @@
|
||||
1000,ic0000,IconName0000,,
|
||||
1001,ic0001,IconName0001,,
|
||||
1002,ic0002,IconName0002,,
|
||||
|
3
titles/cxb/rev_data/Item/ItemArchiveList_SkinBg.csv
Normal file
3
titles/cxb/rev_data/Item/ItemArchiveList_SkinBg.csv
Normal file
@@ -0,0 +1,3 @@
|
||||
3000,skb0000,SkinName0000,,
|
||||
3001,skb0001,SkinName0001,,
|
||||
3002,skb0002,SkinName0002,,
|
||||
|
3
titles/cxb/rev_data/Item/ItemArchiveList_SkinEffect.csv
Normal file
3
titles/cxb/rev_data/Item/ItemArchiveList_SkinEffect.csv
Normal file
@@ -0,0 +1,3 @@
|
||||
5000,ske0000,SkinName0000,,
|
||||
5001,ske0001,SkinName0001,,
|
||||
5002,ske0002,SkinName0002,,
|
||||
|
3
titles/cxb/rev_data/Item/ItemArchiveList_SkinNotes.csv
Normal file
3
titles/cxb/rev_data/Item/ItemArchiveList_SkinNotes.csv
Normal file
@@ -0,0 +1,3 @@
|
||||
4000,skt0000,SkinName0000,,
|
||||
4001,skt0001,SkinName0001,,
|
||||
4002,skt0002,SkinName0002,,
|
||||
|
3
titles/cxb/rev_data/Item/ItemList_Title.csv
Normal file
3
titles/cxb/rev_data/Item/ItemList_Title.csv
Normal file
@@ -0,0 +1,3 @@
|
||||
2000,スーパーゴリラ,4,
|
||||
2001,ふつうのゴリラ,3,
|
||||
2002,モンキー,0,
|
||||
|
89
titles/cxb/rev_data/License_Offline.csv
Normal file
89
titles/cxb/rev_data/License_Offline.csv
Normal file
@@ -0,0 +1,89 @@
|
||||
英雄の証 ~ 4Version/カプコンサウンドチーム
|
||||
© CAPCOM CO., LTD. ALL RIGHTS RESERVED.
|
||||
|
||||
灼熱の刃 ~ ディノバルド
|
||||
© CAPCOM CO., LTD. ALL RIGHTS RESERVED.
|
||||
|
||||
古代の息吹き
|
||||
© CAPCOM CO., LTD. ALL RIGHTS RESERVED.
|
||||
|
||||
Theme of Ryu -SFIV Arrange-/Capcom Sound Team / Hideyuki Fukasawa
|
||||
©CAPCOM U.S.A., INC. ALL RIGHTS RESERVED.
|
||||
|
||||
Ultra Street Fighter IV/Hideyuki Fukasawa
|
||||
©CAPCOM U.S.A., INC. ALL RIGHTS RESERVED.
|
||||
|
||||
Theme of Chun-Li -SFIV Arrange-/Capcom Sound Team / Hideyuki Fukasawa
|
||||
©CAPCOM U.S.A., INC. ALL RIGHTS RESERVED.
|
||||
|
||||
Street Fighter V/Masahiro Aoki
|
||||
©CAPCOM U.S.A., INC. ALL RIGHTS RESERVED.
|
||||
|
||||
英雄の証/MHF-G 2015 Version
|
||||
© CAPCOM CO., LTD. ALL RIGHTS RESERVED.
|
||||
|
||||
異ヲ辿リシモノ -対峙-/若林タカツグ
|
||||
© CAPCOM CO., LTD. ALL RIGHTS RESERVED.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
QLWA(グルーヴコースター 3 リンクフィーバーより)/t+pazolite
|
||||
© TAITO CORPORATION 1978,2016 ALL RIGHTS RESERVED.
|
||||
|
||||
グルーヴ・ザ・ハート(グルーヴコースター 3 リンクフィーバーより)/ビートまりお+あまね
|
||||
© TAITO CORPORATION 1978,2016 ALL RIGHTS RESERVED.
|
||||
|
||||
Got hive of Ra(グルーヴコースター 3 リンクフィーバーより)/E.G.G.
|
||||
© TAITO CORPORATION 1978,2016 ALL RIGHTS RESERVED.
|
||||
|
||||
LINK LINK FEVER!!!(グルーヴコースター 3 リンクフィーバーより)/リンカ (CV:豊田萌絵)
|
||||
© TAITO CORPORATION 1978,2016 ALL RIGHTS RESERVED.
|
||||
|
||||
SAKURA EXHAUST/RIO HAMAMOTO(BNSI)「太鼓の達人」より
|
||||
©BANDAI NAMCO Entertainment Inc.
|
||||
|
||||
カリソメ(グルーヴコースター 3 リンクフィーバーより)/コンプ(豚乙女) × ichigo(岸田教団 & THE明星ロケッツ)
|
||||
©上海アリス幻樂団
|
||||
© TAITO CORPORATION 1978,2016 ALL RIGHTS RESERVED.
|
||||
|
||||
そして誰もいなくなった(グルーヴコースター 3 リンクフィーバーより)/コバヤシユウヤ(IOSYS) × あにー(TaNaBaTa)
|
||||
©上海アリス幻樂団
|
||||
© TAITO CORPORATION 1978,2016 ALL RIGHTS RESERVED.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Font Design by Fontworks Inc.
|
||||
DynaFont is a registered Trademark of DynaComware Taiwan Inc.
|
||||
Ogg Vorbis is Copyright ©2015, Xiph. Org Foundation
|
||||
The font used on this product is provided by Hakusyu Fonts co,.Ltd.
|
||||
キャスティング・ライツクリアランス
|
||||
株式会社ビーイング
|
||||
JASRAC許諾第V-1512134号
|
||||
e-License許諾番号GS35000
|
||||
VOCALOID and VOCALO are trademarks of Yamaha Corporation.
|
||||
|
||||
OMNiMIX v1.2
|
||||
|
4
titles/cxb/rev_data/MissionList.csv
Normal file
4
titles/cxb/rev_data/MissionList.csv
Normal file
@@ -0,0 +1,4 @@
|
||||
MissionID,Text,Type,Value_op,Value,Mcode,Difficulty_op,Difficulty,Level_op,Level,Grade_op,Grade,GaugeType_op,GaugeType,HiSpeed_op,HiSpeed,APP,DAP,FlipV,FlipH,Fullcombo,Combo_op,Combo,ClearRate_op,ClearRate,StartTime,StartEnd,District,CoupleId
|
||||
0,-,-1,-1,-1,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
|
||||
1,-,-1,-1,-1,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
|
||||
2,ExtraStage‚ÅMEGALOMAN[i]A‚ðƒNƒŠƒA‚·‚é,0,-1,-1,megaro,-1,-1,-1,-1,1,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
|
||||
|
471
titles/cxb/rev_data/MusicArchiveList.csv
Normal file
471
titles/cxb/rev_data/MusicArchiveList.csv
Normal file
@@ -0,0 +1,471 @@
|
||||
tutori2,10000,100000,10,10,10,10,10,0,0,0,0,0,0,100000,
|
||||
tutori3,10000,100000,10,10,10,10,10,0,0,0,0,0,0,100000,
|
||||
tutori4,10000,100000,10,10,10,10,10,0,0,0,0,0,0,100000,
|
||||
tutori8,10000,1000000,30,150,350,0,0,1,1,1,0,0,0,100345,
|
||||
sateli,10000,100000,280,490,770,820,170,1,1,1,1,1,0,100300,
|
||||
nature,10000,100000,140,240,530,750,50,1,1,1,1,1,3,100301,
|
||||
purple,10000,100000,220,540,640,730,140,1,1,1,1,1,0,100307,
|
||||
hearts,10000,100000,180,380,680,770,80,1,1,1,1,1,0,100308,
|
||||
phasea,10000,100000,160,380,650,750,90,1,1,1,1,1,0,100310,
|
||||
planet,10000,100000,170,360,490,710,100,1,1,1,1,1,1,100311,
|
||||
firefo,10000,100000,130,360,570,830,70,1,1,1,1,1,0,100314,
|
||||
kounen,10000,100000,210,400,660,780,100,1,1,1,1,1,3,100315,
|
||||
essenc,10000,100000,250,500,700,760,110,1,1,1,1,1,0,100316,
|
||||
summer,10000,100000,230,570,790,890,130,1,1,1,1,1,0,100317,
|
||||
tanosi,10000,100000,250,450,700,800,160,1,1,1,1,1,7,100319,
|
||||
picora,10000,100000,150,380,660,750,80,1,1,1,1,1,1,100320,
|
||||
devils,10000,100000,270,400,800,0,150,1,1,1,0,1,0,100323,
|
||||
techno,10000,100000,160,380,510,740,90,1,1,1,1,1,1,100328,
|
||||
glowww,10000,100000,170,280,420,600,80,1,1,1,1,1,7,100335,
|
||||
powerr,10000,100000,190,380,690,790,120,1,1,1,1,1,0,100336,
|
||||
amater,10000,100000,210,480,650,790,130,1,1,1,1,1,0,100340,
|
||||
advers,10000,100000,150,480,710,830,90,1,1,1,1,1,1,100349,
|
||||
venera,10000,100000,150,430,680,750,80,1,1,1,1,1,0,100353,
|
||||
dazaii,10000,100000,210,430,730,770,120,1,1,1,1,1,3,100357,
|
||||
thesig,10000,100000,210,380,560,730,100,1,1,1,1,1,3,100365,
|
||||
hosita,10000,100000,160,360,480,650,100,1,1,1,1,1,9999,100344,
|
||||
bluede,10000,100000,220,410,580,700,120,1,1,1,1,1,5,100372,
|
||||
emerao,10000,100000,300,530,850,0,190,1,1,1,0,1,1,100373,
|
||||
megaro,10000,100000,550,800,930,980,0,1,1,1,1,0,0,100129,
|
||||
angeli,10000,100000,330,560,820,900,220,1,1,1,1,1,0,100330,
|
||||
moonli,10000,100000,140,430,610,730,80,1,1,1,1,1,9999,100342,
|
||||
yumemi,10000,100000,120,350,590,690,60,1,1,1,1,1,9999,100369,
|
||||
pinkym,10000,100000,240,440,740,810,160,1,1,1,1,1,0,100348,
|
||||
dynami2,10000,100000,180,510,780,800,80,1,1,1,1,1,0,100370,
|
||||
reseed3,10000,100000,200,550,760,800,100,1,1,1,1,1,0,100306,
|
||||
toucho,10000,200000,90,280,440,650,50,1,1,1,1,1,1,100002,
|
||||
ameoto,10000,200000,120,260,470,630,60,1,1,1,1,1,1,100003,
|
||||
kimito,10000,200000,100,260,490,660,70,1,1,1,1,1,1,100004,
|
||||
giantk,10000,200000,250,530,710,780,110,1,1,1,1,1,3,100021,
|
||||
breakd,10000,200000,230,340,570,740,110,1,1,1,1,1,2,100015,
|
||||
dazzlj,10000,200000,350,600,800,900,160,1,1,1,1,1,1,100028,
|
||||
ididid,10000,200000,290,460,720,810,160,1,1,1,1,1,1,100093,
|
||||
sundro,10000,200000,240,470,750,830,140,1,1,1,1,1,3,100042,
|
||||
auflcb,10000,200000,130,430,810,0,80,1,1,1,0,1,0,100063,
|
||||
dennou,10000,200000,290,600,760,870,150,1,1,1,1,1,1,100045,
|
||||
hokoro,10000,200000,290,570,710,810,140,1,1,1,1,1,1,100068,
|
||||
landin,10000,200000,260,330,490,670,130,1,1,1,1,1,1,100005,
|
||||
tomorr,10000,100000,150,240,440,620,80,1,1,1,1,1,7,100362,
|
||||
daybyd,10000,100000,130,260,380,590,60,1,1,1,1,1,7,100363,
|
||||
syoujo,10000,100000,190,350,530,780,80,1,1,1,1,1,1,100309,
|
||||
destru,10000,100000,190,410,620,720,100,1,1,1,1,1,0,100352,
|
||||
gingat,10000,200000,130,290,460,610,50,1,1,1,1,1,0,100041,
|
||||
daisak,10000,200000,280,360,600,750,120,1,1,1,1,1,0,100066,
|
||||
paradi,10000,100000,160,280,530,640,100,1,1,1,1,1,3,100376,
|
||||
pigooo,10000,100000,190,340,590,840,130,1,1,1,1,1,6,100377,
|
||||
season,10000,300000,150,280,440,650,80,1,1,1,1,1,1,100386,
|
||||
canonn,10000,300000,170,280,500,830,70,1,1,1,1,1,1,100387,
|
||||
rhapso,10000,300000,180,340,620,740,60,1,1,1,1,1,1,100388,
|
||||
turkis,10000,300000,190,390,640,840,110,1,1,1,1,1,1,100389,
|
||||
biohaz,10000,300000,150,300,510,640,60,1,1,1,1,1,9999,100390,
|
||||
monhan,10000,300000,100,260,360,540,50,1,1,1,1,1,9999,100391,
|
||||
gyakut2,10000,300000,130,350,430,560,50,1,1,1,1,1,9999,100392,
|
||||
street,10000,300000,130,340,470,660,70,1,1,1,1,1,9999,100393,
|
||||
rockma2,10000,300000,210,340,490,760,140,1,1,1,1,1,9999,100394,
|
||||
auflcb3,10000,100000,160,360,660,860,60,1,1,1,1,1,9999,100374,
|
||||
irohaa,10000,100000,190,410,550,760,120,1,1,1,1,1,0,100325,
|
||||
ibelie,10000,100000,270,470,780,820,140,1,1,1,1,1,0,100326,
|
||||
monhan2,10000,300000,120,240,430,680,60,1,1,1,1,1,9999,100409,
|
||||
monhan3,10000,300000,180,280,450,730,80,1,1,1,1,1,9999,100410,
|
||||
yejiii,10000,100000,220,360,630,790,100,1,1,1,1,1,0,100418,
|
||||
histor,10000,100000,200,360,560,820,110,1,1,1,1,1,0,100419,
|
||||
chaset,10000,100000,150,310,580,760,80,1,1,1,1,1,9999,100338,
|
||||
metall,10000,100000,160,280,570,770,80,1,1,1,1,1,1,100412,
|
||||
letmeg,10000,100000,180,320,500,720,120,1,1,1,1,1,1,100327,
|
||||
hontno,10000,200000,120,260,530,660,90,1,1,1,1,1,1,100010,
|
||||
azitat,10000,200000,240,550,700,830,140,1,1,1,1,1,0,100024,
|
||||
hellom,10000,100000,180,370,580,720,70,1,1,1,1,1,1,100360,
|
||||
laught,10000,100000,200,350,510,710,70,1,1,1,1,1,1,100337,
|
||||
bluede2,10000,100000,160,360,560,810,90,1,1,1,1,1,1,100426,
|
||||
street2,10000,300000,210,370,550,730,140,1,1,1,1,1,9999,100423,
|
||||
street3,10000,300000,240,380,570,740,130,1,1,1,1,1,9999,100424,
|
||||
street4,10000,300000,170,320,510,780,110,1,1,1,1,1,9999,100425,
|
||||
silbur,10000,100000,200,350,540,750,90,1,1,1,1,1,1,100421,
|
||||
spicaa,10000,100000,230,360,560,780,100,1,1,1,1,1,1,100422,
|
||||
tricko,10000,100000,230,340,560,750,110,1,1,1,1,1,0,100438,
|
||||
thisis,10000,100000,230,370,600,740,120,1,1,1,1,1,4,100435,
|
||||
rising,10000,100000,230,380,660,850,140,1,1,1,1,1,4,100436,
|
||||
orbita,10000,100000,200,380,620,740,120,1,1,1,1,1,5,100411,
|
||||
dddddd,10000,100000,130,330,530,690,90,1,1,1,1,1,5,100433,
|
||||
pyroma,10000,100000,220,420,700,840,80,1,1,1,1,1,4,100427,
|
||||
touchn,10000,100000,270,460,680,860,150,1,1,1,1,1,8,100312,
|
||||
onlyll,10000,100000,210,320,560,690,130,1,1,1,1,1,9999,100359,
|
||||
upside,10000,100000,180,270,480,670,80,1,1,1,1,1,1,100313,
|
||||
istanb,10000,100000,410,490,900,980,230,1,1,1,1,1,3,100322,
|
||||
memori,10000,100000,260,380,650,840,130,1,1,1,1,1,9999,100371,
|
||||
straye,10000,100000,250,360,610,730,140,1,1,1,1,1,4,100350,
|
||||
rearhy,10000,100000,170,320,520,690,70,1,1,1,1,1,9999,100358,
|
||||
hereco,10000,100000,160,340,510,680,110,1,1,1,1,1,4,100432,
|
||||
thesun,10000,100000,250,400,720,870,130,1,1,1,1,1,4,100441,
|
||||
sayona,10000,100000,200,340,530,710,100,1,1,1,1,1,9999,100343,
|
||||
flameu,10000,100000,180,360,570,650,100,1,1,1,1,1,1,100380,
|
||||
raidon,10000,100000,300,380,580,870,130,1,1,1,1,1,1,100434,
|
||||
riseup,10000,100000,180,410,670,770,70,1,1,1,1,1,4,100437,
|
||||
sunglo,10000,100000,180,390,590,720,100,1,1,1,1,1,7,100431,
|
||||
kinbos,10000,100000,220,380,640,770,120,1,1,1,1,1,3,100439,
|
||||
densho,10000,100000,280,420,740,900,170,1,1,1,1,1,5,100430,
|
||||
aiohoo,10000,300000,180,290,420,660,100,1,1,1,1,1,1,100471,
|
||||
entert,10000,300000,150,330,540,870,90,1,1,1,1,1,6,100472,
|
||||
takeit,10000,100000,200,380,650,830,120,1,1,1,1,1,4,100457,
|
||||
harmon,10000,100000,200,360,490,650,120,1,1,1,1,1,7,100449,
|
||||
avemar,10000,300000,160,310,530,750,80,1,1,1,1,1,5,100428,
|
||||
mateki,10000,300000,180,350,540,790,100,1,1,1,1,1,5,100429,
|
||||
lovech,10000,100000,160,300,460,680,80,1,1,1,1,1,7,100445,
|
||||
akaihe,10000,300000,210,320,500,690,80,1,1,1,1,1,1,100473,
|
||||
juicys,10000,300000,180,260,450,830,100,1,1,1,1,1,7,100474,
|
||||
codena,10000,100000,180,350,480,680,90,1,1,1,1,1,1,100468,
|
||||
groove,10000,300000,220,400,520,730,100,1,1,1,1,1,103,100475,
|
||||
kansho,10000,100000,130,270,550,740,70,1,1,1,1,1,9999,100450,
|
||||
overcl2,10000,100000,230,420,580,740,120,1,1,1,1,1,3,100486,
|
||||
taikoo,10000,300000,130,390,500,750,60,1,1,1,1,1,104,100483,
|
||||
groove2,10000,300000,150,400,580,850,90,1,1,1,1,1,9999,100480,
|
||||
overcl,10000,100000,120,350,570,860,80,1,1,1,1,1,4,100487,
|
||||
notoss,10000,100000,120,420,650,910,80,1,1,1,1,1,4,100466,
|
||||
machup,10000,100000,170,320,410,710,90,1,1,1,1,1,6,100447,
|
||||
groove3,10000,300000,180,340,640,850,100,1,1,1,1,1,105,100488,
|
||||
groove4,10000,300000,220,350,500,750,120,1,1,1,1,1,106,100489,
|
||||
everyt,10000,100000,220,300,740,0,130,1,1,1,0,1,5,100482,
|
||||
lespri,10000,100000,250,570,800,0,130,1,1,1,0,1,5,100465,
|
||||
groove5,10000,300000,240,370,670,0,140,1,1,1,0,1,0,100491,
|
||||
honeyo,10000,100000,320,630,880,930,240,1,1,1,1,1,6,100490,
|
||||
groove6,10000,300000,300,640,790,0,220,1,1,1,0,1,3,100494,
|
||||
sunglo2,10000,100000,210,360,670,810,110,1,1,1,1,1,6,100495,
|
||||
fourte,10000,100000,240,500,740,800,140,1,1,1,1,1,5,100498,
|
||||
monhan4,10000,300000,120,400,510,620,50,1,1,1,1,1,9999,100496,
|
||||
monhan5,10000,300000,120,350,420,650,100,1,1,1,1,1,9999,100497,
|
||||
darkpa,10000,100000,260,390,700,840,160,1,1,1,1,1,3,100504,
|
||||
hervor,10000,100000,280,390,730,810,180,1,1,1,1,1,5,100505,
|
||||
cirnon,10000,300000,240,400,600,790,170,1,1,1,1,1,9999,100499,
|
||||
marisa,10000,300000,250,410,620,850,180,1,1,1,1,1,9999,100500,
|
||||
yakini,10000,300000,250,340,580,820,130,1,1,1,1,1,9999,100501,
|
||||
justic,10000,300000,190,360,570,830,140,1,1,1,1,1,1,100502,
|
||||
sintyo,10000,300000,250,460,700,830,160,1,1,1,1,1,6,100503,
|
||||
ascand,10000,100000,320,540,800,900,180,1,1,1,1,1,0,100347,
|
||||
blackl,10000,100000,190,410,730,840,120,1,1,1,1,1,3,100506,
|
||||
childr,10000,200000,240,390,560,620,140,1,1,1,1,1,0,100043,
|
||||
tsukai,10000,200000,190,440,720,760,130,1,1,1,1,1,1,100044,
|
||||
rideon,10000,200000,290,410,600,800,160,1,1,1,1,1,1,100067,
|
||||
minest,10000,100000,210,390,620,760,130,1,1,1,1,1,1,100507,
|
||||
ordine,10000,100000,250,430,730,820,190,1,1,1,1,1,3,100508,
|
||||
dreamw,10000,100000,260,370,620,750,160,1,1,1,1,1,0,100509,
|
||||
minerv,10000,100000,320,610,900,0,250,1,1,1,0,1,4,100510,
|
||||
wannab,10000,200000,90,230,400,650,50,1,1,1,1,1,3,100001,
|
||||
sekain,10000,100000,260,390,690,780,160,1,1,1,1,1,1,100511,
|
||||
farawa,10000,100000,230,360,600,760,180,1,1,1,1,1,7,100512,
|
||||
crissc,10000,200000,370,630,860,910,170,1,1,1,1,1,4,100100,
|
||||
speedy,10000,100000,220,550,770,0,110,1,1,1,0,1,8,100324,
|
||||
xxxrev,10000,100000,210,340,560,730,150,1,1,1,1,1,0,100513,
|
||||
higame,10000,200000,200,300,580,710,130,1,1,1,1,1,3,100016,
|
||||
theepi,10000,200000,190,400,610,750,140,1,1,1,1,1,3,100022,
|
||||
anomie,10000,200000,220,380,610,770,150,1,1,1,1,1,0,100023,
|
||||
crocus,10000,100000,260,370,600,720,150,1,1,1,1,1,7,100524,
|
||||
lavien,10000,100000,270,410,710,800,180,1,1,1,1,1,5,100546,
|
||||
megaro2,10000,100000,0,0,990,1000,0,0,0,1,1,0,4,100361,
|
||||
chipnn,10000,100000,270,340,610,790,160,1,1,1,1,1,6,100541,
|
||||
yiyoyi,10000,200000,140,330,560,700,70,1,1,1,1,1,3,100007,
|
||||
binary,10000,200000,170,350,640,890,140,1,1,1,1,1,1,100014,
|
||||
makaim,10000,200000,300,500,770,0,230,1,1,1,0,1,3,100054,
|
||||
gyakut,10000,200000,150,210,460,640,60,1,1,1,1,1,1,100055,
|
||||
basara,10000,200000,190,370,640,730,140,1,1,1,1,1,0,100056,
|
||||
daybre,10000,300000,160,320,530,720,90,1,1,1,1,1,0,100514,
|
||||
umiyur,10000,300000,140,280,460,640,80,1,1,1,1,1,1,100515,
|
||||
chalur,10000,300000,180,400,600,720,140,1,1,1,1,1,9999,100516,
|
||||
melanc,10000,300000,150,300,500,630,100,1,1,1,1,1,7,100517,
|
||||
konofu,10000,300000,230,350,620,810,110,1,1,1,1,1,1,100518,
|
||||
bladem,10000,100000,280,380,630,750,170,1,1,1,1,1,4,100526,
|
||||
southw,10000,100000,180,270,570,680,120,1,1,1,1,1,7,100536,
|
||||
ryuuse,10000,100000,210,320,590,0,130,1,1,1,0,1,1,100537,
|
||||
redhea,10000,300000,270,390,590,720,100,1,1,1,1,1,0,100519,
|
||||
warnin,10000,300000,250,360,610,740,120,1,1,1,1,1,9999,100520,
|
||||
topsec,10000,300000,240,340,510,640,130,1,1,1,1,1,9999,100521,
|
||||
dddoll,10000,300000,260,380,550,630,140,1,1,1,1,1,9999,100522,
|
||||
tracee,10000,300000,190,310,490,650,90,1,1,1,1,1,0,100548,
|
||||
drivin,10000,200000,230,400,660,760,80,1,1,1,1,1,7,100111,
|
||||
genzit,10000,200000,180,460,730,820,120,1,1,1,1,1,0,100118,
|
||||
aerial,10000,200000,110,280,560,710,50,1,1,1,1,1,1,100039,
|
||||
einher,10000,100000,290,400,740,800,160,1,1,1,1,1,4,100532,
|
||||
ariell,10000,100000,190,320,640,730,150,1,1,1,1,1,7,100540,
|
||||
firstl,10000,100000,250,360,650,770,170,1,1,1,1,1,1,100542,
|
||||
heartl,10000,100000,230,300,640,0,110,1,1,1,0,1,1,100550,
|
||||
erasee,10000,100000,220,350,580,680,120,1,1,1,1,1,0,100551,
|
||||
regene,10000,100000,200,300,560,700,130,1,1,1,1,1,0,100530,
|
||||
allelu,10000,100000,280,350,640,750,160,1,1,1,1,1,9999,100549,
|
||||
lighto,10000,100000,250,330,600,740,120,1,1,1,1,1,1,100543,
|
||||
termin,10000,100000,240,340,630,790,130,1,1,1,1,1,7,100552,
|
||||
ryuuse2,10000,100000,200,360,620,750,130,1,1,1,1,1,1,100556,
|
||||
prizmm,10000,100000,210,300,540,0,120,1,1,1,0,1,1,100547,
|
||||
samalv,10000,200000,190,390,580,770,130,1,1,1,1,1,6,100098,
|
||||
palpit,10000,100000,290,550,840,920,180,1,1,1,1,1,8,100544,
|
||||
gainen,10000,100000,260,370,630,0,150,1,1,1,0,1,9999,100558,
|
||||
moonsh,10000,100000,230,360,620,0,100,1,1,1,0,1,3,100525,
|
||||
moonki,10000,100000,250,390,640,0,130,1,1,1,0,1,1,100559,
|
||||
moonri,10000,200000,210,380,580,850,140,1,1,1,1,1,0,100560,
|
||||
goaway,10000,100000,230,450,590,700,100,1,1,1,1,1,0,100561,
|
||||
itback,10000,100000,230,380,710,0,120,1,1,1,0,1,3,100567,
|
||||
redhhh,10000,100000,240,390,770,0,130,1,1,1,0,1,4,100569,
|
||||
actual,10000,100000,250,380,800,0,140,1,1,1,0,1,0,100568,
|
||||
zonzon,10000,200000,160,330,630,670,50,1,1,1,1,1,1,100367,
|
||||
memorm,10000,100000,260,370,730,0,150,1,1,1,0,1,0,100565,
|
||||
kokoro,10000,100000,200,430,650,690,120,1,1,1,1,1,1,100554,
|
||||
poweri,10000,100000,260,490,750,910,130,1,1,1,1,1,4,100563,
|
||||
nisenn,10000,100000,0,0,760,0,0,0,0,1,0,0,8,100555,
|
||||
yukiya,10000,200000,190,400,610,0,110,1,1,1,0,1,3,100096,
|
||||
zankyo,10000,200000,180,380,570,740,100,1,1,1,1,1,5,100124,
|
||||
overlp,10000,200000,170,300,510,0,90,1,1,1,0,1,7,100119,
|
||||
fracta,10000,100000,310,520,830,0,190,1,1,1,0,1,3,100529,
|
||||
cantst,10000,100000,230,420,650,0,110,1,1,1,0,1,0,100455,
|
||||
primaa,10000,100000,180,350,540,750,120,1,1,1,1,1,0,100527,
|
||||
cyberg,10000,100000,230,350,600,0,120,1,1,1,0,1,0,100448,
|
||||
freakw,10000,200000,220,420,650,660,130,1,1,1,1,1,0,100018,
|
||||
aquali,10000,200000,160,340,580,0,110,1,1,1,0,1,4,100006,
|
||||
takesc,10000,100000,270,370,690,0,100,1,1,1,0,1,1,100572,
|
||||
cthugh,10000,100000,250,480,730,0,140,1,1,1,0,1,0,100531,
|
||||
thetaa,10000,100000,210,340,620,0,110,1,1,1,0,1,1,100571,
|
||||
nekofu,10000,300000,220,340,570,800,100,1,1,1,1,1,6,100493,
|
||||
howtru,10000,200000,120,250,530,740,80,1,1,1,1,1,0,100057,
|
||||
romanc,10000,200000,280,550,780,0,100,1,1,1,0,1,0,100047,
|
||||
kotobu,10000,200000,320,710,900,0,250,1,1,1,0,1,0,100573,
|
||||
xmasss,10000,300000,180,380,560,770,80,1,1,1,1,1,101,100417,
|
||||
galaxy,10000,300000,160,320,430,670,100,1,1,1,1,1,0,100600,
|
||||
rebell,10000,1000000,490,630,910,0,0,1,1,1,0,0,0,100601,
|
||||
anothe,10000,1000000,270,370,730,760,0,1,1,1,1,0,0,100602,
|
||||
addict,10000,1000000,200,340,520,620,0,1,1,1,1,0,0,100603,
|
||||
dirtyy,10000,1000000,150,280,590,740,0,1,1,1,1,0,0,100604,
|
||||
levelf,10000,300000,110,280,450,630,50,1,1,1,1,1,0,100605,
|
||||
omnive,10000,1000000,340,520,830,860,0,1,1,1,1,0,0,100606,
|
||||
kakuse,10000,1000000,170,550,750,0,0,1,1,1,0,0,0,100607,
|
||||
unbeli,10000,300000,130,260,380,620,70,1,1,1,1,1,0,100608,
|
||||
sonzai,10000,1000000,260,400,590,660,0,1,1,1,1,0,0,100609,
|
||||
okonik,10000,1000000,260,450,670,0,0,1,1,1,0,0,0,100610,
|
||||
crssho,10000,1000000,350,600,850,0,100,1,1,1,0,1,0,100611,
|
||||
reanim,10000,1000000,280,440,700,800,0,1,1,1,1,0,0,100612,
|
||||
kamino,10000,1000000,400,620,780,0,150,1,1,1,0,1,0,100613,
|
||||
fiveee,10000,300000,180,370,610,710,100,1,1,1,1,1,0,100614,
|
||||
granda,10000,1000000,210,380,790,0,0,1,1,1,0,0,0,100615,
|
||||
fronti2,10000,1000000,460,690,890,0,90,1,1,1,0,1,0,100616,
|
||||
saigon,10000,1000000,190,310,570,0,0,1,1,1,0,0,0,100617,
|
||||
replay,10000,300000,180,440,630,700,80,1,1,1,1,1,0,100618,
|
||||
mousou,10000,1000000,160,260,540,0,0,1,1,1,0,0,0,100619,
|
||||
aheadd,10000,300000,130,250,350,580,70,1,1,1,1,1,0,100620,
|
||||
musicr1,10000,100000,220,330,580,740,120,1,1,1,1,1,0,100621,
|
||||
getthe,10000,300000,170,370,490,660,60,1,1,1,1,1,0,100622,
|
||||
design,10000,1000000,150,390,680,690,0,1,1,1,1,0,0,100623,
|
||||
garnet,10000,1000000,260,460,700,940,0,1,1,1,1,0,0,100624,
|
||||
hopesb,10000,300000,100,250,440,610,70,1,1,1,1,1,0,100625,
|
||||
shooti,10000,300000,150,370,490,690,70,1,1,1,1,1,0,100626,
|
||||
dangan,10000,1000000,280,580,810,0,0,1,1,1,0,0,0,100627,
|
||||
impact,10000,1000000,240,600,720,900,200,1,1,1,1,1,0,100628,
|
||||
lightm,10000,300000,260,330,540,710,110,1,1,1,1,1,0,100629,
|
||||
miiroo,10000,300000,220,390,580,680,110,1,1,1,1,1,0,100630,
|
||||
voiceo,10000,1000000,180,340,580,590,0,1,1,1,1,0,0,100631,
|
||||
cosmol,10000,1000000,360,640,870,0,250,1,1,1,0,1,0,100632,
|
||||
vividd,10000,300000,160,350,550,650,90,1,1,1,1,1,0,100633,
|
||||
splash,10000,1000000,260,500,710,0,0,1,1,1,0,0,0,100634,
|
||||
donuth,10000,300000,220,400,540,800,110,1,1,1,1,1,0,100635,
|
||||
senbon,10000,300000,200,280,540,740,120,1,1,1,1,1,0,100636,
|
||||
kmtyju,10000,300000,240,310,570,740,120,1,1,1,1,1,0,100637,
|
||||
fronti,10000,1000000,480,650,820,0,130,1,1,1,0,1,0,100638,
|
||||
nueraa,10000,1000000,220,430,750,530,0,1,1,1,1,0,0,100639,
|
||||
childe,10000,300000,90,240,340,560,40,1,1,1,1,1,0,100640,
|
||||
dazzli2,10000,1000000,350,600,820,0,190,1,1,1,0,1,0,100641,
|
||||
perfec,10000,1000000,390,640,780,0,0,1,1,1,0,0,0,100642,
|
||||
flower,10000,300000,70,200,400,650,60,1,1,1,1,1,0,100643,
|
||||
frgmnt,10000,1000000,330,630,740,650,100,1,1,1,1,1,0,100644,
|
||||
headph,10000,1000000,240,320,520,0,0,1,1,1,0,0,0,100645,
|
||||
crsang,10000,1000000,270,530,670,0,130,1,1,1,0,1,0,100646,
|
||||
musicr4,10000,100000,190,320,580,0,120,1,1,1,0,1,0,100647,
|
||||
imaxim,10000,1000000,440,690,900,870,0,1,1,1,1,0,0,100648,
|
||||
azitat2,10000,1000000,230,520,660,0,80,1,1,1,0,1,0,100649,
|
||||
dynami,10000,1000000,260,540,680,0,110,1,1,1,0,1,0,100650,
|
||||
incave,10000,1000000,220,440,760,780,0,1,1,1,1,0,0,100651,
|
||||
aktuki,10000,1000000,260,580,840,0,100,1,1,1,0,1,0,100652,
|
||||
kindof,10000,1000000,140,290,480,0,0,1,1,1,0,0,0,100653,
|
||||
mikaku,10000,1000000,190,310,540,0,0,1,1,1,0,0,0,100654,
|
||||
strang,10000,1000000,120,280,550,0,0,1,1,1,0,0,0,100655,
|
||||
hesper,10000,1000000,360,610,920,930,0,1,1,1,1,0,0,100656,
|
||||
breaka,10000,300000,150,310,450,680,70,1,1,1,1,1,0,100657,
|
||||
myname,10000,1000000,60,140,300,570,0,1,1,1,1,0,0,100658,
|
||||
amaiko,10000,1000000,150,370,600,0,0,1,1,1,0,0,0,100659,
|
||||
reseed2,10000,1000000,220,470,630,0,0,1,1,1,0,0,0,100660,
|
||||
kingst,10000,1000000,380,630,740,0,120,1,1,1,0,1,0,100661,
|
||||
ramram,10000,1000000,230,340,670,0,0,1,1,1,0,0,0,100662,
|
||||
murasa,10000,1000000,280,410,760,0,0,1,1,1,0,0,0,100663,
|
||||
happyd,10000,1100000,220,410,730,790,180,1,1,1,1,1,0,100664,
|
||||
izimed,10000,300000,190,390,690,770,90,1,1,1,1,1,0,100665,
|
||||
wastel,10000,1000000,40,120,230,400,0,1,1,1,1,0,0,100666,
|
||||
assign,10000,1000000,260,430,610,620,0,1,1,1,1,0,0,100667,
|
||||
jahaci,10000,1000000,170,290,590,0,0,1,1,1,0,0,0,100668,
|
||||
hisuii,10000,1000000,220,470,700,0,0,1,1,1,0,0,0,100669,
|
||||
godkno,10000,300000,100,260,450,640,60,1,1,1,1,1,0,100670,
|
||||
roadof,10000,300000,150,360,500,750,70,1,1,1,1,1,0,100671,
|
||||
rokuch,10000,300000,210,350,620,810,110,1,1,1,1,1,0,100672,
|
||||
valent,10000,300000,270,330,590,770,100,1,1,1,1,1,0,100673,
|
||||
unfini,10000,300000,160,320,500,710,80,1,1,1,1,1,0,100674,
|
||||
auflcb2,10000,1000000,220,370,750,0,100,1,1,1,0,1,0,100675,
|
||||
burnin,10000,1000000,180,280,600,850,150,1,1,1,1,1,0,100676,
|
||||
sphere,10000,1000000,200,380,730,0,0,1,1,1,0,0,0,100677,
|
||||
dropou,10000,300000,170,310,460,690,140,1,1,1,1,1,0,100678,
|
||||
xencou,10000,300000,200,320,520,600,80,1,1,1,1,1,0,100679,
|
||||
killyk,10000,300000,130,420,630,760,60,1,1,1,1,1,0,100680,
|
||||
missil,10000,1000000,160,380,590,0,0,1,1,1,0,0,0,100681,
|
||||
burstt,10000,300000,120,250,460,630,70,1,1,1,1,1,0,100682,
|
||||
musicr2,10000,100000,220,330,580,0,120,1,1,1,0,1,0,100683,
|
||||
isingl,10000,1000000,250,440,800,0,120,1,1,1,0,1,0,100684,
|
||||
lvless,10000,1000000,230,380,600,0,0,1,1,1,0,0,0,100685,
|
||||
sapphi,10000,1000000,290,440,810,0,0,1,1,1,0,0,0,100686,
|
||||
musicr3,10000,100000,190,320,580,720,120,1,1,1,1,1,0,100687,
|
||||
deeout,10000,1000000,180,340,630,810,0,1,1,1,1,0,0,100688,
|
||||
sugars,10000,300000,170,300,420,660,60,1,1,1,1,1,0,100689,
|
||||
mercur,10000,1000000,140,350,660,0,0,1,1,1,0,0,0,100690,
|
||||
zizizi,10000,1000000,300,570,880,960,0,1,1,1,1,0,0,100691,
|
||||
wegooo,10000,300000,180,340,540,680,100,1,1,1,1,1,0,100692,
|
||||
alonee,10000,300000,110,210,360,480,50,1,1,1,1,1,0,100693,
|
||||
nuheat,10000,1000000,290,440,650,850,0,1,1,1,1,0,0,100694,
|
||||
granro,10000,300000,150,280,430,600,80,1,1,1,1,1,0,100695,
|
||||
sister,10000,300000,100,270,460,630,70,1,1,1,1,1,0,100696,
|
||||
lotusl,10000,1000000,200,360,640,0,0,1,1,1,0,0,0,100697,
|
||||
yukari,10000,1000000,310,500,760,840,0,1,1,1,1,0,0,100698,
|
||||
flawli,10000,300000,170,300,400,590,80,1,1,1,1,1,0,100699,
|
||||
nightf,10000,1000000,150,280,460,710,0,1,1,1,1,0,0,100700,
|
||||
random,10000,100000,0,0,0,0,0,0,0,0,0,0,0,100701,
|
||||
wiwwtw,10000,1000000,260,380,620,0,0,1,1,1,0,0,0,100702,
|
||||
inneru,10000,300000,220,360,480,670,90,1,1,1,1,1,0,100703,
|
||||
taishi,10000,1000000,190,350,580,0,0,1,1,1,0,0,0,100704,
|
||||
daysss,10000,1000000,380,590,810,810,0,1,1,1,1,0,0,100705,
|
||||
bokuwa,10000,300000,230,340,550,690,160,1,1,1,1,1,0,100706,
|
||||
showww,10000,300000,180,350,510,790,150,1,1,1,1,1,0,100707,
|
||||
nevers,10000,300000,260,320,650,750,150,1,1,1,1,1,0,100708,
|
||||
bleeze,10000,300000,160,310,470,620,90,1,1,1,1,1,0,100709,
|
||||
dreami,10000,1000000,140,370,650,0,0,1,1,1,0,0,0,100710,
|
||||
allune,10000,1000000,140,350,710,0,0,1,1,1,0,0,0,100711,
|
||||
always,10000,1000000,130,270,490,0,0,1,1,1,0,0,0,100712,
|
||||
anomie2,10000,1000000,160,430,840,0,0,1,1,1,0,0,0,100713,
|
||||
aquali2,10000,1000000,220,430,600,810,0,1,1,1,1,0,0,100714,
|
||||
astaro,10000,1000000,230,400,740,0,0,1,1,1,0,0,0,100715,
|
||||
bassan,10000,1000000,200,320,660,0,0,1,1,1,0,0,0,100716,
|
||||
zonzon2,10000,1000000,130,270,680,750,0,1,1,1,1,0,0,100717,
|
||||
bouled,10000,1000000,190,300,570,0,0,1,1,1,0,0,0,100718,
|
||||
brandn,10000,1000000,90,390,660,720,0,1,1,1,1,0,0,100719,
|
||||
bravee,10000,1000000,350,600,820,0,250,1,1,1,0,-1,0,100720,
|
||||
breakd2,10000,1000000,340,640,740,0,0,1,1,1,0,0,0,100721,
|
||||
buffet,10000,1000000,380,550,680,0,300,1,1,1,0,-1,0,100722,
|
||||
buzzke,10000,1000000,180,330,580,770,0,1,1,1,1,0,0,100723,
|
||||
cashhh,10000,1000000,190,250,640,0,0,1,1,1,0,0,0,100724,
|
||||
cloudb,10000,1000000,370,660,740,0,250,1,1,1,0,-1,0,100725,
|
||||
clouds,10000,1000000,130,250,470,0,0,1,1,1,0,0,0,100726,
|
||||
codepa,10000,1000000,290,550,700,0,150,1,1,1,0,-1,0,100727,
|
||||
comear,10000,1000000,380,560,830,0,250,1,1,1,0,-1,0,100728,
|
||||
crysta,10000,1000000,370,560,810,0,300,1,1,1,0,-1,0,100729,
|
||||
curseo,10000,1000000,220,360,740,0,0,1,1,1,0,0,0,100730,
|
||||
datami,10000,1000000,180,360,660,0,0,1,1,1,0,0,0,100731,
|
||||
defaul,10000,1000000,210,330,480,0,0,1,1,1,0,0,0,100732,
|
||||
design2,10000,1000000,250,430,680,0,0,1,1,1,0,0,0,100733,
|
||||
diamon,10000,1000000,100,260,330,0,0,1,1,1,0,0,0,100734,
|
||||
dispel,10000,1000000,280,480,800,0,0,1,1,1,0,0,0,100735,
|
||||
distan,10000,1000000,200,300,680,0,0,1,1,1,0,0,0,100736,
|
||||
dokibl,10000,1000000,150,230,670,0,0,1,1,1,0,0,0,100737,
|
||||
dontwa,10000,1000000,130,340,690,0,0,1,1,1,0,0,0,100738,
|
||||
drgirl,10000,1000000,190,350,540,730,0,1,1,1,1,0,0,100739,
|
||||
eterna,10000,1000000,120,210,390,0,0,1,1,1,0,0,0,100740,
|
||||
everkr,10000,1000000,180,290,410,0,0,1,1,1,0,0,0,100741,
|
||||
everwh,10000,1000000,200,310,580,0,0,1,1,1,0,0,0,100742,
|
||||
farthe,10000,1000000,300,560,780,870,0,1,1,1,1,0,0,100743,
|
||||
filame,10000,1000000,230,380,630,0,0,1,1,1,0,0,0,100744,
|
||||
flameu2,10000,1000000,170,240,590,0,0,1,1,1,0,0,0,100745,
|
||||
freeee,10000,1000000,190,390,690,0,0,1,1,1,0,0,0,100746,
|
||||
funkyb2,10000,1000000,210,340,560,0,0,1,1,1,0,0,0,100747,
|
||||
granda2,10000,1000000,240,410,730,830,0,1,1,1,1,0,0,100748,
|
||||
hsphsp,10000,1000000,120,250,690,0,0,1,1,1,0,0,0,100749,
|
||||
halluc,10000,1000000,400,520,870,0,0,1,1,1,0,0,0,100750,
|
||||
indigo,10000,1000000,170,330,500,750,0,1,1,1,1,0,0,100751,
|
||||
inters,10000,1000000,250,420,770,0,0,1,1,1,0,0,0,100752,
|
||||
incave2,10000,1000000,310,570,880,0,0,1,1,1,0,0,0,100753,
|
||||
ioniza,10000,1000000,170,340,700,850,0,1,1,1,1,0,0,100754,
|
||||
guilty,10000,1000000,150,280,500,0,0,1,1,1,0,0,0,100755,
|
||||
keraun,10000,1000000,250,520,790,0,0,1,1,1,0,0,0,100756,
|
||||
landin2,10000,1000000,200,340,590,660,0,1,1,1,1,0,0,100757,
|
||||
videog,10000,1000000,210,370,620,0,0,1,1,1,0,0,0,100758,
|
||||
loseyo,10000,1000000,200,300,710,0,0,1,1,1,0,0,0,100759,
|
||||
machin,10000,1000000,120,280,720,0,0,1,1,1,0,0,0,100760,
|
||||
makeit,10000,1000000,110,240,480,0,0,1,1,1,0,0,0,100761,
|
||||
daydre,10000,1000000,190,360,800,0,0,1,1,1,0,0,0,100762,
|
||||
metron,10000,1000000,200,440,710,0,0,1,1,1,0,0,0,100763,
|
||||
milkyw,10000,1000000,220,310,600,0,0,1,1,1,0,0,0,100764,
|
||||
nayuta,10000,1000000,170,370,680,0,0,1,1,1,0,0,0,100766,
|
||||
nightm,10000,1000000,200,490,730,0,0,1,1,1,0,0,0,100767,
|
||||
otherw,10000,1000000,230,410,760,0,0,1,1,1,0,0,0,100768,
|
||||
overth,10000,1000000,330,570,820,0,250,1,1,1,0,-1,0,100769,
|
||||
uuuuuu,10000,1000000,230,370,740,0,0,1,1,1,0,0,0,100770,
|
||||
rainin,10000,1000000,160,410,690,0,0,1,1,1,0,0,0,100771,
|
||||
raisey,10000,1000000,230,550,750,0,150,1,1,1,0,-1,0,100772,
|
||||
resona,10000,1000000,170,320,640,0,0,1,1,1,0,0,0,100773,
|
||||
reuniv,10000,1000000,140,230,410,0,0,1,1,1,0,0,0,100774,
|
||||
rhythm,10000,1000000,370,560,780,0,250,1,1,1,0,-1,0,100775,
|
||||
rushhh,10000,1000000,250,370,750,0,0,1,1,1,0,0,0,100776,
|
||||
steeee,10000,1000000,300,580,870,0,0,1,1,1,0,0,0,100777,
|
||||
sangey,10000,1000000,270,470,850,0,0,1,1,1,0,0,0,100778,
|
||||
senpai,10000,1000000,380,540,770,0,250,1,1,1,0,-1,0,100779,
|
||||
sestea,10000,1000000,270,470,760,0,0,1,1,1,0,0,0,100780,
|
||||
silver,10000,1000000,280,400,690,0,0,1,1,1,0,0,0,100781,
|
||||
sodama,10000,1000000,200,400,650,0,0,1,1,1,0,0,0,100782,
|
||||
stardu,10000,1000000,190,330,640,0,0,1,1,1,0,0,0,100783,
|
||||
starti,10000,1000000,170,310,540,700,0,1,1,1,1,0,0,100784,
|
||||
sunday,10000,1000000,180,290,460,670,0,1,1,1,1,0,0,100785,
|
||||
sundro2,10000,1000000,300,480,790,820,0,1,1,1,1,0,0,100786,
|
||||
sunnyd,10000,1000000,230,380,590,0,0,1,1,1,0,0,0,100787,
|
||||
superl,10000,1000000,150,320,590,0,0,1,1,1,0,0,0,100788,
|
||||
switch,10000,1000000,160,350,690,0,0,1,1,1,0,0,0,100789,
|
||||
theepi2,10000,1000000,220,370,650,0,0,1,1,1,0,0,0,100790,
|
||||
epipha,10000,1000000,150,300,700,0,0,1,1,1,0,0,0,100791,
|
||||
thekin,10000,1000000,220,520,750,0,0,1,1,1,0,0,0,100792,
|
||||
timele,10000,1000000,160,330,720,0,0,1,1,1,0,0,0,100793,
|
||||
tokyoo,10000,1000000,150,330,710,0,0,1,1,1,0,0,0,100794,
|
||||
toooma,10000,1000000,300,510,770,0,0,1,1,1,0,0,0,100795,
|
||||
toucho2,10000,1000000,170,320,520,780,0,1,1,1,1,0,0,100796,
|
||||
tayuta,10000,1000000,260,350,720,0,0,1,1,1,0,0,0,100797,
|
||||
ultrix,10000,1000000,270,450,760,0,0,1,1,1,0,0,0,100798,
|
||||
underw,10000,1000000,290,460,690,860,0,1,1,1,1,0,0,100799,
|
||||
virtua,10000,1000000,150,350,630,0,0,1,1,1,0,0,0,100800,
|
||||
voiceo2,10000,1000000,140,380,670,0,0,1,1,1,0,0,0,100801,
|
||||
wannab2,10000,1000000,260,410,690,0,0,1,1,1,0,0,0,100802,
|
||||
wiwwtw2,10000,1000000,200,430,670,720,0,1,1,1,1,0,0,100803,
|
||||
wingso,10000,1000000,200,530,710,0,0,1,1,1,0,0,0,100804,
|
||||
winter,10000,1000000,140,240,410,0,0,1,1,1,0,0,0,100805,
|
||||
iineee,10000,1000000,210,400,810,0,0,1,1,1,0,0,0,100806,
|
||||
illumi,10000,1000000,100,250,460,630,0,1,1,1,1,0,0,100807,
|
||||
yellll,10000,1000000,80,170,520,0,0,1,1,1,0,0,0,100808,
|
||||
eschat,10000,1000000,360,570,770,0,250,1,1,1,0,-1,0,100809,
|
||||
counte,10000,1000000,290,340,710,0,0,1,1,1,0,0,0,100810,
|
||||
gimcho,10000,1000000,180,390,700,0,0,1,1,1,0,0,0,100811,
|
||||
surviv,10000,1000000,240,400,650,0,0,1,1,1,0,0,0,100812,
|
||||
turkis3,10000,1000000,60,200,480,0,0,1,1,1,0,0,0,100814,
|
||||
picora2,10000,1000000,280,530,800,0,0,1,1,1,0,0,0,100815,
|
||||
fortis,10000,1000000,200,370,530,0,0,1,1,1,0,0,0,100816,
|
||||
hedban,10000,1000000,160,430,660,0,0,1,1,1,0,0,0,100817,
|
||||
megitu,10000,1000000,150,300,490,0,0,1,1,1,0,0,0,100818,
|
||||
rockma,10000,1000000,270,480,730,0,0,1,1,1,0,0,0,100819,
|
||||
kounen2,10000,1000000,210,430,730,0,0,1,1,1,0,0,0,100820,
|
||||
saisyu,10000,1000000,180,360,560,0,0,1,1,1,0,0,0,100821,
|
||||
yuukan,10000,1000000,220,330,780,0,0,1,1,1,0,0,0,100822,
|
||||
modern,10000,1000000,200,320,560,0,0,1,1,1,0,0,0,100823,
|
||||
miraie,10000,1000000,210,350,660,0,0,1,1,1,0,0,0,100824,
|
||||
ranfes,10000,1000000,200,420,650,0,0,1,1,1,0,0,0,100825,
|
||||
nemure,10000,1000000,150,380,670,760,0,1,1,1,1,0,0,100826,
|
||||
yuwaku,10000,1000000,150,260,430,0,0,1,1,1,0,0,0,100827,
|
||||
dontst,10000,1000000,150,320,560,700,0,1,1,1,1,0,0,100828,
|
||||
mottai,10000,1000000,100,260,360,0,0,1,1,1,0,0,0,100829,
|
||||
slysly,10000,1000000,100,330,580,0,0,1,1,1,0,0,0,100830,
|
||||
lookam,10000,1000000,170,340,670,0,0,1,1,1,0,0,0,100831,
|
||||
feverr,10000,1000000,280,480,680,0,0,1,1,1,0,0,0,100832,
|
||||
fashio,10000,1000000,80,240,390,0,0,1,1,1,0,0,0,100833,
|
||||
hagito,10000,1000000,120,260,500,0,0,1,1,1,0,0,0,100834,
|
||||
invade,10000,1000000,100,280,470,0,0,1,1,1,0,0,0,100835,
|
||||
ainoch,10000,1000000,170,400,590,0,0,1,1,1,0,0,0,100836,
|
||||
nakama,10000,1000000,140,320,530,0,0,1,1,1,0,0,0,100837,
|
||||
ninjar,10000,1000000,80,230,410,650,0,1,1,1,1,0,0,100838,
|
||||
parall,10000,1000000,140,350,610,0,0,1,1,1,0,0,0,100839,
|
||||
yukifu,10000,1000000,130,290,510,0,0,1,1,1,0,0,0,100840,
|
||||
furiso,10000,1000000,120,240,440,740,0,1,1,1,1,0,0,100841,
|
||||
honeyj,10000,100000,320,630,880,930,240,1,1,1,1,1,6,100842,
|
||||
emeraj,10000,100000,300,530,850,0,190,1,1,1,0,1,1,100843,
|
||||
dazzlo,10000,200000,350,600,800,900,160,1,1,1,1,1,1,100844,
|
||||
|
10
titles/cxb/rev_data/NewsList.csv
Normal file
10
titles/cxb/rev_data/NewsList.csv
Normal file
@@ -0,0 +1,10 @@
|
||||
1,1,1601510400,4096483201,1,0,0,0,1,0,news0001,,,1,1,
|
||||
2,1,1601510400,4096483201,1,0,0,0,1,0,news0002,,,1,1,
|
||||
3,1,1601510400,4096483201,1,0,0,0,1,0,news0003,,,1,1,
|
||||
4,1,1601510400,4096483201,1,0,0,0,1,0,news0004,,,1,1,
|
||||
5,1,1601510400,4096483201,0,0,0,1,1,0,news0005,,,1,1,
|
||||
6,1,1601510400,4096483201,1,0,0,0,1,0,news0006,,,1,1,
|
||||
7,1,1601510400,4096483201,1,0,0,0,1,0,news0007,,,1,1,
|
||||
8,1,1601510400,4096483201,1,0,0,0,1,0,news0008,,,1,1,
|
||||
9,1,1601510400,4096483201,1,0,0,0,1,0,news0009,,,1,1,
|
||||
10,1,1601510400,4096483201,1,0,0,0,1,0,news0010,,,1,1,
|
||||
|
4
titles/cxb/rev_data/Shop/ShopList_Icon.csv
Normal file
4
titles/cxb/rev_data/Shop/ShopList_Icon.csv
Normal file
@@ -0,0 +1,4 @@
|
||||
shopID.,整理用No.,Ver.,出現フラグ,出現フラグ参照ID,条件,出現時間,消滅時間,ItemCode,価格,表示タイプ,Text,Type,Value(op),Value,対象曲,Difficulty(op),Difficulty,Level(op),Level,Grade(Op),Grade,GaugeType(op),GaugeType,HS(op)i,HS,APP,DAP,F-V,F-H,FullCombo,Combo(op),Combo,ClearRate(op),ClearRate,プレイ日,地域,
|
||||
1000,1,1.00.00,1,-1,-,1411697520.0288,1443233520.0288,ic0000,10,1,MASTER以上の2曲S+以上フルコンボクリアする。,1,1,1,-,1,2,-1,-1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
1001,2,1.00.00,1,-1,-,1411697520.0288,1443233520.0288,ic0001,10,1,Next Frontier (Master)をクリア,0,-1,-1,megaro,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
1002,3,1.00.00,1,-1,-,1412103600.0288,1443639598.992,ic0002,10,2,Master以上を1曲をS+以上でクリアする。,1,1,1,-,1,2,-1,-1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,1,
|
||||
|
13
titles/cxb/rev_data/Shop/ShopList_Music.csv
Normal file
13
titles/cxb/rev_data/Shop/ShopList_Music.csv
Normal file
@@ -0,0 +1,13 @@
|
||||
shopID.,整理用No.,Ver.,出現フラグ,出現フラグ参照ID,条件,出現時間,消滅時間,MusicCode,価格,表示タイプ,Text,Type,Value(op),Value,対象曲,Difficulty(op),Difficulty,Level(op),Level,Grade(Op),Grade,GaugeType(op),GaugeType,HS(op),HS,APP,DAP,F-V,F-H,FullCombo,Combo(op),Combo,ClearRate(op),ClearRate,プレイ日,地域,
|
||||
0,1,1.00.00,3,1,-,1411697520.0288,1443233520.0288,megaro,0,0,-,-1,-1,-1,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
1,2,1.00.00,1,-1,-,1411697520.0288,1443233520.0288,nature,10,2,???,-1,-1,-1,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
2,3,1.00.00,2,-1,-,1412103600.0288,1443639598.992,hopesb,30,1,「Landing on the moon」をSTANDARD以上でクリアする。,0,-1,-1,landin,1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
3,4,1.00.00,1,-1,-,1412103600.0288,1443639598.992,flower,10,0,-,-1,-1,-1,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
4,5,1.00.02,1,-1,1&2&3,1412103600.0288,1443639598.992,reseed3,10,0,「Human Nature」「Hopes Bright」「Flowerwall」をクリアする。,-1,-1,-1,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
5,6,1.00.00,1,-1,-,1411697520.0288,1443233520.0288,dennou,20,1,-,0,-1,-1,flower,1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,,,
|
||||
6,7,1.00.00,2,-1,5&7,1411697520.0288,1443233520.0288,romanc,10,1,-,-1,-1,-1,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
7,8,1.00.00,1,-1,-,1411697520.0288,1443233520.0288,landin,40,1,-,-1,-1,-1,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
8,9,1.00.00,1,-1,7,1411697520.0288,1443233520.0288,ididid,50,0,-,-1,-1,-1,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,,,
|
||||
9,10,1.00.00,1,-1,-,1411697520.0288,1443233520.0288,crissc,60,0,MASTER以上の2曲S+以上フルコンボクリアする。,1,1,2,-,1,2,-1,0,1,1,1,2,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,,,
|
||||
10,11,1.00.00,1,-1,-,1411697520.0288,1443233520.0288,dazzli,70,1,MASTER以上の4曲S+以上クリアする。,1,1,4,-,1,2,-1,0,1,1,1,2,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,,,
|
||||
11,12,1.00.00,1,-1,-,1411697520.0288,1443233520.0288,izimed,987654,1,MASTER以上の7曲S+以上クリアする。,1,1,7,-,1,2,-1,0,1,1,1,2,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,,,
|
||||
|
3
titles/cxb/rev_data/Shop/ShopList_Sale.csv
Normal file
3
titles/cxb/rev_data/Shop/ShopList_Sale.csv
Normal file
@@ -0,0 +1,3 @@
|
||||
saleID.,開始日,終了日,ShopID,Price,
|
||||
0,1411696799.9712,1443236400,0,7000,
|
||||
1,1411783199.9712,1443322800,1,7000,
|
||||
|
4
titles/cxb/rev_data/Shop/ShopList_SkinBg.csv
Normal file
4
titles/cxb/rev_data/Shop/ShopList_SkinBg.csv
Normal file
@@ -0,0 +1,4 @@
|
||||
shopID.,整理用No.,Ver.,出現フラグ,出現フラグ参照ID,条件,出現時間,消滅時間,ItemCode,価格,表示タイプ,Text,Type,Value(op),Value,対象曲,Difficulty(op),Difficulty,Level(op),Level,Grade(Op),Grade,GaugeType(op),GaugeType,HS(op)i,HS,APP,DAP,F-V,F-H,FullCombo,Combo(op),Combo,ClearRate(op),ClearRate,プレイ日,地域,
|
||||
3000,1,1.00.00,1,-1,-,1411697520.0288,1443233520.0288,skb0000,10,1,MASTER以上の2曲S+以上フルコンボクリアする。,1,1,1,-,1,2,-1,-1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
3001,2,1.00.00,1,-1,-,1411697520.0288,1443233520.0288,skb0001,10,1,Next Frontier (Master)をクリア,0,-1,-1,bleeze,1,2,-1,-1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
3002,3,1.00.00,1,-1,-,1412103600.0288,1443639598.992,skb0002,10,2,Master以上を1曲をS+以上でクリアする。,1,1,1,-,1,2,-1,-1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,1,
|
||||
|
11
titles/cxb/rev_data/Shop/ShopList_SkinEffect.csv
Normal file
11
titles/cxb/rev_data/Shop/ShopList_SkinEffect.csv
Normal file
@@ -0,0 +1,11 @@
|
||||
shopID.,整理用No.,Ver.,出現フラグ,出現フラグ参照ID,条件,出現時間,消滅時間,ItemCode,価格,表示タイプ,Text,Type,Value(op),Value,対象曲,Difficulty(op),Difficulty,Level(op),Level,Grade(Op),Grade,GaugeType(op),GaugeType,HS(op)i,HS,APP,DAP,F-V,F-H,FullCombo,Combo(op),Combo,ClearRate(op),ClearRate,プレイ日,地域,
|
||||
5000,1,1.00.00,1,-1,-,1411697520.0288,1443233520.0288,ske0000,10,1,MASTER以上の2曲S+以上フルコンボクリアする。,1,1,1,-,1,2,-1,-1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
5001,2,1.00.00,1,-1,-,1411697520.0288,1443233520.0288,ske0001,10,1,Next Frontier (Master)をクリア,0,-1,-1,megaro,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
5002,3,1.00.00,1,-1,-,1412103600.0288,1443639598.992,ske0002,10,2,Master以上を1曲をS+以上でクリアする。,1,1,1,-,1,2,-1,-1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,1,
|
||||
5003,4,1.00.00,1,-1,-,1412103600.0288,1443639598.992,ske0003,10,0,Master以上を1曲をS+以上でクリアする。,1,1,1,-,1,2,-1,-1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
5004,5,1.00.00,1,-1,-,1412103600.0288,1443639598.992,ske0004,10,2,2曲クリア,1,1,2,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
5005,5,1.00.00,1,-1,-,1412103600.0288,1443639598.992,ske0005,10,2,3曲クリア,1,1,3,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
5006,5,1.00.00,1,-1,-,1412103600.0288,1443639598.992,ske0006,10,2,4曲クリア,1,1,4,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
5007,5,1.00.00,1,-1,-,1412103600.0288,1443639598.992,ske0007,10,2,5曲クリア,1,1,5,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
5008,5,1.00.00,1,-1,-,1412103600.0288,1443639598.992,ske0008,10,2,6曲クリア,1,1,6,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
5009,5,1.00.00,1,-1,-,1412103600.0288,1443639598.992,ske0009,10,2,7曲クリア,1,1,7,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
|
6
titles/cxb/rev_data/Shop/ShopList_SkinNotes.csv
Normal file
6
titles/cxb/rev_data/Shop/ShopList_SkinNotes.csv
Normal file
@@ -0,0 +1,6 @@
|
||||
shopID.,整理用No.,Ver.,出現フラグ,出現フラグ参照ID,条件,出現時間,消滅時間,ItemCode,価格,表示タイプ,Text,Type,Value(op),Value,対象曲,Difficulty(op),Difficulty,Level(op),Level,Grade(Op),Grade,GaugeType(op),GaugeType,HS(op)i,HS,APP,DAP,F-V,F-H,FullCombo,Combo(op),Combo,ClearRate(op),ClearRate,プレイ日,地域,
|
||||
4000,1,1.00.00,1,-1,-,1411697520.0288,1443233520.0288,skt0000,10,1,MASTER以上の2曲S+以上フルコンボクリアする。,1,1,1,-,1,2,-1,-1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
4001,2,1.00.00,1,-1,-,1411697520.0288,1443233520.0288,skt0001,10,1,Next Frontier (Master)をクリア,0,-1,-1,megaro,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
4002,3,1.00.00,1,-1,-,1412103600.0288,1443639598.992,skt0002,10,2,Master以上を1曲をS+以上でクリアする。,1,1,1,-,1,2,-1,-1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,1,
|
||||
4003,4,1.00.00,1,-1,-,1412103600.0288,1443639598.992,skt0003,10,0,Master以上を1曲をS+以上でクリアする。,1,1,1,-,1,2,-1,-1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
4004,5,1.00.00,1,-1,-,1412103600.0288,1443639598.992,skt0004,10,2,aaaaaaaaaaaaaaaaa,1,1,20,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
|
4
titles/cxb/rev_data/Shop/ShopList_Title.csv
Normal file
4
titles/cxb/rev_data/Shop/ShopList_Title.csv
Normal file
@@ -0,0 +1,4 @@
|
||||
shopID.,整理用No.,Ver.,出現フラグ,出現フラグ参照ID,条件,出現時間,消滅時間,ItemCode,価格,表示タイプ,Text,Type,Value(op),Value,対象曲,Difficulty(op),Difficulty,Level(op),Level,Grade(Op),Grade,GaugeType(op),GaugeType,HS(op)i,HS,APP,DAP,F-V,F-H,FullCombo,Combo(op),Combo,ClearRate(op),ClearRate,プレイ日,地域,
|
||||
2000,1,1.00.00,1,-1,-,1411697520.0288,1443233520.0288,,10,1,MASTER以上の2曲S+以上フルコンボクリアする。,1,1,1,-,1,2,-1,-1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
2001,2,1.00.00,1,-1,-,1411697520.0288,1443233520.0288,,10,1,Next Frontier (Master)をクリア,0,-1,-1,megaro,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
2002,3,1.00.00,1,-1,-,1412103600.0288,1443639598.992,,10,2,Master以上を1曲をS+以上でクリアする。,1,1,1,-,1,2,-1,-1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,1,
|
||||
|
116
titles/cxb/rev_data/SkinArchiveList.csv
Normal file
116
titles/cxb/rev_data/SkinArchiveList.csv
Normal file
@@ -0,0 +1,116 @@
|
||||
mu000,01e0caad-eaee-4810-90ae-6f45abe5c266,
|
||||
ig000,dcac41a7-7816-406e-b750-283e06e77a1b,
|
||||
bg000,e3dc498b-79bd-4110-a0a9-7ab6538ec6a6,
|
||||
mu001,c4dc9846-df4b-4c3d-89b7-e19ae9288de1,
|
||||
ig001,13bc8578-e2bf-45ba-ad10-23831e95f8de,
|
||||
bg001,19a69ba1-a408-4f0c-a923-1d42e7d9eb0e,
|
||||
mu999,3e83ee1c-6936-4e21-a10c-5d359749bb83,
|
||||
ig002,73a5a9d6-c862-4cd0-a36f-26fe73da78de,
|
||||
ig003,9e1d3817-ef60-4d8d-9beb-c0749b6b51fd,
|
||||
ig004,90e6f2da-9678-4847-8435-30f238f214ab,
|
||||
ig005,681c7bb1-8f73-4753-8945-f46572716bff,
|
||||
th000,6a422181-03e0-4b97-b443-22ad0004e85a,
|
||||
th001,ad9dfefd-a687-4cca-8e89-6245c94e52c9,
|
||||
th999,fbf16d3c-1718-4b7d-af3d-68f8b8e18867,
|
||||
ig006,578d6c5c-10f6-4c0e-a99b-29bab4938ade,
|
||||
ev999,a02c3fb7-53bc-4380-93da-57988ed3b9d2,
|
||||
mu002,aef73754-f2e7-47c4-bfb3-eb5366aa2b6d,
|
||||
ig007,3ac11d24-3dbe-4800-a2ed-6bbc4e093c6d,
|
||||
bg002,70ae1a4e-1c4d-4f12-a326-c3fac0e87045,
|
||||
th002,9ee6fd76-4b9c-44c2-90be-a50530f0313f,
|
||||
mu003,09c4fd8b-111b-4dbb-92c3-94fcfb14a311,
|
||||
ig008,869bb37b-0abb-4c4f-a56a-03f7ee98ea14,
|
||||
bg003,d4165292-3140-41e4-bde9-a1a530c462ab,
|
||||
th003,6053e709-d3c5-4110-9b07-47876bba00cf,
|
||||
ig009,b8e368c3-085c-467b-9654-90c63cb390f7,
|
||||
ig010,7e3e2b96-0cf9-4920-9264-6f284019dee7,
|
||||
bg999,5ba48136-a854-4299-8790-c1c371945eb0,
|
||||
bg004,25cb7abb-ad50-469a-9d28-440f3ffec9e8,
|
||||
ig011,7b92ac76-9750-4efe-ad92-e43844d8e9e2,
|
||||
mu004,abfa94c5-a303-4c7a-bacd-bbbda7d3877e,
|
||||
ig012,de774207-7a71-42cd-b54e-054b67199f7d,
|
||||
bg005,2aa16e78-893a-4e34-95ef-c7d205a40ea3,
|
||||
th004,6589a0cc-0b2d-46b2-a21c-49ad68deeff5,
|
||||
mu005,f1ce21fc-f512-43e5-af39-001278d6e8ac,
|
||||
ig013,364a9449-bb7b-47ed-b72b-4f7a5583966b,
|
||||
bg006,b2212579-69b0-480e-a4ab-685bf5c2599d,
|
||||
th005,9392bbee-3762-4d19-a382-1bc1e4d38dc5,
|
||||
ig014,45ecd41a-976f-42cb-bbb7-9c70946f7793,
|
||||
ig015,a2f8cb15-e579-41d4-958a-42cfb3db08f2,
|
||||
ig016,fd991b2f-22a2-4b4b-95ec-06ae70fa4cf8,
|
||||
ig020,b0d366c4-644f-403f-aa0b-87ec781c5a47,
|
||||
ig030,c3a59d08-0c9b-4577-9e3c-3b828a5dbae4,
|
||||
mu007,cc4d20dd-0db2-4128-b366-cc466c074edd,
|
||||
mu008,873550c2-8c69-4d32-9af0-b1193a3297ff,
|
||||
mu009,966b2c02-f467-4b12-811c-d5df28378b88,
|
||||
mu010,93b7cf77-5f4e-4060-839c-d07ea1cb9293,
|
||||
mu011,8fa1af29-61d4-4ed3-bf5d-1755cc63f597,
|
||||
mu013,e62242b0-22c5-435c-a904-97fc815113b3,
|
||||
mu014,f5ba080a-be40-4d99-a7b5-65ac370c6625,
|
||||
mu015,492e20bb-5394-4159-938e-0c626a69fbb8,
|
||||
mu016,c3db7891-26f1-4070-bd58-fb193c3d6b98,
|
||||
mu017,c43be79b-90ff-4a3c-90a0-4b01f16175b8,
|
||||
mu018,3cbc6540-95c5-40ba-a17b-b37044695bbd,
|
||||
mu012,d4407594-5928-4606-8831-0becd9a82e79,
|
||||
th007,4db1a0a5-f0a8-4909-83eb-d5a53de174fc,
|
||||
ig017,52c31a94-ef44-4dbd-a26a-4aa43590c998,
|
||||
ig018,2ea1ba61-352c-4ff3-8854-ae34ec6a3cb8,
|
||||
ig019,f79e01a8-f325-409c-8b55-b40fd09f485b,
|
||||
ig021,0abe9547-fc5d-4677-8469-7da6b0dcc46d,
|
||||
ig022,b2eba0ca-08f3-412b-a4ff-df301aef59a5,
|
||||
ig023,2a615618-df3c-4eb5-8f9a-cdceed2f70b2,
|
||||
ig024,bac5cd51-1ae3-483e-bac0-ddd0aa79a544,
|
||||
ig025,39241b3b-c3bb-4852-9bc1-b5ad4950788d,
|
||||
ig026,c5e90844-2e42-4702-95c0-536f1f707b69,
|
||||
ig027,243e96c0-c3bb-4cbf-8714-39e637a1fc4c,
|
||||
ig028,c9663a15-3379-4c26-833e-c0cbe75f1725,
|
||||
ig029,bd4f1868-530f-47ff-8ad9-331f025a30cd,
|
||||
ig031,a50830c8-85cf-4b90-9f76-369c6786aa10,
|
||||
ig032,7547c19d-c0e8-4fa2-bb02-a0818c908f1d,
|
||||
ig033,f8163e70-a91b-4c37-8ff0-c519ac41789d,
|
||||
ig034,32649798-7da7-4bef-94ae-eac2823dbdca,
|
||||
ig035,f61efc53-582e-424b-9c6a-27b714414ac7,
|
||||
ig036,31c83605-88f3-4190-a875-40afca619bc7,
|
||||
ig037,c7c94234-e593-47cc-9440-3ae6e5700d4e,
|
||||
ig038,414fed22-596a-4b82-b322-0592b6284c6c,
|
||||
ig039,6832ca35-7187-4ca9-a677-c5587f3dfc37,
|
||||
ig040,3e1a72fd-de2a-4de1-b9cb-c6b70e8dd865,
|
||||
ig042,6b689c36-f388-48e8-93d3-2c73c71b2279,
|
||||
ig043,f5d69985-5662-40e2-a184-2da3258f77ea,
|
||||
ig044,8b0605fe-06de-4b2a-9c31-a229b8b5da3f,
|
||||
mu019,31ad932c-990e-4967-90b6-188f2c656dbb,
|
||||
bg007,28f01dfc-e73d-4701-a2d1-ac929785ea98,
|
||||
bg008,ba10a865-19f1-4953-a115-3b711768f9bf,
|
||||
bg009,7459ec1c-07dd-43fd-89ad-7cd5a6acf704,
|
||||
bg010,d464e672-3b16-4b18-966e-55822d831023,
|
||||
bg011,8a8558b8-da63-4efe-90ee-42da6aa742c4,
|
||||
bg012,9aac6c96-38d4-4869-a255-bffa2a941bd7,
|
||||
bg013,a7afb95b-d57d-4530-86e9-4930e2eaaff5,
|
||||
bg014,17369ad5-64fb-43c6-a13b-1427187c4711,
|
||||
bg015,594e5fa6-ebdf-495d-84c7-c4680d5e754b,
|
||||
bg016,e1cb508a-2644-4a75-9d9f-1458e3e8cf96,
|
||||
bg017,27a7bfbd-2fef-4254-86d3-60d4e279cfed,
|
||||
bg018,4d8f37e0-eb2e-4286-a4eb-3fd378ad94cc,
|
||||
bg019,dc582ac8-1fa8-438f-a791-d486f17c9029,
|
||||
mu006,f068ffc0-87c5-4caf-b206-dc1ba5516c99,
|
||||
th998,141f4a98-09bf-4a52-b42e-571fadcc53eb,
|
||||
ig045,a8b3d9ff-839d-4016-9ce6-9d9bb63d1d36,
|
||||
ig046,a2e9997b-64a8-4874-b0c5-17093441a2f5,
|
||||
th006,2bd08a14-c84e-47d2-b0d5-e9f0c8937b98,
|
||||
ig047,a210e6d6-82af-4081-aeae-196e6b3528c0,
|
||||
th008,cd740e0a-d10c-47cc-a7b8-bff2d03977cb,
|
||||
th009,a0b39026-4615-4087-b3de-4bced4ec926d,
|
||||
th010,013cfef7-029c-448d-9740-e649b89baa28,
|
||||
th011,caf1bf2d-9e04-4b12-a13b-502fe9abbd99,
|
||||
th012,3689be3f-33bd-4672-b78c-5ea4d46cd15d,
|
||||
th013,c8ea8eac-b71d-446e-827b-e6092892a086,
|
||||
th014,64af0cbc-ba40-4794-8197-496a2109d4ec,
|
||||
th015,b3d4fc6b-4aba-4c80-8bd0-5b4fce6bf57b,
|
||||
th016,513f56cc-a5d9-4bd1-8209-29b2b87fac53,
|
||||
th017,0803f23d-587b-443d-a9c4-0fce063be8fc,
|
||||
th018,7abbeec8-9a22-4f83-9116-14274cf64479,
|
||||
th019,78ef3012-f687-46a1-ad64-a8ae20f33319,
|
||||
ig049,c37a2a37-e42b-4adf-85f4-86509032b42d,
|
||||
ig050,1368f1bd-a407-4273-ae4b-db6bec4d2cf9,
|
||||
ig051,a64f5b47-5e2e-442d-95e3-2be7c7071253,
|
||||
ig052,a419e87c-6187-4a2f-bd22-e86c92153395,
|
||||
|
257
titles/cxb/rss1.py
Normal file
257
titles/cxb/rss1.py
Normal file
@@ -0,0 +1,257 @@
|
||||
import json
|
||||
from decimal import Decimal
|
||||
from base64 import b64encode
|
||||
from typing import Any, Dict
|
||||
from hashlib import md5
|
||||
from datetime import datetime
|
||||
|
||||
from core.config import CoreConfig
|
||||
from core.data import Data, cached
|
||||
from titles.cxb.config import CxbConfig
|
||||
from titles.cxb.base import CxbBase
|
||||
from titles.cxb.const import CxbConstants
|
||||
|
||||
class CxbRevSunriseS1(CxbBase):
|
||||
def __init__(self, cfg: CoreConfig, game_cfg: CxbConfig) -> None:
|
||||
super().__init__(cfg, game_cfg)
|
||||
self.version = CxbConstants.VER_CROSSBEATS_REV_SUNRISE_S1
|
||||
|
||||
def handle_data_path_list_request(self, data: Dict) -> Dict:
|
||||
return { "data": "" }
|
||||
|
||||
@cached(lifetime=86400)
|
||||
def handle_data_music_list_request(self, data: Dict) -> Dict:
|
||||
ret_str = ""
|
||||
with open(r"titles/cxb/rss1_data/MusicArchiveList.csv") as music:
|
||||
lines = music.readlines()
|
||||
for line in lines:
|
||||
line_split = line.split(',')
|
||||
ret_str += f"{line_split[0]},{line_split[1]},{line_split[2]},{line_split[3]},{line_split[4]},{line_split[5]},{line_split[6]},{line_split[7]},{line_split[8]},{line_split[9]},{line_split[10]},{line_split[11]},{line_split[12]},{line_split[13]},{line_split[14]},\r\n"
|
||||
|
||||
return({"data":ret_str})
|
||||
|
||||
@cached(lifetime=86400)
|
||||
def handle_data_item_list_detail_request(self, data: Dict) -> Dict:
|
||||
#ItemListIcon load
|
||||
ret_str = "#ItemListIcon\r\n"
|
||||
with open(r"titles/cxb/rss1_data/Item/ItemList_Icon.csv", encoding="shift-jis") as item:
|
||||
lines = item.readlines()
|
||||
for line in lines:
|
||||
ret_str += f"{line[:-1]}\r\n"
|
||||
|
||||
#ItemListTitle load
|
||||
ret_str += "\r\n#ItemListTitle\r\n"
|
||||
with open(r"titles/cxb/rss1_data/Item/ItemList_Title.csv", encoding="shift-jis") as item:
|
||||
lines = item.readlines()
|
||||
for line in lines:
|
||||
ret_str += f"{line[:-1]}\r\n"
|
||||
|
||||
return({"data":ret_str})
|
||||
|
||||
@cached(lifetime=86400)
|
||||
def handle_data_shop_list_detail_request(self, data: Dict) -> Dict:
|
||||
#ShopListIcon load
|
||||
ret_str = "#ShopListIcon\r\n"
|
||||
with open(r"titles/cxb/rss1_data/Shop/ShopList_Icon.csv", encoding="utf-8") as shop:
|
||||
lines = shop.readlines()
|
||||
for line in lines:
|
||||
ret_str += f"{line[:-1]}\r\n"
|
||||
|
||||
#ShopListMusic load
|
||||
ret_str += "\r\n#ShopListMusic\r\n"
|
||||
with open(r"titles/cxb/rss1_data/Shop/ShopList_Music.csv", encoding="utf-8") as shop:
|
||||
lines = shop.readlines()
|
||||
for line in lines:
|
||||
ret_str += f"{line[:-1]}\r\n"
|
||||
|
||||
#ShopListSale load
|
||||
ret_str += "\r\n#ShopListSale\r\n"
|
||||
with open(r"titles/cxb/rss1_data/Shop/ShopList_Sale.csv", encoding="shift-jis") as shop:
|
||||
lines = shop.readlines()
|
||||
for line in lines:
|
||||
ret_str += f"{line[:-1]}\r\n"
|
||||
|
||||
#ShopListSkinBg load
|
||||
ret_str += "\r\n#ShopListSkinBg\r\n"
|
||||
with open(r"titles/cxb/rss1_data/Shop/ShopList_SkinBg.csv", encoding="shift-jis") as shop:
|
||||
lines = shop.readlines()
|
||||
for line in lines:
|
||||
ret_str += f"{line[:-1]}\r\n"
|
||||
|
||||
#ShopListSkinEffect load
|
||||
ret_str += "\r\n#ShopListSkinEffect\r\n"
|
||||
with open(r"titles/cxb/rss1_data/Shop/ShopList_SkinEffect.csv", encoding="shift-jis") as shop:
|
||||
lines = shop.readlines()
|
||||
for line in lines:
|
||||
ret_str += f"{line[:-1]}\r\n"
|
||||
|
||||
#ShopListSkinNotes load
|
||||
ret_str += "\r\n#ShopListSkinNotes\r\n"
|
||||
with open(r"titles/cxb/rss1_data/Shop/ShopList_SkinNotes.csv", encoding="shift-jis") as shop:
|
||||
lines = shop.readlines()
|
||||
for line in lines:
|
||||
ret_str += f"{line[:-1]}\r\n"
|
||||
|
||||
#ShopListTitle load
|
||||
ret_str += "\r\n#ShopListTitle\r\n"
|
||||
with open(r"titles/cxb/rss1_data/Shop/ShopList_Title.csv", encoding="utf-8") as shop:
|
||||
lines = shop.readlines()
|
||||
for line in lines:
|
||||
ret_str += f"{line[:-1]}\r\n"
|
||||
return({"data":ret_str})
|
||||
|
||||
def handle_data_extra_stage_list_request(self, data: Dict) -> Dict:
|
||||
return({"data":""})
|
||||
|
||||
def handle_data_ex0001_request(self, data: Dict) -> Dict:
|
||||
return({"data":""})
|
||||
|
||||
def handle_data_one_more_extra_list_request(self, data: Dict) -> Dict:
|
||||
return({"data":""})
|
||||
|
||||
def handle_data_bonus_list10100_request(self, data: Dict) -> Dict:
|
||||
return({"data":""})
|
||||
|
||||
def handle_data_oe0001_request(self, data: Dict) -> Dict:
|
||||
return({"data":""})
|
||||
|
||||
def handle_data_free_coupon_request(self, data: Dict) -> Dict:
|
||||
return({"data":""})
|
||||
|
||||
@cached(lifetime=86400)
|
||||
def handle_data_news_list_request(self, data: Dict) -> Dict:
|
||||
ret_str = ""
|
||||
with open(r"titles/cxb/rss1_data/NewsList.csv", encoding="UTF-8") as news:
|
||||
lines = news.readlines()
|
||||
for line in lines:
|
||||
ret_str += f"{line[:-1]}\r\n"
|
||||
return({"data":ret_str})
|
||||
|
||||
def handle_data_tips_request(self, data: Dict) -> Dict:
|
||||
return({"data":""})
|
||||
|
||||
def handle_data_release_info_list_request(self, data: Dict) -> Dict:
|
||||
return({"data":""})
|
||||
|
||||
@cached(lifetime=86400)
|
||||
def handle_data_random_music_list_request(self, data: Dict) -> Dict:
|
||||
ret_str = ""
|
||||
with open(r"titles/cxb/rss1_data/MusicArchiveList.csv") as music:
|
||||
lines = music.readlines()
|
||||
count = 0
|
||||
for line in lines:
|
||||
line_split = line.split(",")
|
||||
ret_str += str(count) + "," + line_split[0] + "," + line_split[0] + ",\r\n"
|
||||
|
||||
return({"data":ret_str})
|
||||
|
||||
@cached(lifetime=86400)
|
||||
def handle_data_license_request(self, data: Dict) -> Dict:
|
||||
ret_str = ""
|
||||
with open(r"titles/cxb/rss1_data/License.csv", encoding="UTF-8") as licenses:
|
||||
lines = licenses.readlines()
|
||||
for line in lines:
|
||||
ret_str += f"{line[:-1]}\r\n"
|
||||
return({"data":ret_str})
|
||||
|
||||
@cached(lifetime=86400)
|
||||
def handle_data_course_list_request(self, data: Dict) -> Dict:
|
||||
ret_str = ""
|
||||
with open(r"titles/cxb/rss1_data/Course/CourseList.csv", encoding="UTF-8") as course:
|
||||
lines = course.readlines()
|
||||
for line in lines:
|
||||
ret_str += f"{line[:-1]}\r\n"
|
||||
return({"data":ret_str})
|
||||
|
||||
@cached(lifetime=86400)
|
||||
def handle_data_csxxxx_request(self, data: Dict) -> Dict:
|
||||
extra_num = int(data["dldate"]["filetype"][-4:])
|
||||
ret_str = ""
|
||||
with open(fr"titles/cxb/rss1_data/Course/Cs{extra_num}.csv", encoding="shift-jis") as course:
|
||||
lines = course.readlines()
|
||||
for line in lines:
|
||||
ret_str += f"{line[:-1]}\r\n"
|
||||
return({"data":ret_str})
|
||||
|
||||
def handle_data_mission_list_request(self, data: Dict) -> Dict:
|
||||
return({"data":""})
|
||||
|
||||
def handle_data_mission_bonus_request(self, data: Dict) -> Dict:
|
||||
return({"data":""})
|
||||
|
||||
def handle_data_unlimited_mission_request(self, data: Dict) -> Dict:
|
||||
return({"data":""})
|
||||
|
||||
def handle_data_partner_list_request(self, data: Dict) -> Dict:
|
||||
ret_str = ""
|
||||
# Lord forgive me for the sins I am about to commit
|
||||
for i in range(0,10):
|
||||
ret_str += f"80000{i},{i},{i},0,10000,,\r\n"
|
||||
ret_str += f"80000{i},{i},{i},1,10500,,\r\n"
|
||||
ret_str += f"80000{i},{i},{i},2,10500,,\r\n"
|
||||
for i in range(10,13):
|
||||
ret_str += f"8000{i},{i},{i},0,10000,,\r\n"
|
||||
ret_str += f"8000{i},{i},{i},1,10500,,\r\n"
|
||||
ret_str += f"8000{i},{i},{i},2,10500,,\r\n"
|
||||
ret_str +="\r\n---\r\n0,150,100,100,100,100,\r\n"
|
||||
for i in range(1,130):
|
||||
ret_str +=f"{i},100,100,100,100,100,\r\n"
|
||||
|
||||
ret_str += "---\r\n"
|
||||
return({"data": ret_str})
|
||||
|
||||
@cached(lifetime=86400)
|
||||
def handle_data_partnerxxxx_request(self, data: Dict) -> Dict:
|
||||
partner_num = int(data["dldate"]["filetype"][-4:])
|
||||
ret_str = f"{partner_num},,{partner_num},1,10000,\r\n"
|
||||
with open(r"titles/cxb/rss1_data/Partner0000.csv") as partner:
|
||||
lines = partner.readlines()
|
||||
for line in lines:
|
||||
ret_str += f"{line[:-1]}\r\n"
|
||||
return({"data": ret_str})
|
||||
|
||||
def handle_data_server_state_request(self, data: Dict) -> Dict:
|
||||
return({"data": True})
|
||||
|
||||
def handle_data_settings_request(self, data: Dict) -> Dict:
|
||||
return({"data": "2,\r\n"})
|
||||
|
||||
def handle_data_story_list_request(self, data: Dict) -> Dict:
|
||||
#story id, story name, game version, start time, end time, course arc, unlock flag, song mcode for menu
|
||||
ret_str = "\r\n"
|
||||
ret_str += f"st0000,RISING PURPLE,10104,1464370990,4096483201,Cs1000,-1,purple,\r\n"
|
||||
ret_str += f"st0001,REBEL YELL,10104,1467999790,4096483201,Cs1000,-1,chaset,\r\n"
|
||||
ret_str += f"st0002,REMNANT,10104,1502127790,4096483201,Cs1000,-1,overcl,\r\n"
|
||||
return({"data": ret_str})
|
||||
|
||||
def handle_data_stxxxx_request(self, data: Dict) -> Dict:
|
||||
story_num = int(data["dldate"]["filetype"][-4:])
|
||||
ret_str = ""
|
||||
for i in range(1,11):
|
||||
ret_str +=f"{i},st000{story_num}_{i-1},,,,,,,,,,,,,,,,1,,-1,1,\r\n"
|
||||
return({"data": ret_str})
|
||||
|
||||
def handle_data_event_stamp_list_request(self, data: Dict) -> Dict:
|
||||
return({"data":"Cs1032,1,1,1,1,1,1,1,1,1,1,\r\n"})
|
||||
|
||||
def handle_data_premium_list_request(self, data: Dict) -> Dict:
|
||||
return({"data": "1,,,,10,,,,,99,,,,,,,,,100,,\r\n"})
|
||||
|
||||
def handle_data_event_list_request(self, data: Dict) -> Dict:
|
||||
return({"data":""})
|
||||
|
||||
def handle_data_event_detail_list_request(self, data: Dict) -> Dict:
|
||||
event_id = data["dldate"]["filetype"].split("/")[2]
|
||||
if "EventStampMapListCs1002" in event_id:
|
||||
return({"data":"1,2,1,1,2,3,9,5,6,7,8,9,10,\r\n"})
|
||||
elif "EventStampList" in event_id:
|
||||
return({"data":"Cs1002,1,1,1,1,1,1,1,1,1,1,\r\n"})
|
||||
else:
|
||||
return({"data":""})
|
||||
|
||||
def handle_data_event_stamp_map_list_csxxxx_request(self, data: Dict) -> Dict:
|
||||
event_id = data["dldate"]["filetype"].split("/")[2]
|
||||
if "EventStampMapListCs1002" in event_id:
|
||||
return({"data":"1,2,1,1,2,3,9,5,6,7,8,9,10,\r\n"})
|
||||
else:
|
||||
return({"data":""})
|
||||
5
titles/cxb/rss1_data/Course/CourseList.csv
Normal file
5
titles/cxb/rss1_data/Course/CourseList.csv
Normal file
@@ -0,0 +1,5 @@
|
||||
Cs0000,0,10001,1422284400,4096483201,0,-1,-1,100,5,クリアすると段位が「見習い」に昇格します。,-1,
|
||||
Cs0001,1,10001,1422284400,4096483201,0,-1,-1,110,5,クリアすると段位が「初段」に昇格します。,-1,
|
||||
Cs0002,2,10001,1422284400,4096483201,0,-1,-1,120,5,クリアすると段位が「二段」に昇格します。,-1,
|
||||
Cs0003,3,10001,1422284400,4096483201,0,-1,-1,130,5,クリアすると段位が「三段」に昇格します。,-1,
|
||||
Cs0004,4,10001,1422284400,4096483201,0,-1,-1,140,5,クリアすると段位が「四段」に昇格します。,-1,
|
||||
|
4
titles/cxb/rss1_data/Course/Cs0000.csv
Normal file
4
titles/cxb/rss1_data/Course/Cs0000.csv
Normal file
@@ -0,0 +1,4 @@
|
||||
1,okonik,4,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
2,okonik,0,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
3,okonik,1,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
4,okonik,3,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
|
4
titles/cxb/rss1_data/Course/Cs0001.csv
Normal file
4
titles/cxb/rss1_data/Course/Cs0001.csv
Normal file
@@ -0,0 +1,4 @@
|
||||
1,okonik,4,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
2,okonik,0,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
3,okonik,1,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
4,okonik,3,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
|
4
titles/cxb/rss1_data/Course/Cs0002.csv
Normal file
4
titles/cxb/rss1_data/Course/Cs0002.csv
Normal file
@@ -0,0 +1,4 @@
|
||||
1,okonik,4,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
2,okonik,0,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
3,okonik,1,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
4,okonik,3,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
|
4
titles/cxb/rss1_data/Course/Cs0003.csv
Normal file
4
titles/cxb/rss1_data/Course/Cs0003.csv
Normal file
@@ -0,0 +1,4 @@
|
||||
1,okonik,4,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
2,okonik,0,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
3,okonik,1,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
4,okonik,3,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
|
4
titles/cxb/rss1_data/Course/Cs0004.csv
Normal file
4
titles/cxb/rss1_data/Course/Cs0004.csv
Normal file
@@ -0,0 +1,4 @@
|
||||
1,okonik,4,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
2,okonik,0,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
3,okonik,1,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
4,okonik,3,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
|
10
titles/cxb/rss1_data/Ex0000.csv
Normal file
10
titles/cxb/rss1_data/Ex0000.csv
Normal file
@@ -0,0 +1,10 @@
|
||||
StageMax,ClearCount,StageNo.,MCODE,Diff(std),Diff(hrd),Diff(mas),Diff(ulm),Diff(esy),Level(op), Level(val), Grade(op),Grade(val),GT(nml),GT(svl),GT(ult),GT(nhp),GT(esy),HS(op),HS(val),APP,DAP,F-V,F-H,FT(ac),FT(tab),FT(pho),Combo(op),Combo(val),FullCombo,ClearRate(op),ClearRate(val)
|
||||
2,1,1,-,2,2,2,1,2,-1,-,1,1,-1,-1,-1,-1,-1,1,-2,-1,-1,-1,-1,-1,-1,-1,1,300,-1,-1,-,
|
||||
2,-,2,-,2,2,2,1,2,-1,-,1,1,-1,-1,-1,-1,-1,1,-2,-1,-1,-1,-1,-1,-1,-1,1,300,-1,-1,-,
|
||||
3,3,1,-,2,2,1,1,2,-1,-,1,2,-1,-1,-1,-1,-1,1,-2,-1,-1,-1,-1,-1,-1,-1,-1,-,-1,-1,-,
|
||||
3,-,2,-,2,2,1,1,2,-1,-,1,2,-1,-1,-1,-1,-1,1,-2,-1,-1,-1,-1,-1,-1,-1,-1,-,-1,-1,-,
|
||||
3,-,3,-,2,2,1,1,2,1,50,1,2,2,2,1,2,2,1,-2,-1,-1,-1,-1,-1,-1,-1,-1,-,-1,-1,-,
|
||||
4,4,1,dynami:fronti:rebell:fronti2:auflcb:auflcb2,2,2,1,1,2,-1,-,1,-1,-1,-1,-1,-1,-1,1,-2,-1,-1,-1,-1,-1,-1,-1,-1,-,-1,-1,-,
|
||||
4,-,2,-,2,2,1,1,2,-1,-,1,-1,-1,-1,-1,-1,-1,1,-2,-1,-1,-1,-1,-1,-1,-1,-1,-,-1,-1,-,
|
||||
4,-,3,-,2,2,1,1,2,-1,-,1,-1,-1,-1,-1,-1,-1,1,-2,-1,-1,-1,-1,-1,-1,-1,-1,-,-1,-1,-,
|
||||
4,-,4,-,2,2,1,1,2,-1,-,1,-1,-1,-1,-1,-1,-1,1,-2,-1,-1,-1,-1,-1,-1,-1,-1,-,-1,-1,-,
|
||||
|
2
titles/cxb/rss1_data/ExtraStageList.csv
Normal file
2
titles/cxb/rss1_data/ExtraStageList.csv
Normal file
@@ -0,0 +1,2 @@
|
||||
No.,Ver.,ESID,Title,StartTime,EndTime,出現曲MCODE,出現RP,出現エフェクト,Diff(std),Diff(hrd),Diff(mas),Diff(ulm),Diff(esy),GT(nml),GT(svl),GT(ult),GT(nhp),GT(esy),HS(op),HS(val),APP,DAP,F-V,F-H,FT(ac),FT(tab),FT(pho)
|
||||
1,1000,Ex0000,MEGALOMAN[i]A出現,1411697520.0288,1443233520.0288,megaro,0,3,2,2,1,2,2,2,2,1,2,2,1,-2,-1,-1,-1,-1,-1,-1,-1,
|
||||
|
3
titles/cxb/rss1_data/Item/ItemList_Icon.csv
Normal file
3
titles/cxb/rss1_data/Item/ItemList_Icon.csv
Normal file
@@ -0,0 +1,3 @@
|
||||
1000,ic0000,IconName0000,,
|
||||
1001,ic0001,IconName0001,,
|
||||
1002,ic0002,IconName0002,,
|
||||
|
3
titles/cxb/rss1_data/Item/ItemList_Title.csv
Normal file
3
titles/cxb/rss1_data/Item/ItemList_Title.csv
Normal file
@@ -0,0 +1,3 @@
|
||||
2000,スーパーゴリラ,4,
|
||||
2001,ふつうのゴリラ,3,
|
||||
2002,モンキー,0,
|
||||
|
89
titles/cxb/rss1_data/License.csv
Normal file
89
titles/cxb/rss1_data/License.csv
Normal file
@@ -0,0 +1,89 @@
|
||||
英雄の証 ~ 4Version/カプコンサウンドチーム
|
||||
© CAPCOM CO., LTD. ALL RIGHTS RESERVED.
|
||||
|
||||
灼熱の刃 ~ ディノバルド
|
||||
© CAPCOM CO., LTD. ALL RIGHTS RESERVED.
|
||||
|
||||
古代の息吹き
|
||||
© CAPCOM CO., LTD. ALL RIGHTS RESERVED.
|
||||
|
||||
Theme of Ryu -SFIV Arrange-/Capcom Sound Team / Hideyuki Fukasawa
|
||||
©CAPCOM U.S.A., INC. ALL RIGHTS RESERVED.
|
||||
|
||||
Ultra Street Fighter IV/Hideyuki Fukasawa
|
||||
©CAPCOM U.S.A., INC. ALL RIGHTS RESERVED.
|
||||
|
||||
Theme of Chun-Li -SFIV Arrange-/Capcom Sound Team / Hideyuki Fukasawa
|
||||
©CAPCOM U.S.A., INC. ALL RIGHTS RESERVED.
|
||||
|
||||
Street Fighter V/Masahiro Aoki
|
||||
©CAPCOM U.S.A., INC. ALL RIGHTS RESERVED.
|
||||
|
||||
英雄の証/MHF-G 2015 Version
|
||||
© CAPCOM CO., LTD. ALL RIGHTS RESERVED.
|
||||
|
||||
異ヲ辿リシモノ -対峙-/若林タカツグ
|
||||
© CAPCOM CO., LTD. ALL RIGHTS RESERVED.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
QLWA(グルーヴコースター 3 リンクフィーバーより)/t+pazolite
|
||||
© TAITO CORPORATION 1978,2016 ALL RIGHTS RESERVED.
|
||||
|
||||
グルーヴ・ザ・ハート(グルーヴコースター 3 リンクフィーバーより)/ビートまりお+あまね
|
||||
© TAITO CORPORATION 1978,2016 ALL RIGHTS RESERVED.
|
||||
|
||||
Got hive of Ra(グルーヴコースター 3 リンクフィーバーより)/E.G.G.
|
||||
© TAITO CORPORATION 1978,2016 ALL RIGHTS RESERVED.
|
||||
|
||||
LINK LINK FEVER!!!(グルーヴコースター 3 リンクフィーバーより)/リンカ (CV:豊田萌絵)
|
||||
© TAITO CORPORATION 1978,2016 ALL RIGHTS RESERVED.
|
||||
|
||||
SAKURA EXHAUST/RIO HAMAMOTO(BNSI)「太鼓の達人」より
|
||||
©BANDAI NAMCO Entertainment Inc.
|
||||
|
||||
カリソメ(グルーヴコースター 3 リンクフィーバーより)/コンプ(豚乙女) × ichigo(岸田教団 & THE明星ロケッツ)
|
||||
©上海アリス幻樂団
|
||||
© TAITO CORPORATION 1978,2016 ALL RIGHTS RESERVED.
|
||||
|
||||
そして誰もいなくなった(グルーヴコースター 3 リンクフィーバーより)/コバヤシユウヤ(IOSYS) × あにー(TaNaBaTa)
|
||||
©上海アリス幻樂団
|
||||
© TAITO CORPORATION 1978,2016 ALL RIGHTS RESERVED.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Font Design by Fontworks Inc.
|
||||
DynaFont is a registered Trademark of DynaComware Taiwan Inc.
|
||||
Ogg Vorbis is Copyright ©2015, Xiph. Org Foundation
|
||||
The font used on this product is provided by Hakusyu Fonts co,.Ltd.
|
||||
キャスティング・ライツクリアランス
|
||||
株式会社ビーイング
|
||||
JASRAC許諾第V-1512134号
|
||||
e-License許諾番号GS35000
|
||||
VOCALOID and VOCALO are trademarks of Yamaha Corporation.
|
||||
|
||||
OMNiMIX v1.2
|
||||
|
4
titles/cxb/rss1_data/MissionList.csv
Normal file
4
titles/cxb/rss1_data/MissionList.csv
Normal file
@@ -0,0 +1,4 @@
|
||||
MissionID,Text,Type,Value_op,Value,Mcode,Difficulty_op,Difficulty,Level_op,Level,Grade_op,Grade,GaugeType_op,GaugeType,HiSpeed_op,HiSpeed,APP,DAP,FlipV,FlipH,Fullcombo,Combo_op,Combo,ClearRate_op,ClearRate,StartTime,StartEnd,District,CoupleId
|
||||
0,-,-1,-1,-1,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
|
||||
1,-,-1,-1,-1,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
|
||||
2,ExtraStageでMEGALOMAN[i]Aをクリアする,0,-1,-1,megaro,-1,-1,-1,-1,1,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
|
||||
|
472
titles/cxb/rss1_data/MusicArchiveList.csv
Normal file
472
titles/cxb/rss1_data/MusicArchiveList.csv
Normal file
@@ -0,0 +1,472 @@
|
||||
tutori2,10000,100000,10,10,10,10,10,0,0,0,0,0,0,100000,
|
||||
tutori3,10000,100000,10,10,10,10,10,0,0,0,0,0,0,100000,
|
||||
tutori4,10000,100000,10,10,10,10,10,0,0,0,0,0,0,100000,
|
||||
tutori6,10000,100000,10,10,10,10,10,0,0,0,0,0,0,100000,
|
||||
tutori8,10000,1000000,30,150,350,0,0,1,1,1,0,0,0,100345,
|
||||
sateli,10000,100000,280,490,770,820,170,1,1,1,1,1,0,100300,
|
||||
nature,10000,100000,140,240,530,750,50,1,1,1,1,1,3,100301,
|
||||
purple,10000,100000,220,540,640,730,140,1,1,1,1,1,0,100307,
|
||||
hearts,10000,100000,180,380,680,770,80,1,1,1,1,1,0,100308,
|
||||
phasea,10000,100000,160,380,650,750,90,1,1,1,1,1,0,100310,
|
||||
planet,10000,100000,170,360,490,710,100,1,1,1,1,1,1,100311,
|
||||
firefo,10000,100000,130,360,570,830,70,1,1,1,1,1,0,100314,
|
||||
kounen,10000,100000,210,400,660,780,100,1,1,1,1,1,3,100315,
|
||||
essenc,10000,100000,250,500,700,760,110,1,1,1,1,1,0,100316,
|
||||
summer,10000,100000,230,570,790,890,130,1,1,1,1,1,0,100317,
|
||||
tanosi,10000,100000,250,450,700,800,160,1,1,1,1,1,7,100319,
|
||||
picora,10000,100000,150,380,660,750,80,1,1,1,1,1,1,100320,
|
||||
devils,10000,100000,270,400,800,0,150,1,1,1,0,1,0,100323,
|
||||
techno,10000,100000,160,380,510,740,90,1,1,1,1,1,1,100328,
|
||||
glowww,10000,100000,170,280,420,600,80,1,1,1,1,1,7,100335,
|
||||
powerr,10000,100000,190,380,690,790,120,1,1,1,1,1,0,100336,
|
||||
amater,10000,100000,210,480,650,790,130,1,1,1,1,1,0,100340,
|
||||
advers,10000,100000,150,480,710,830,90,1,1,1,1,1,1,100349,
|
||||
venera,10000,100000,150,430,680,750,80,1,1,1,1,1,0,100353,
|
||||
dazaii,10000,100000,210,430,730,770,120,1,1,1,1,1,3,100357,
|
||||
thesig,10000,100000,210,380,560,730,100,1,1,1,1,1,3,100365,
|
||||
hosita,10000,100000,160,360,480,650,100,1,1,1,1,1,9999,100344,
|
||||
bluede,10000,100000,220,410,580,700,120,1,1,1,1,1,5,100372,
|
||||
emerao,10000,100000,300,530,850,0,190,1,1,1,0,1,1,100373,
|
||||
megaro,10000,100000,550,800,930,980,0,1,1,1,1,0,0,100129,
|
||||
angeli,10000,100000,330,560,820,900,220,1,1,1,1,1,0,100330,
|
||||
moonli,10000,100000,140,430,610,730,80,1,1,1,1,1,9999,100342,
|
||||
yumemi,10000,100000,120,350,590,690,60,1,1,1,1,1,9999,100369,
|
||||
pinkym,10000,100000,240,440,740,810,160,1,1,1,1,1,0,100348,
|
||||
dynami2,10000,100000,180,510,780,800,80,1,1,1,1,1,0,100370,
|
||||
reseed3,10000,100000,200,550,760,800,100,1,1,1,1,1,0,100306,
|
||||
toucho,10000,200000,90,280,440,650,50,1,1,1,1,1,1,100002,
|
||||
ameoto,10000,200000,120,260,470,630,60,1,1,1,1,1,1,100003,
|
||||
kimito,10000,200000,100,260,490,660,70,1,1,1,1,1,1,100004,
|
||||
giantk,10000,200000,250,530,710,780,110,1,1,1,1,1,3,100021,
|
||||
breakd,10000,200000,230,340,570,740,110,1,1,1,1,1,2,100015,
|
||||
dazzlj,10000,200000,350,600,800,900,160,1,1,1,1,1,1,100028,
|
||||
ididid,10000,200000,290,460,720,810,160,1,1,1,1,1,1,100093,
|
||||
sundro,10000,200000,240,470,750,830,140,1,1,1,1,1,3,100042,
|
||||
auflcb,10000,200000,130,430,810,0,80,1,1,1,0,1,0,100063,
|
||||
dennou,10000,200000,290,600,760,870,150,1,1,1,1,1,1,100045,
|
||||
hokoro,10000,200000,290,570,710,810,140,1,1,1,1,1,1,100068,
|
||||
landin,10000,200000,260,330,490,670,130,1,1,1,1,1,1,100005,
|
||||
tomorr,10000,100000,150,240,440,620,80,1,1,1,1,1,7,100362,
|
||||
daybyd,10000,100000,130,260,380,590,60,1,1,1,1,1,7,100363,
|
||||
syoujo,10000,100000,190,350,530,780,80,1,1,1,1,1,1,100309,
|
||||
destru,10000,100000,190,410,620,720,100,1,1,1,1,1,0,100352,
|
||||
gingat,10000,200000,130,290,460,610,50,1,1,1,1,1,0,100041,
|
||||
daisak,10000,200000,280,360,600,750,120,1,1,1,1,1,0,100066,
|
||||
paradi,10000,100000,160,280,530,640,100,1,1,1,1,1,3,100376,
|
||||
pigooo,10000,100000,190,340,590,840,130,1,1,1,1,1,6,100377,
|
||||
season,10000,300000,150,280,440,650,80,1,1,1,1,1,1,100386,
|
||||
canonn,10000,300000,170,280,500,830,70,1,1,1,1,1,1,100387,
|
||||
rhapso,10000,300000,180,340,620,740,60,1,1,1,1,1,1,100388,
|
||||
turkis,10000,300000,190,390,640,840,110,1,1,1,1,1,1,100389,
|
||||
biohaz,10000,300000,150,300,510,640,60,1,1,1,1,1,9999,100390,
|
||||
monhan,10000,300000,100,260,360,540,50,1,1,1,1,1,9999,100391,
|
||||
gyakut2,10000,300000,130,350,430,560,50,1,1,1,1,1,9999,100392,
|
||||
street,10000,300000,130,340,470,660,70,1,1,1,1,1,9999,100393,
|
||||
rockma2,10000,300000,210,340,490,760,140,1,1,1,1,1,9999,100394,
|
||||
auflcb3,10000,100000,160,360,660,860,60,1,1,1,1,1,9999,100374,
|
||||
irohaa,10000,100000,190,410,550,760,120,1,1,1,1,1,0,100325,
|
||||
ibelie,10000,100000,270,470,780,820,140,1,1,1,1,1,0,100326,
|
||||
monhan2,10000,300000,120,240,430,680,60,1,1,1,1,1,9999,100409,
|
||||
monhan3,10000,300000,180,280,450,730,80,1,1,1,1,1,9999,100410,
|
||||
yejiii,10000,100000,220,360,630,790,100,1,1,1,1,1,0,100418,
|
||||
histor,10000,100000,200,360,560,820,110,1,1,1,1,1,0,100419,
|
||||
chaset,10000,100000,150,310,580,760,80,1,1,1,1,1,9999,100338,
|
||||
metall,10000,100000,160,280,570,770,80,1,1,1,1,1,1,100412,
|
||||
letmeg,10000,100000,180,320,500,720,120,1,1,1,1,1,1,100327,
|
||||
hontno,10000,200000,120,260,530,660,90,1,1,1,1,1,1,100010,
|
||||
azitat,10000,200000,240,550,700,830,140,1,1,1,1,1,0,100024,
|
||||
hellom,10000,100000,180,370,580,720,70,1,1,1,1,1,1,100360,
|
||||
laught,10000,100000,200,350,510,710,70,1,1,1,1,1,1,100337,
|
||||
bluede2,10000,100000,160,360,560,810,90,1,1,1,1,1,1,100426,
|
||||
street2,10000,300000,210,370,550,730,140,1,1,1,1,1,9999,100423,
|
||||
street3,10000,300000,240,380,570,740,130,1,1,1,1,1,9999,100424,
|
||||
street4,10000,300000,170,320,510,780,110,1,1,1,1,1,9999,100425,
|
||||
silbur,10000,100000,200,350,540,750,90,1,1,1,1,1,1,100421,
|
||||
spicaa,10000,100000,230,360,560,780,100,1,1,1,1,1,1,100422,
|
||||
tricko,10000,100000,230,340,560,750,110,1,1,1,1,1,0,100438,
|
||||
thisis,10000,100000,230,370,600,740,120,1,1,1,1,1,4,100435,
|
||||
rising,10000,100000,230,380,660,850,140,1,1,1,1,1,4,100436,
|
||||
orbita,10000,100000,200,380,620,740,120,1,1,1,1,1,5,100411,
|
||||
dddddd,10000,100000,130,330,530,690,90,1,1,1,1,1,5,100433,
|
||||
pyroma,10000,100000,220,420,700,840,80,1,1,1,1,1,4,100427,
|
||||
touchn,10000,100000,270,460,680,860,150,1,1,1,1,1,8,100312,
|
||||
onlyll,10000,100000,210,320,560,690,130,1,1,1,1,1,9999,100359,
|
||||
upside,10000,100000,180,270,480,670,80,1,1,1,1,1,1,100313,
|
||||
istanb,10000,100000,410,490,900,980,230,1,1,1,1,1,3,100322,
|
||||
memori,10000,100000,260,380,650,840,130,1,1,1,1,1,9999,100371,
|
||||
straye,10000,100000,250,360,610,730,140,1,1,1,1,1,4,100350,
|
||||
rearhy,10000,100000,170,320,520,690,70,1,1,1,1,1,9999,100358,
|
||||
hereco,10000,100000,160,340,510,680,110,1,1,1,1,1,4,100432,
|
||||
thesun,10000,100000,250,400,720,870,130,1,1,1,1,1,4,100441,
|
||||
sayona,10000,100000,200,340,530,710,100,1,1,1,1,1,9999,100343,
|
||||
flameu,10000,100000,180,360,570,650,100,1,1,1,1,1,1,100380,
|
||||
raidon,10000,100000,300,380,580,870,130,1,1,1,1,1,1,100434,
|
||||
riseup,10000,100000,180,410,670,770,70,1,1,1,1,1,4,100437,
|
||||
sunglo,10000,100000,180,390,590,720,100,1,1,1,1,1,7,100431,
|
||||
kinbos,10000,100000,220,380,640,770,120,1,1,1,1,1,3,100439,
|
||||
densho,10000,100000,280,420,740,900,170,1,1,1,1,1,5,100430,
|
||||
aiohoo,10000,300000,180,290,420,660,100,1,1,1,1,1,1,100471,
|
||||
entert,10000,300000,150,330,540,870,90,1,1,1,1,1,6,100472,
|
||||
takeit,10000,100000,200,380,650,830,120,1,1,1,1,1,4,100457,
|
||||
harmon,10000,100000,200,360,490,650,120,1,1,1,1,1,7,100449,
|
||||
avemar,10000,300000,160,310,530,750,80,1,1,1,1,1,5,100428,
|
||||
mateki,10000,300000,180,350,540,790,100,1,1,1,1,1,5,100429,
|
||||
lovech,10000,100000,160,300,460,680,80,1,1,1,1,1,7,100445,
|
||||
akaihe,10000,300000,210,320,500,690,80,1,1,1,1,1,1,100473,
|
||||
juicys,10000,300000,180,260,450,830,100,1,1,1,1,1,7,100474,
|
||||
codena,10000,100000,180,350,480,680,90,1,1,1,1,1,1,100468,
|
||||
groove,10000,300000,220,400,520,730,100,1,1,1,1,1,103,100475,
|
||||
kansho,10000,100000,130,270,550,740,70,1,1,1,1,1,9999,100450,
|
||||
overcl2,10000,100000,230,420,580,740,120,1,1,1,1,1,3,100486,
|
||||
taikoo,10000,300000,130,390,500,750,60,1,1,1,1,1,104,100483,
|
||||
groove2,10000,300000,150,400,580,850,90,1,1,1,1,1,9999,100480,
|
||||
overcl,10000,100000,120,350,570,860,80,1,1,1,1,1,4,100487,
|
||||
notoss,10000,100000,120,420,650,910,80,1,1,1,1,1,4,100466,
|
||||
machup,10000,100000,170,320,410,710,90,1,1,1,1,1,6,100447,
|
||||
groove3,10000,300000,180,340,640,850,100,1,1,1,1,1,105,100488,
|
||||
groove4,10000,300000,220,350,500,750,120,1,1,1,1,1,106,100489,
|
||||
everyt,10000,100000,220,300,740,0,130,1,1,1,0,1,5,100482,
|
||||
lespri,10000,100000,250,570,800,0,130,1,1,1,0,1,5,100465,
|
||||
groove5,10000,300000,240,370,670,0,140,1,1,1,0,1,0,100491,
|
||||
honeyo,10000,100000,320,630,880,930,240,1,1,1,1,1,6,100490,
|
||||
groove6,10000,300000,300,640,790,0,220,1,1,1,0,1,3,100494,
|
||||
sunglo2,10000,100000,210,360,670,810,110,1,1,1,1,1,6,100495,
|
||||
fourte,10000,100000,240,500,740,800,140,1,1,1,1,1,5,100498,
|
||||
monhan4,10000,300000,120,400,510,620,50,1,1,1,1,1,9999,100496,
|
||||
monhan5,10000,300000,120,350,420,650,100,1,1,1,1,1,9999,100497,
|
||||
darkpa,10000,100000,260,390,700,840,160,1,1,1,1,1,3,100504,
|
||||
hervor,10000,100000,280,390,730,810,180,1,1,1,1,1,5,100505,
|
||||
cirnon,10000,300000,240,400,600,790,170,1,1,1,1,1,9999,100499,
|
||||
marisa,10000,300000,250,410,620,850,180,1,1,1,1,1,9999,100500,
|
||||
yakini,10000,300000,250,340,580,820,130,1,1,1,1,1,9999,100501,
|
||||
justic,10000,300000,190,360,570,830,140,1,1,1,1,1,1,100502,
|
||||
sintyo,10000,300000,250,460,700,830,160,1,1,1,1,1,6,100503,
|
||||
ascand,10000,100000,320,540,800,900,180,1,1,1,1,1,0,100347,
|
||||
blackl,10000,100000,190,410,730,840,120,1,1,1,1,1,3,100506,
|
||||
childr,10000,200000,240,390,560,620,140,1,1,1,1,1,0,100043,
|
||||
tsukai,10000,200000,190,440,720,760,130,1,1,1,1,1,1,100044,
|
||||
rideon,10000,200000,290,410,600,800,160,1,1,1,1,1,1,100067,
|
||||
minest,10000,100000,210,390,620,760,130,1,1,1,1,1,1,100507,
|
||||
ordine,10000,100000,250,430,730,820,190,1,1,1,1,1,3,100508,
|
||||
dreamw,10000,100000,260,370,620,750,160,1,1,1,1,1,0,100509,
|
||||
minerv,10000,100000,320,610,900,0,250,1,1,1,0,1,4,100510,
|
||||
wannab,10000,200000,90,230,400,650,50,1,1,1,1,1,3,100001,
|
||||
sekain,10000,100000,260,390,690,780,160,1,1,1,1,1,1,100511,
|
||||
farawa,10000,100000,230,360,600,760,180,1,1,1,1,1,7,100512,
|
||||
crissc,10000,200000,370,630,860,910,170,1,1,1,1,1,4,100100,
|
||||
speedy,10000,100000,220,550,770,0,110,1,1,1,0,1,8,100324,
|
||||
xxxrev,10000,100000,210,340,560,730,150,1,1,1,1,1,0,100513,
|
||||
higame,10000,200000,200,300,580,710,130,1,1,1,1,1,3,100016,
|
||||
theepi,10000,200000,190,400,610,750,140,1,1,1,1,1,3,100022,
|
||||
anomie,10000,200000,220,380,610,770,150,1,1,1,1,1,0,100023,
|
||||
crocus,10000,100000,260,370,600,720,150,1,1,1,1,1,7,100524,
|
||||
lavien,10000,100000,270,410,710,800,180,1,1,1,1,1,5,100546,
|
||||
megaro2,10000,100000,0,0,990,1000,0,0,0,1,1,0,4,100361,
|
||||
chipnn,10000,100000,270,340,610,790,160,1,1,1,1,1,6,100541,
|
||||
yiyoyi,10000,200000,140,330,560,700,70,1,1,1,1,1,3,100007,
|
||||
binary,10000,200000,170,350,640,890,140,1,1,1,1,1,1,100014,
|
||||
makaim,10000,200000,300,500,770,0,230,1,1,1,0,1,3,100054,
|
||||
gyakut,10000,200000,150,210,460,640,60,1,1,1,1,1,1,100055,
|
||||
basara,10000,200000,190,370,640,730,140,1,1,1,1,1,0,100056,
|
||||
daybre,10000,300000,160,320,530,720,90,1,1,1,1,1,0,100514,
|
||||
umiyur,10000,300000,140,280,460,640,80,1,1,1,1,1,1,100515,
|
||||
chalur,10000,300000,180,400,600,720,140,1,1,1,1,1,9999,100516,
|
||||
melanc,10000,300000,150,300,500,630,100,1,1,1,1,1,7,100517,
|
||||
konofu,10000,300000,230,350,620,810,110,1,1,1,1,1,1,100518,
|
||||
bladem,10000,100000,280,380,630,750,170,1,1,1,1,1,4,100526,
|
||||
southw,10000,100000,180,270,570,680,120,1,1,1,1,1,7,100536,
|
||||
ryuuse,10000,100000,210,320,590,0,130,1,1,1,0,1,1,100537,
|
||||
redhea,10000,300000,270,390,590,720,100,1,1,1,1,1,0,100519,
|
||||
warnin,10000,300000,250,360,610,740,120,1,1,1,1,1,9999,100520,
|
||||
topsec,10000,300000,240,340,510,640,130,1,1,1,1,1,9999,100521,
|
||||
dddoll,10000,300000,260,380,550,630,140,1,1,1,1,1,9999,100522,
|
||||
tracee,10000,300000,190,310,490,650,90,1,1,1,1,1,0,100548,
|
||||
drivin,10000,200000,230,400,660,760,80,1,1,1,1,1,7,100111,
|
||||
genzit,10000,200000,180,460,730,820,120,1,1,1,1,1,0,100118,
|
||||
aerial,10000,200000,110,280,560,710,50,1,1,1,1,1,1,100039,
|
||||
einher,10000,100000,290,400,740,800,160,1,1,1,1,1,4,100532,
|
||||
ariell,10000,100000,190,320,640,730,150,1,1,1,1,1,7,100540,
|
||||
firstl,10000,100000,250,360,650,770,170,1,1,1,1,1,1,100542,
|
||||
heartl,10000,100000,230,300,640,0,110,1,1,1,0,1,1,100550,
|
||||
erasee,10000,100000,220,350,580,680,120,1,1,1,1,1,0,100551,
|
||||
regene,10000,100000,200,300,560,700,130,1,1,1,1,1,0,100530,
|
||||
allelu,10000,100000,280,350,640,750,160,1,1,1,1,1,9999,100549,
|
||||
lighto,10000,100000,250,330,600,740,120,1,1,1,1,1,1,100543,
|
||||
termin,10000,100000,240,340,630,790,130,1,1,1,1,1,7,100552,
|
||||
ryuuse2,10000,100000,200,360,620,750,130,1,1,1,1,1,1,100556,
|
||||
prizmm,10000,100000,210,300,540,0,120,1,1,1,0,1,1,100547,
|
||||
samalv,10000,200000,190,390,580,770,130,1,1,1,1,1,6,100098,
|
||||
palpit,10000,100000,290,550,840,920,180,1,1,1,1,1,8,100544,
|
||||
gainen,10000,100000,260,370,630,0,150,1,1,1,0,1,9999,100558,
|
||||
moonsh,10000,100000,230,360,620,0,100,1,1,1,0,1,3,100525,
|
||||
moonki,10000,100000,250,390,640,0,130,1,1,1,0,1,1,100559,
|
||||
moonri,10000,200000,210,380,580,850,140,1,1,1,1,1,0,100560,
|
||||
goaway,10000,100000,230,450,590,700,100,1,1,1,1,1,0,100561,
|
||||
itback,10000,100000,230,380,710,0,120,1,1,1,0,1,3,100567,
|
||||
redhhh,10000,100000,240,390,770,0,130,1,1,1,0,1,4,100569,
|
||||
actual,10000,100000,250,380,800,0,140,1,1,1,0,1,0,100568,
|
||||
zonzon,10000,200000,160,330,630,670,50,1,1,1,1,1,1,100367,
|
||||
memorm,10000,100000,260,370,730,0,150,1,1,1,0,1,0,100565,
|
||||
kokoro,10000,100000,200,430,650,690,120,1,1,1,1,1,1,100554,
|
||||
poweri,10000,100000,260,490,750,910,130,1,1,1,1,1,4,100563,
|
||||
nisenn,10000,100000,0,0,760,0,0,0,0,1,0,0,8,100555,
|
||||
yukiya,10000,200000,190,400,610,0,110,1,1,1,0,1,3,100096,
|
||||
zankyo,10000,200000,180,380,570,740,100,1,1,1,1,1,5,100124,
|
||||
overlp,10000,200000,170,300,510,0,90,1,1,1,0,1,7,100119,
|
||||
fracta,10000,100000,310,520,830,0,190,1,1,1,0,1,3,100529,
|
||||
cantst,10000,100000,230,420,650,0,110,1,1,1,0,1,0,100455,
|
||||
primaa,10000,100000,180,350,540,750,120,1,1,1,1,1,0,100527,
|
||||
cyberg,10000,100000,230,350,600,0,120,1,1,1,0,1,0,100448,
|
||||
freakw,10000,200000,220,420,650,660,130,1,1,1,1,1,0,100018,
|
||||
aquali,10000,200000,160,340,580,0,110,1,1,1,0,1,4,100006,
|
||||
takesc,10000,100000,270,370,690,0,100,1,1,1,0,1,1,100572,
|
||||
cthugh,10000,100000,250,480,730,0,140,1,1,1,0,1,0,100531,
|
||||
thetaa,10000,100000,210,340,620,0,110,1,1,1,0,1,1,100571,
|
||||
nekofu,10000,300000,220,340,570,800,100,1,1,1,1,1,6,100493,
|
||||
howtru,10000,200000,120,250,530,740,80,1,1,1,1,1,0,100057,
|
||||
romanc,10000,200000,280,550,780,0,100,1,1,1,0,1,0,100047,
|
||||
kotobu,10000,200000,320,710,900,0,250,1,1,1,0,1,0,100573,
|
||||
xmasss,10000,300000,180,380,560,770,80,1,1,1,1,1,101,100417,
|
||||
galaxy,10000,300000,160,320,430,670,100,1,1,1,1,1,0,100600,
|
||||
rebell,10000,1000000,490,630,910,0,0,1,1,1,0,0,0,100601,
|
||||
anothe,10000,1000000,270,370,730,760,0,1,1,1,1,0,0,100602,
|
||||
addict,10000,1000000,200,340,520,620,0,1,1,1,1,0,0,100603,
|
||||
dirtyy,10000,1000000,150,280,590,740,0,1,1,1,1,0,0,100604,
|
||||
levelf,10000,300000,110,280,450,630,50,1,1,1,1,1,0,100605,
|
||||
omnive,10000,1000000,340,520,830,860,0,1,1,1,1,0,0,100606,
|
||||
kakuse,10000,1000000,170,550,750,0,0,1,1,1,0,0,0,100607,
|
||||
unbeli,10000,300000,130,260,380,620,70,1,1,1,1,1,0,100608,
|
||||
sonzai,10000,1000000,260,400,590,660,0,1,1,1,1,0,0,100609,
|
||||
okonik,10000,1000000,260,450,670,0,0,1,1,1,0,0,0,100610,
|
||||
crssho,10000,1000000,350,600,850,0,100,1,1,1,0,1,0,100611,
|
||||
reanim,10000,1000000,280,440,700,800,0,1,1,1,1,0,0,100612,
|
||||
kamino,10000,1000000,400,620,780,0,150,1,1,1,0,1,0,100613,
|
||||
fiveee,10000,300000,180,370,610,710,100,1,1,1,1,1,0,100614,
|
||||
granda,10000,1000000,210,380,790,0,0,1,1,1,0,0,0,100615,
|
||||
fronti2,10000,1000000,460,690,890,0,90,1,1,1,0,1,0,100616,
|
||||
saigon,10000,1000000,190,310,570,0,0,1,1,1,0,0,0,100617,
|
||||
replay,10000,300000,180,440,630,700,80,1,1,1,1,1,0,100618,
|
||||
mousou,10000,1000000,160,260,540,0,0,1,1,1,0,0,0,100619,
|
||||
aheadd,10000,300000,130,250,350,580,70,1,1,1,1,1,0,100620,
|
||||
musicr1,10000,100000,220,330,580,740,120,1,1,1,1,1,0,100621,
|
||||
getthe,10000,300000,170,370,490,660,60,1,1,1,1,1,0,100622,
|
||||
design,10000,1000000,150,390,680,690,0,1,1,1,1,0,0,100623,
|
||||
garnet,10000,1000000,260,460,700,940,0,1,1,1,1,0,0,100624,
|
||||
hopesb,10000,300000,100,250,440,610,70,1,1,1,1,1,0,100625,
|
||||
shooti,10000,300000,150,370,490,690,70,1,1,1,1,1,0,100626,
|
||||
dangan,10000,1000000,280,580,810,0,0,1,1,1,0,0,0,100627,
|
||||
impact,10000,1000000,240,600,720,900,200,1,1,1,1,1,0,100628,
|
||||
lightm,10000,300000,260,330,540,710,110,1,1,1,1,1,0,100629,
|
||||
miiroo,10000,300000,220,390,580,680,110,1,1,1,1,1,0,100630,
|
||||
voiceo,10000,1000000,180,340,580,590,0,1,1,1,1,0,0,100631,
|
||||
cosmol,10000,1000000,360,640,870,0,250,1,1,1,0,1,0,100632,
|
||||
vividd,10000,300000,160,350,550,650,90,1,1,1,1,1,0,100633,
|
||||
splash,10000,1000000,260,500,710,0,0,1,1,1,0,0,0,100634,
|
||||
donuth,10000,300000,220,400,540,800,110,1,1,1,1,1,0,100635,
|
||||
senbon,10000,300000,200,280,540,740,120,1,1,1,1,1,0,100636,
|
||||
kmtyju,10000,300000,240,310,570,740,120,1,1,1,1,1,0,100637,
|
||||
fronti,10000,1000000,480,650,820,0,130,1,1,1,0,1,0,100638,
|
||||
nueraa,10000,1000000,220,430,750,530,0,1,1,1,1,0,0,100639,
|
||||
childe,10000,300000,90,240,340,560,40,1,1,1,1,1,0,100640,
|
||||
dazzli2,10000,1000000,350,600,820,0,190,1,1,1,0,1,0,100641,
|
||||
perfec,10000,1000000,390,640,780,0,0,1,1,1,0,0,0,100642,
|
||||
flower,10000,300000,70,200,400,650,60,1,1,1,1,1,0,100643,
|
||||
frgmnt,10000,1000000,330,630,740,650,100,1,1,1,1,1,0,100644,
|
||||
headph,10000,1000000,240,320,520,0,0,1,1,1,0,0,0,100645,
|
||||
crsang,10000,1000000,270,530,670,0,130,1,1,1,0,1,0,100646,
|
||||
musicr4,10000,100000,190,320,580,0,120,1,1,1,0,1,0,100647,
|
||||
imaxim,10000,1000000,440,690,900,870,0,1,1,1,1,0,0,100648,
|
||||
azitat2,10000,1000000,230,520,660,0,80,1,1,1,0,1,0,100649,
|
||||
dynami,10000,1000000,260,540,680,0,110,1,1,1,0,1,0,100650,
|
||||
incave,10000,1000000,220,440,760,780,0,1,1,1,1,0,0,100651,
|
||||
aktuki,10000,1000000,260,580,840,0,100,1,1,1,0,1,0,100652,
|
||||
kindof,10000,1000000,140,290,480,0,0,1,1,1,0,0,0,100653,
|
||||
mikaku,10000,1000000,190,310,540,0,0,1,1,1,0,0,0,100654,
|
||||
strang,10000,1000000,120,280,550,0,0,1,1,1,0,0,0,100655,
|
||||
hesper,10000,1000000,360,610,920,930,0,1,1,1,1,0,0,100656,
|
||||
breaka,10000,300000,150,310,450,680,70,1,1,1,1,1,0,100657,
|
||||
myname,10000,1000000,60,140,300,570,0,1,1,1,1,0,0,100658,
|
||||
amaiko,10000,1000000,150,370,600,0,0,1,1,1,0,0,0,100659,
|
||||
reseed2,10000,1000000,220,470,630,0,0,1,1,1,0,0,0,100660,
|
||||
kingst,10000,1000000,380,630,740,0,120,1,1,1,0,1,0,100661,
|
||||
ramram,10000,1000000,230,340,670,0,0,1,1,1,0,0,0,100662,
|
||||
murasa,10000,1000000,280,410,760,0,0,1,1,1,0,0,0,100663,
|
||||
happyd,10000,1100000,220,410,730,790,180,1,1,1,1,1,0,100664,
|
||||
izimed,10000,300000,190,390,690,770,90,1,1,1,1,1,0,100665,
|
||||
wastel,10000,1000000,40,120,230,400,0,1,1,1,1,0,0,100666,
|
||||
assign,10000,1000000,260,430,610,620,0,1,1,1,1,0,0,100667,
|
||||
jahaci,10000,1000000,170,290,590,0,0,1,1,1,0,0,0,100668,
|
||||
hisuii,10000,1000000,220,470,700,0,0,1,1,1,0,0,0,100669,
|
||||
godkno,10000,300000,100,260,450,640,60,1,1,1,1,1,0,100670,
|
||||
roadof,10000,300000,150,360,500,750,70,1,1,1,1,1,0,100671,
|
||||
rokuch,10000,300000,210,350,620,810,110,1,1,1,1,1,0,100672,
|
||||
valent,10000,300000,270,330,590,770,100,1,1,1,1,1,0,100673,
|
||||
unfini,10000,300000,160,320,500,710,80,1,1,1,1,1,0,100674,
|
||||
auflcb2,10000,1000000,220,370,750,0,100,1,1,1,0,1,0,100675,
|
||||
burnin,10000,1000000,180,280,600,850,150,1,1,1,1,1,0,100676,
|
||||
sphere,10000,1000000,200,380,730,0,0,1,1,1,0,0,0,100677,
|
||||
dropou,10000,300000,170,310,460,690,140,1,1,1,1,1,0,100678,
|
||||
xencou,10000,300000,200,320,520,600,80,1,1,1,1,1,0,100679,
|
||||
killyk,10000,300000,130,420,630,760,60,1,1,1,1,1,0,100680,
|
||||
missil,10000,1000000,160,380,590,0,0,1,1,1,0,0,0,100681,
|
||||
burstt,10000,300000,120,250,460,630,70,1,1,1,1,1,0,100682,
|
||||
musicr2,10000,100000,220,330,580,0,120,1,1,1,0,1,0,100683,
|
||||
isingl,10000,1000000,250,440,800,0,120,1,1,1,0,1,0,100684,
|
||||
lvless,10000,1000000,230,380,600,0,0,1,1,1,0,0,0,100685,
|
||||
sapphi,10000,1000000,290,440,810,0,0,1,1,1,0,0,0,100686,
|
||||
musicr3,10000,100000,190,320,580,720,120,1,1,1,1,1,0,100687,
|
||||
deeout,10000,1000000,180,340,630,810,0,1,1,1,1,0,0,100688,
|
||||
sugars,10000,300000,170,300,420,660,60,1,1,1,1,1,0,100689,
|
||||
mercur,10000,1000000,140,350,660,0,0,1,1,1,0,0,0,100690,
|
||||
zizizi,10000,1000000,300,570,880,960,0,1,1,1,1,0,0,100691,
|
||||
wegooo,10000,300000,180,340,540,680,100,1,1,1,1,1,0,100692,
|
||||
alonee,10000,300000,110,210,360,480,50,1,1,1,1,1,0,100693,
|
||||
nuheat,10000,1000000,290,440,650,850,0,1,1,1,1,0,0,100694,
|
||||
granro,10000,300000,150,280,430,600,80,1,1,1,1,1,0,100695,
|
||||
sister,10000,300000,100,270,460,630,70,1,1,1,1,1,0,100696,
|
||||
lotusl,10000,1000000,200,360,640,0,0,1,1,1,0,0,0,100697,
|
||||
yukari,10000,1000000,310,500,760,840,0,1,1,1,1,0,0,100698,
|
||||
flawli,10000,300000,170,300,400,590,80,1,1,1,1,1,0,100699,
|
||||
nightf,10000,1000000,150,280,460,710,0,1,1,1,1,0,0,100700,
|
||||
random,10000,100000,0,0,0,0,0,0,0,0,0,0,0,100701,
|
||||
wiwwtw,10000,1000000,260,380,620,0,0,1,1,1,0,0,0,100702,
|
||||
inneru,10000,300000,220,360,480,670,90,1,1,1,1,1,0,100703,
|
||||
taishi,10000,1000000,190,350,580,0,0,1,1,1,0,0,0,100704,
|
||||
daysss,10000,1000000,380,590,810,810,0,1,1,1,1,0,0,100705,
|
||||
bokuwa,10000,300000,230,340,550,690,160,1,1,1,1,1,0,100706,
|
||||
showww,10000,300000,180,350,510,790,150,1,1,1,1,1,0,100707,
|
||||
nevers,10000,300000,260,320,650,750,150,1,1,1,1,1,0,100708,
|
||||
bleeze,10000,300000,160,310,470,620,90,1,1,1,1,1,0,100709,
|
||||
dreami,10000,1000000,140,370,650,0,0,1,1,1,0,0,0,100710,
|
||||
allune,10000,1000000,140,350,710,0,0,1,1,1,0,0,0,100711,
|
||||
always,10000,1000000,130,270,490,0,0,1,1,1,0,0,0,100712,
|
||||
anomie2,10000,1000000,160,430,840,0,0,1,1,1,0,0,0,100713,
|
||||
aquali2,10000,1000000,220,430,600,810,0,1,1,1,1,0,0,100714,
|
||||
astaro,10000,1000000,230,400,740,0,0,1,1,1,0,0,0,100715,
|
||||
bassan,10000,1000000,200,320,660,0,0,1,1,1,0,0,0,100716,
|
||||
zonzon2,10000,1000000,130,270,680,750,0,1,1,1,1,0,0,100717,
|
||||
bouled,10000,1000000,190,300,570,0,0,1,1,1,0,0,0,100718,
|
||||
brandn,10000,1000000,90,390,660,720,0,1,1,1,1,0,0,100719,
|
||||
bravee,10000,1000000,350,600,820,0,250,1,1,1,0,-1,0,100720,
|
||||
breakd2,10000,1000000,340,640,740,0,0,1,1,1,0,0,0,100721,
|
||||
buffet,10000,1000000,380,550,680,0,300,1,1,1,0,-1,0,100722,
|
||||
buzzke,10000,1000000,180,330,580,770,0,1,1,1,1,0,0,100723,
|
||||
cashhh,10000,1000000,190,250,640,0,0,1,1,1,0,0,0,100724,
|
||||
cloudb,10000,1000000,370,660,740,0,250,1,1,1,0,-1,0,100725,
|
||||
clouds,10000,1000000,130,250,470,0,0,1,1,1,0,0,0,100726,
|
||||
codepa,10000,1000000,290,550,700,0,150,1,1,1,0,-1,0,100727,
|
||||
comear,10000,1000000,380,560,830,0,250,1,1,1,0,-1,0,100728,
|
||||
crysta,10000,1000000,370,560,810,0,300,1,1,1,0,-1,0,100729,
|
||||
curseo,10000,1000000,220,360,740,0,0,1,1,1,0,0,0,100730,
|
||||
datami,10000,1000000,180,360,660,0,0,1,1,1,0,0,0,100731,
|
||||
defaul,10000,1000000,210,330,480,0,0,1,1,1,0,0,0,100732,
|
||||
design2,10000,1000000,250,430,680,0,0,1,1,1,0,0,0,100733,
|
||||
diamon,10000,1000000,100,260,330,0,0,1,1,1,0,0,0,100734,
|
||||
dispel,10000,1000000,280,480,800,0,0,1,1,1,0,0,0,100735,
|
||||
distan,10000,1000000,200,300,680,0,0,1,1,1,0,0,0,100736,
|
||||
dokibl,10000,1000000,150,230,670,0,0,1,1,1,0,0,0,100737,
|
||||
dontwa,10000,1000000,130,340,690,0,0,1,1,1,0,0,0,100738,
|
||||
drgirl,10000,1000000,190,350,540,730,0,1,1,1,1,0,0,100739,
|
||||
eterna,10000,1000000,120,210,390,0,0,1,1,1,0,0,0,100740,
|
||||
everkr,10000,1000000,180,290,410,0,0,1,1,1,0,0,0,100741,
|
||||
everwh,10000,1000000,200,310,580,0,0,1,1,1,0,0,0,100742,
|
||||
farthe,10000,1000000,300,560,780,870,0,1,1,1,1,0,0,100743,
|
||||
filame,10000,1000000,230,380,630,0,0,1,1,1,0,0,0,100744,
|
||||
flameu2,10000,1000000,170,240,590,0,0,1,1,1,0,0,0,100745,
|
||||
freeee,10000,1000000,190,390,690,0,0,1,1,1,0,0,0,100746,
|
||||
funkyb2,10000,1000000,210,340,560,0,0,1,1,1,0,0,0,100747,
|
||||
granda2,10000,1000000,240,410,730,830,0,1,1,1,1,0,0,100748,
|
||||
hsphsp,10000,1000000,120,250,690,0,0,1,1,1,0,0,0,100749,
|
||||
halluc,10000,1000000,400,520,870,0,0,1,1,1,0,0,0,100750,
|
||||
indigo,10000,1000000,170,330,500,750,0,1,1,1,1,0,0,100751,
|
||||
inters,10000,1000000,250,420,770,0,0,1,1,1,0,0,0,100752,
|
||||
incave2,10000,1000000,310,570,880,0,0,1,1,1,0,0,0,100753,
|
||||
ioniza,10000,1000000,170,340,700,850,0,1,1,1,1,0,0,100754,
|
||||
guilty,10000,1000000,150,280,500,0,0,1,1,1,0,0,0,100755,
|
||||
keraun,10000,1000000,250,520,790,0,0,1,1,1,0,0,0,100756,
|
||||
landin2,10000,1000000,200,340,590,660,0,1,1,1,1,0,0,100757,
|
||||
videog,10000,1000000,210,370,620,0,0,1,1,1,0,0,0,100758,
|
||||
loseyo,10000,1000000,200,300,710,0,0,1,1,1,0,0,0,100759,
|
||||
machin,10000,1000000,120,280,720,0,0,1,1,1,0,0,0,100760,
|
||||
makeit,10000,1000000,110,240,480,0,0,1,1,1,0,0,0,100761,
|
||||
daydre,10000,1000000,190,360,800,0,0,1,1,1,0,0,0,100762,
|
||||
metron,10000,1000000,200,440,710,0,0,1,1,1,0,0,0,100763,
|
||||
milkyw,10000,1000000,220,310,600,0,0,1,1,1,0,0,0,100764,
|
||||
nayuta,10000,1000000,170,370,680,0,0,1,1,1,0,0,0,100766,
|
||||
nightm,10000,1000000,200,490,730,0,0,1,1,1,0,0,0,100767,
|
||||
otherw,10000,1000000,230,410,760,0,0,1,1,1,0,0,0,100768,
|
||||
overth,10000,1000000,330,570,820,0,250,1,1,1,0,-1,0,100769,
|
||||
uuuuuu,10000,1000000,230,370,740,0,0,1,1,1,0,0,0,100770,
|
||||
rainin,10000,1000000,160,410,690,0,0,1,1,1,0,0,0,100771,
|
||||
raisey,10000,1000000,230,550,750,0,150,1,1,1,0,-1,0,100772,
|
||||
resona,10000,1000000,170,320,640,0,0,1,1,1,0,0,0,100773,
|
||||
reuniv,10000,1000000,140,230,410,0,0,1,1,1,0,0,0,100774,
|
||||
rhythm,10000,1000000,370,560,780,0,250,1,1,1,0,-1,0,100775,
|
||||
rushhh,10000,1000000,250,370,750,0,0,1,1,1,0,0,0,100776,
|
||||
steeee,10000,1000000,300,580,870,0,0,1,1,1,0,0,0,100777,
|
||||
sangey,10000,1000000,270,470,850,0,0,1,1,1,0,0,0,100778,
|
||||
senpai,10000,1000000,380,540,770,0,250,1,1,1,0,-1,0,100779,
|
||||
sestea,10000,1000000,270,470,760,0,0,1,1,1,0,0,0,100780,
|
||||
silver,10000,1000000,280,400,690,0,0,1,1,1,0,0,0,100781,
|
||||
sodama,10000,1000000,200,400,650,0,0,1,1,1,0,0,0,100782,
|
||||
stardu,10000,1000000,190,330,640,0,0,1,1,1,0,0,0,100783,
|
||||
starti,10000,1000000,170,310,540,700,0,1,1,1,1,0,0,100784,
|
||||
sunday,10000,1000000,180,290,460,670,0,1,1,1,1,0,0,100785,
|
||||
sundro2,10000,1000000,300,480,790,820,0,1,1,1,1,0,0,100786,
|
||||
sunnyd,10000,1000000,230,380,590,0,0,1,1,1,0,0,0,100787,
|
||||
superl,10000,1000000,150,320,590,0,0,1,1,1,0,0,0,100788,
|
||||
switch,10000,1000000,160,350,690,0,0,1,1,1,0,0,0,100789,
|
||||
theepi2,10000,1000000,220,370,650,0,0,1,1,1,0,0,0,100790,
|
||||
epipha,10000,1000000,150,300,700,0,0,1,1,1,0,0,0,100791,
|
||||
thekin,10000,1000000,220,520,750,0,0,1,1,1,0,0,0,100792,
|
||||
timele,10000,1000000,160,330,720,0,0,1,1,1,0,0,0,100793,
|
||||
tokyoo,10000,1000000,150,330,710,0,0,1,1,1,0,0,0,100794,
|
||||
toooma,10000,1000000,300,510,770,0,0,1,1,1,0,0,0,100795,
|
||||
toucho2,10000,1000000,170,320,520,780,0,1,1,1,1,0,0,100796,
|
||||
tayuta,10000,1000000,260,350,720,0,0,1,1,1,0,0,0,100797,
|
||||
ultrix,10000,1000000,270,450,760,0,0,1,1,1,0,0,0,100798,
|
||||
underw,10000,1000000,290,460,690,860,0,1,1,1,1,0,0,100799,
|
||||
virtua,10000,1000000,150,350,630,0,0,1,1,1,0,0,0,100800,
|
||||
voiceo2,10000,1000000,140,380,670,0,0,1,1,1,0,0,0,100801,
|
||||
wannab2,10000,1000000,260,410,690,0,0,1,1,1,0,0,0,100802,
|
||||
wiwwtw2,10000,1000000,200,430,670,720,0,1,1,1,1,0,0,100803,
|
||||
wingso,10000,1000000,200,530,710,0,0,1,1,1,0,0,0,100804,
|
||||
winter,10000,1000000,140,240,410,0,0,1,1,1,0,0,0,100805,
|
||||
iineee,10000,1000000,210,400,810,0,0,1,1,1,0,0,0,100806,
|
||||
illumi,10000,1000000,100,250,460,630,0,1,1,1,1,0,0,100807,
|
||||
yellll,10000,1000000,80,170,520,0,0,1,1,1,0,0,0,100808,
|
||||
eschat,10000,1000000,360,570,770,0,250,1,1,1,0,-1,0,100809,
|
||||
counte,10000,1000000,290,340,710,0,0,1,1,1,0,0,0,100810,
|
||||
gimcho,10000,1000000,180,390,700,0,0,1,1,1,0,0,0,100811,
|
||||
surviv,10000,1000000,240,400,650,0,0,1,1,1,0,0,0,100812,
|
||||
turkis3,10000,1000000,60,200,480,0,0,1,1,1,0,0,0,100814,
|
||||
picora2,10000,1000000,280,530,800,0,0,1,1,1,0,0,0,100815,
|
||||
fortis,10000,1000000,200,370,530,0,0,1,1,1,0,0,0,100816,
|
||||
hedban,10000,1000000,160,430,660,0,0,1,1,1,0,0,0,100817,
|
||||
megitu,10000,1000000,150,300,490,0,0,1,1,1,0,0,0,100818,
|
||||
rockma,10000,1000000,270,480,730,0,0,1,1,1,0,0,0,100819,
|
||||
kounen2,10000,1000000,210,430,730,0,0,1,1,1,0,0,0,100820,
|
||||
saisyu,10000,1000000,180,360,560,0,0,1,1,1,0,0,0,100821,
|
||||
yuukan,10000,1000000,220,330,780,0,0,1,1,1,0,0,0,100822,
|
||||
modern,10000,1000000,200,320,560,0,0,1,1,1,0,0,0,100823,
|
||||
miraie,10000,1000000,210,350,660,0,0,1,1,1,0,0,0,100824,
|
||||
ranfes,10000,1000000,200,420,650,0,0,1,1,1,0,0,0,100825,
|
||||
nemure,10000,1000000,150,380,670,760,0,1,1,1,1,0,0,100826,
|
||||
yuwaku,10000,1000000,150,260,430,0,0,1,1,1,0,0,0,100827,
|
||||
dontst,10000,1000000,150,320,560,700,0,1,1,1,1,0,0,100828,
|
||||
mottai,10000,1000000,100,260,360,0,0,1,1,1,0,0,0,100829,
|
||||
slysly,10000,1000000,100,330,580,0,0,1,1,1,0,0,0,100830,
|
||||
lookam,10000,1000000,170,340,670,0,0,1,1,1,0,0,0,100831,
|
||||
feverr,10000,1000000,280,480,680,0,0,1,1,1,0,0,0,100832,
|
||||
fashio,10000,1000000,80,240,390,0,0,1,1,1,0,0,0,100833,
|
||||
hagito,10000,1000000,120,260,500,0,0,1,1,1,0,0,0,100834,
|
||||
invade,10000,1000000,100,280,470,0,0,1,1,1,0,0,0,100835,
|
||||
ainoch,10000,1000000,170,400,590,0,0,1,1,1,0,0,0,100836,
|
||||
nakama,10000,1000000,140,320,530,0,0,1,1,1,0,0,0,100837,
|
||||
ninjar,10000,1000000,80,230,410,650,0,1,1,1,1,0,0,100838,
|
||||
parall,10000,1000000,140,350,610,0,0,1,1,1,0,0,0,100839,
|
||||
yukifu,10000,1000000,130,290,510,0,0,1,1,1,0,0,0,100840,
|
||||
furiso,10000,1000000,120,240,440,740,0,1,1,1,1,0,0,100841,
|
||||
honeyj,10000,100000,320,630,880,930,240,1,1,1,1,1,6,100842,
|
||||
emeraj,10000,100000,300,530,850,0,190,1,1,1,0,1,1,100843,
|
||||
dazzlo,10000,200000,350,600,800,900,160,1,1,1,1,1,1,100844,
|
||||
|
2
titles/cxb/rss1_data/NewsList.csv
Normal file
2
titles/cxb/rss1_data/NewsList.csv
Normal file
@@ -0,0 +1,2 @@
|
||||
1,1,1601510400,4096483201,1,0,0,0,1,0,news1069,,,1,1,
|
||||
2,1,1601510400,4096483201,1,0,0,0,1,0,news1070,,,1,1,
|
||||
|
100
titles/cxb/rss1_data/Partner0000.csv
Normal file
100
titles/cxb/rss1_data/Partner0000.csv
Normal file
@@ -0,0 +1,100 @@
|
||||
1,0,100,100,100,100,100,100,100,100,0,0,
|
||||
2,100,110,101,101,103,101,101,101,101,1000,0,
|
||||
3,210,120,102,102,106,102,102,102,102,0,0,
|
||||
4,331,130,103,103,109,103,103,103,103,0,0,
|
||||
5,464,140,104,104,112,104,104,104,104,1001,0,
|
||||
6,610,150,105,105,115,105,105,105,105,1002,0,
|
||||
7,771,160,106,106,118,106,106,106,106,1003,0,
|
||||
8,948,170,107,107,121,107,107,107,107,0,0,
|
||||
9,1143,180,108,108,124,108,108,108,108,0,0,
|
||||
10,1357,190,109,109,127,109,109,109,109,1004,0,
|
||||
11,1593,200,110,110,130,110,110,110,110,0,0,
|
||||
12,1853,210,111,111,133,111,111,111,111,0,0,
|
||||
13,2138,220,112,112,136,112,112,112,112,0,0,
|
||||
14,2452,230,113,113,139,113,113,113,113,0,0,
|
||||
15,2797,240,114,114,142,114,114,114,114,1005,0,
|
||||
16,3177,250,115,115,145,115,115,115,115,0,0,
|
||||
17,3594,260,116,116,148,116,116,116,116,0,0,
|
||||
18,4054,270,117,117,151,117,117,117,117,0,0,
|
||||
19,4559,280,118,118,154,118,118,118,118,0,0,
|
||||
20,5115,290,119,119,157,119,119,119,119,1006,1,
|
||||
21,5727,300,120,120,160,120,120,120,120,0,1,
|
||||
22,6400,310,121,121,163,121,121,121,121,0,1,
|
||||
23,7140,320,122,122,166,122,122,122,122,0,1,
|
||||
24,7954,330,123,123,169,123,123,123,123,0,1,
|
||||
25,8849,340,124,124,172,124,124,124,124,0,1,
|
||||
26,9834,350,125,125,175,125,125,125,125,0,1,
|
||||
27,10918,360,126,126,178,126,126,126,126,0,1,
|
||||
28,12109,370,127,127,181,127,127,127,127,0,1,
|
||||
29,13420,380,128,128,184,128,128,128,128,0,1,
|
||||
30,14863,390,129,129,187,129,129,129,129,0,1,
|
||||
31,16449,400,130,130,190,130,130,130,130,0,1,
|
||||
32,18194,410,131,131,193,131,131,131,131,0,1,
|
||||
33,20113,420,132,132,196,132,132,132,132,0,1,
|
||||
34,22225,430,133,133,199,133,133,133,133,0,1,
|
||||
35,24547,440,134,134,202,134,134,134,134,0,1,
|
||||
36,27102,450,135,135,205,135,135,135,135,0,1,
|
||||
37,29912,460,136,136,208,136,136,136,136,0,1,
|
||||
38,33003,470,137,137,211,137,137,137,137,0,1,
|
||||
39,36404,480,138,138,214,138,138,138,138,0,1,
|
||||
40,40144,490,139,139,217,139,139,139,139,0,1,
|
||||
41,44259,500,140,140,220,140,140,140,140,0,1,
|
||||
42,48785,510,141,141,223,141,141,141,141,0,1,
|
||||
43,53763,520,142,142,226,142,142,142,142,0,1,
|
||||
44,59240,530,143,143,229,143,143,143,143,0,1,
|
||||
45,65264,540,144,144,232,144,144,144,144,0,1,
|
||||
46,71890,550,145,145,235,145,145,145,145,0,1,
|
||||
47,79179,560,146,146,238,146,146,146,146,0,1,
|
||||
48,87197,570,147,147,241,147,147,147,147,0,1,
|
||||
49,96017,580,148,148,244,148,148,148,148,0,1,
|
||||
50,105718,590,149,149,247,149,149,149,149,0,2,
|
||||
51,116390,600,150,150,250,150,150,150,150,0,2,
|
||||
52,128129,610,151,151,253,151,151,151,151,0,2,
|
||||
53,141042,620,152,152,256,152,152,152,152,0,2,
|
||||
54,155247,630,153,153,259,153,153,153,153,0,2,
|
||||
55,170871,640,154,154,262,154,154,154,154,0,2,
|
||||
56,188059,650,155,155,265,155,155,155,155,0,2,
|
||||
57,206965,660,156,156,268,156,156,156,156,0,2,
|
||||
58,227761,670,157,157,271,157,157,157,157,0,2,
|
||||
59,250637,680,158,158,274,158,158,158,158,0,2,
|
||||
60,275801,690,159,159,277,159,159,159,159,0,2,
|
||||
61,303481,700,160,160,280,160,160,160,160,0,2,
|
||||
62,333929,710,161,161,283,161,161,161,161,0,2,
|
||||
63,367422,720,162,162,286,162,162,162,162,0,2,
|
||||
64,404265,730,163,163,289,163,163,163,163,0,2,
|
||||
65,444791,740,164,164,292,164,164,164,164,0,2,
|
||||
66,489370,750,165,165,295,165,165,165,165,0,2,
|
||||
67,538407,760,166,166,298,166,166,166,166,0,2,
|
||||
68,592348,770,167,167,301,167,167,167,167,0,2,
|
||||
69,651683,780,168,168,304,168,168,168,168,0,2,
|
||||
70,716951,790,169,169,307,169,169,169,169,0,2,
|
||||
71,788746,800,170,170,310,170,170,170,170,0,2,
|
||||
72,867721,810,171,171,313,171,171,171,171,0,2,
|
||||
73,954593,820,172,172,316,172,172,172,172,0,2,
|
||||
74,1050153,830,173,173,319,173,173,173,173,0,2,
|
||||
75,1155268,840,174,174,322,174,174,174,174,0,2,
|
||||
76,1270895,850,175,175,325,175,175,175,175,0,2,
|
||||
77,1398084,860,176,176,328,176,176,176,176,0,2,
|
||||
78,1537993,870,177,177,331,177,177,177,177,0,2,
|
||||
79,1691892,880,178,178,334,178,178,178,178,0,2,
|
||||
80,1861182,890,179,179,337,179,179,179,179,0,2,
|
||||
81,2047400,900,180,180,340,180,180,180,180,0,2,
|
||||
82,2252240,910,181,181,343,181,181,181,181,0,2,
|
||||
83,2477564,920,182,182,346,182,182,182,182,0,2,
|
||||
84,2725420,930,183,183,349,183,183,183,183,0,2,
|
||||
85,2998062,940,184,184,352,184,184,184,184,0,2,
|
||||
86,3297969,950,185,185,355,185,185,185,185,0,2,
|
||||
87,3627865,960,186,186,358,186,186,186,186,0,2,
|
||||
88,3990752,970,187,187,361,187,187,187,187,0,2,
|
||||
89,4389927,980,188,188,364,188,188,188,188,0,2,
|
||||
90,4829020,990,189,189,367,189,189,189,189,0,2,
|
||||
91,5312022,1000,190,190,370,190,190,190,190,0,2,
|
||||
92,5843324,1010,191,191,373,191,191,191,191,0,2,
|
||||
93,6427757,1020,192,192,376,192,192,192,192,0,2,
|
||||
94,7070633,1030,193,193,379,193,193,193,193,0,2,
|
||||
95,7777796,1040,194,194,382,194,194,194,194,0,2,
|
||||
96,8555676,1050,195,195,385,195,195,195,195,0,2,
|
||||
97,9411343,1060,196,196,388,196,196,196,196,0,2,
|
||||
98,10352578,1070,197,197,391,197,197,197,197,0,2,
|
||||
99,11387935,1080,198,198,394,198,198,198,198,0,2,
|
||||
100,12526829,1090,199,199,397,199,199,199,199,0,2,
|
||||
|
3
titles/cxb/rss1_data/Shop/ShopList_Icon.csv
Normal file
3
titles/cxb/rss1_data/Shop/ShopList_Icon.csv
Normal file
@@ -0,0 +1,3 @@
|
||||
1000,1,10000,1,-1,-,1411697520,1670178694,ic0000,10,1,,1,先行解禁,1,-,
|
||||
1001,2,10000,1,-1,-,1411697520,1670178694,ic0001,10,1,,1,先行解禁,1,-,
|
||||
1002,3,10000,1,-1,-,1412103600,1670178694,ic0002,10,2,,1,先行解禁,1,-,
|
||||
|
13
titles/cxb/rss1_data/Shop/ShopList_Music.csv
Normal file
13
titles/cxb/rss1_data/Shop/ShopList_Music.csv
Normal file
@@ -0,0 +1,13 @@
|
||||
shopID.,整理用No.,Ver.,出現フラグ,出現フラグ参照ID,条件,出現時間,消滅時間,MusicCode,価格,表示タイプ,Text,Type,Value(op),Value,対象曲,Difficulty(op),Difficulty,Level(op),Level,Grade(Op),Grade,GaugeType(op),GaugeType,HS(op),HS,APP,DAP,F-V,F-H,FullCombo,Combo(op),Combo,ClearRate(op),ClearRate,プレイ日,地域,
|
||||
0,1,1.00.00,3,1,-,1411697520.0288,1443233520.0288,megaro,0,0,-,-1,-1,-1,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
1,2,1.00.00,1,-1,-,1411697520.0288,1443233520.0288,nature,10,2,???,-1,-1,-1,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
2,3,1.00.00,2,-1,-,1412103600.0288,1443639598.992,hopesb,30,1,「Landing on the moon」をSTANDARD以上でクリアする。,0,-1,-1,landin,1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
3,4,1.00.00,1,-1,-,1412103600.0288,1443639598.992,flower,10,0,-,-1,-1,-1,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
4,5,1.00.02,1,-1,1&2&3,1412103600.0288,1443639598.992,reseed3,10,0,「Human Nature」「Hopes Bright」「Flowerwall」をクリアする。,-1,-1,-1,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
5,6,1.00.00,1,-1,-,1411697520.0288,1443233520.0288,dennou,20,1,-,0,-1,-1,flower,1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,,,
|
||||
6,7,1.00.00,2,-1,5&7,1411697520.0288,1443233520.0288,romanc,10,1,-,-1,-1,-1,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
7,8,1.00.00,1,-1,-,1411697520.0288,1443233520.0288,landin,40,1,-,-1,-1,-1,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
8,9,1.00.00,1,-1,7,1411697520.0288,1443233520.0288,ididid,50,0,-,-1,-1,-1,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,,,
|
||||
9,10,1.00.00,1,-1,-,1411697520.0288,1443233520.0288,crissc,60,0,MASTER以上の2曲S+以上フルコンボクリアする。,1,1,2,-,1,2,-1,0,1,1,1,2,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,,,
|
||||
10,11,1.00.00,1,-1,-,1411697520.0288,1443233520.0288,dazzli,70,1,MASTER以上の4曲S+以上クリアする。,1,1,4,-,1,2,-1,0,1,1,1,2,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,,,
|
||||
11,12,1.00.00,1,-1,-,1411697520.0288,1443233520.0288,izimed,987654,1,MASTER以上の7曲S+以上クリアする。,1,1,7,-,1,2,-1,0,1,1,1,2,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,,,
|
||||
|
3
titles/cxb/rss1_data/Shop/ShopList_Sale.csv
Normal file
3
titles/cxb/rss1_data/Shop/ShopList_Sale.csv
Normal file
@@ -0,0 +1,3 @@
|
||||
saleID.,<EFBFBD>J<EFBFBD>n<EFBFBD><EFBFBD>,<EFBFBD>I<EFBFBD><EFBFBD><EFBFBD><EFBFBD>,ShopID,Price,
|
||||
0,1411696799,1443236400,0,7000,
|
||||
1,1411783199,1443322800,1,7000,
|
||||
|
4
titles/cxb/rss1_data/Shop/ShopList_SkinBg.csv
Normal file
4
titles/cxb/rss1_data/Shop/ShopList_SkinBg.csv
Normal file
@@ -0,0 +1,4 @@
|
||||
shopID.,整理用No.,Ver.,出現フラグ,出現フラグ参照ID,条件,出現時間,消滅時間,ItemCode,価格,表示タイプ,Text,Type,Value(op),Value,対象曲,Difficulty(op),Difficulty,Level(op),Level,Grade(Op),Grade,GaugeType(op),GaugeType,HS(op)i,HS,APP,DAP,F-V,F-H,FullCombo,Combo(op),Combo,ClearRate(op),ClearRate,プレイ日,地域,
|
||||
3000,1,1.00.00,1,-1,-,1411697520.0288,1443233520.0288,skb0000,10,1,MASTER以上の2曲S+以上フルコンボクリアする。,1,1,1,-,1,2,-1,-1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
3001,2,1.00.00,1,-1,-,1411697520.0288,1443233520.0288,skb0001,10,1,Next Frontier (Master)をクリア,0,-1,-1,bleeze,1,2,-1,-1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
3002,3,1.00.00,1,-1,-,1412103600.0288,1443639598.992,skb0002,10,2,Master以上を1曲をS+以上でクリアする。,1,1,1,-,1,2,-1,-1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,1,
|
||||
|
11
titles/cxb/rss1_data/Shop/ShopList_SkinEffect.csv
Normal file
11
titles/cxb/rss1_data/Shop/ShopList_SkinEffect.csv
Normal file
@@ -0,0 +1,11 @@
|
||||
shopID.,<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>pNo.,Ver.,<EFBFBD>o<EFBFBD><EFBFBD><EFBFBD>t<EFBFBD><EFBFBD><EFBFBD>O,<EFBFBD>o<EFBFBD><EFBFBD><EFBFBD>t<EFBFBD><EFBFBD><EFBFBD>O<EFBFBD>Q<EFBFBD><EFBFBD>ID,<EFBFBD><EFBFBD><EFBFBD><EFBFBD>,<EFBFBD>o<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>,<EFBFBD><EFBFBD><EFBFBD>Ŏ<EFBFBD><EFBFBD><EFBFBD>,ItemCode,<EFBFBD><EFBFBD><EFBFBD>i,<EFBFBD>\<5C><><EFBFBD>^<5E>C<EFBFBD>v,Text,Type,Value(op),Value,<EFBFBD>Ώۋ<EFBFBD>,Difficulty(op),Difficulty,Level(op),Level,Grade(Op),Grade,GaugeType(op),GaugeType,HS(op)i,HS,APP,DAP,F-V,F-H,FullCombo,Combo(op),Combo,ClearRate(op),ClearRate,<EFBFBD>v<EFBFBD><EFBFBD><EFBFBD>C<EFBFBD><EFBFBD>,<EFBFBD>n<EFBFBD><EFBFBD>,
|
||||
5000,1,10000,1,-1,-,1411697520,1443233520,ske0000,10,1,MASTER<EFBFBD>ȏ<EFBFBD><EFBFBD>2<EFBFBD><EFBFBD>S+<2B>ȏ<EFBFBD>t<EFBFBD><74><EFBFBD>R<EFBFBD><52><EFBFBD>{<7B>N<EFBFBD><4E><EFBFBD>A<EFBFBD><41><EFBFBD><EFBFBD>B,1,1,1,-,1,2,-1,-1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
5001,2,10000,1,-1,-,1411697520,1443233520,ske0001,10,1,Next Frontier (Master<65>j<EFBFBD><6A><EFBFBD>N<EFBFBD><4E><EFBFBD>A,0,-1,-1,megaro,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
5002,3,10000,1,-1,-,1412103600,1443639598,ske0002,10,2,Master<EFBFBD>ȏ<EFBFBD><EFBFBD>1<EFBFBD>Ȃ<EFBFBD>S+<2B>ȏ<EFBFBD>ŃN<C583><4E><EFBFBD>A<EFBFBD><41><EFBFBD><EFBFBD>B,1,1,1,-,1,2,-1,-1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,1,
|
||||
5003,4,10000,1,-1,-,1412103600,1443639598,ske0003,10,0,Master<EFBFBD>ȏ<EFBFBD><EFBFBD>1<EFBFBD>Ȃ<EFBFBD>S+<2B>ȏ<EFBFBD>ŃN<C583><4E><EFBFBD>A<EFBFBD><41><EFBFBD><EFBFBD>B,1,1,1,-,1,2,-1,-1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
5004,5,10000,1,-1,-,1412103600,1443639598,ske0004,10,2,2<EFBFBD>ȃN<EFBFBD><EFBFBD><EFBFBD>A,1,1,2,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
5005,5,10000,1,-1,-,1412103600,1443639598,ske0005,10,2,3<EFBFBD>ȃN<EFBFBD><EFBFBD><EFBFBD>A,1,1,3,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
5006,5,10000,1,-1,-,1412103600,1443639598,ske0006,10,2,4<EFBFBD>ȃN<EFBFBD><EFBFBD><EFBFBD>A,1,1,4,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
5007,5,10000,1,-1,-,1412103600,1443639598,ske0007,10,2,5<EFBFBD>ȃN<EFBFBD><EFBFBD><EFBFBD>A,1,1,5,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
5008,5,10000,1,-1,-,1412103600,1443639598,ske0008,10,2,6<EFBFBD>ȃN<EFBFBD><EFBFBD><EFBFBD>A,1,1,6,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
5009,5,10000,1,-1,-,1412103600,1443639598,ske0009,10,2,7<EFBFBD>ȃN<EFBFBD><EFBFBD><EFBFBD>A,1,1,7,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
|
6
titles/cxb/rss1_data/Shop/ShopList_SkinNotes.csv
Normal file
6
titles/cxb/rss1_data/Shop/ShopList_SkinNotes.csv
Normal file
@@ -0,0 +1,6 @@
|
||||
shopID.,<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>pNo.,Ver.,<EFBFBD>o<EFBFBD><EFBFBD><EFBFBD>t<EFBFBD><EFBFBD><EFBFBD>O,<EFBFBD>o<EFBFBD><EFBFBD><EFBFBD>t<EFBFBD><EFBFBD><EFBFBD>O<EFBFBD>Q<EFBFBD><EFBFBD>ID,<EFBFBD><EFBFBD><EFBFBD><EFBFBD>,<EFBFBD>o<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>,<EFBFBD><EFBFBD><EFBFBD>Ŏ<EFBFBD><EFBFBD><EFBFBD>,ItemCode,<EFBFBD><EFBFBD><EFBFBD>i,<EFBFBD>\<5C><><EFBFBD>^<5E>C<EFBFBD>v,Text,Type,Value(op),Value,<EFBFBD>Ώۋ<EFBFBD>,Difficulty(op),Difficulty,Level(op),Level,Grade(Op),Grade,GaugeType(op),GaugeType,HS(op)i,HS,APP,DAP,F-V,F-H,FullCombo,Combo(op),Combo,ClearRate(op),ClearRate,<EFBFBD>v<EFBFBD><EFBFBD><EFBFBD>C<EFBFBD><EFBFBD>,<EFBFBD>n<EFBFBD><EFBFBD>,
|
||||
4000,1,10000,1,-1,-,1411697520,4096483201,skt0000,10,1,MASTER<EFBFBD>ȏ<EFBFBD><EFBFBD>2<EFBFBD><EFBFBD>S+<2B>ȏ<EFBFBD>t<EFBFBD><74><EFBFBD>R<EFBFBD><52><EFBFBD>{<7B>N<EFBFBD><4E><EFBFBD>A<EFBFBD><41><EFBFBD><EFBFBD>B,1,1,1,-,1,2,-1,-1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
4001,2,10000,1,-1,-,1411697520,4096483201,skt0001,10,1,Next Frontier (Master<65>j<EFBFBD><6A><EFBFBD>N<EFBFBD><4E><EFBFBD>A,0,-1,-1,megaro,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
4002,3,10000,1,-1,-,1412103600,4096483201,skt0002,10,2,Master<EFBFBD>ȏ<EFBFBD><EFBFBD>1<EFBFBD>Ȃ<EFBFBD>S+<2B>ȏ<EFBFBD>ŃN<C583><4E><EFBFBD>A<EFBFBD><41><EFBFBD><EFBFBD>B,1,1,1,-,1,2,-1,-1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,1,
|
||||
4003,4,10000,1,-1,-,1412103600,4096483201,skt0003,10,0,Master<EFBFBD>ȏ<EFBFBD><EFBFBD>1<EFBFBD>Ȃ<EFBFBD>S+<2B>ȏ<EFBFBD>ŃN<C583><4E><EFBFBD>A<EFBFBD><41><EFBFBD><EFBFBD>B,1,1,1,-,1,2,-1,-1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
4004,5,10000,1,-1,-,1412103600,4096483201,skt0004,10,2,aaaaaaaaaaaaaaaaa,1,1,20,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
|
3
titles/cxb/rss1_data/Shop/ShopList_Title.csv
Normal file
3
titles/cxb/rss1_data/Shop/ShopList_Title.csv
Normal file
@@ -0,0 +1,3 @@
|
||||
2000,1001,10000,1,-1,-,1411697520,4096483201,,10,1,,1,,1,先行解禁,
|
||||
2001,1002,10000,1,-1,-,1411697520,4096483201,,10,1,,1,,1,先行解禁,
|
||||
2002,1003,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,先行解禁,
|
||||
|
262
titles/cxb/rss2.py
Normal file
262
titles/cxb/rss2.py
Normal file
@@ -0,0 +1,262 @@
|
||||
import json
|
||||
from decimal import Decimal
|
||||
from base64 import b64encode
|
||||
from typing import Any, Dict
|
||||
from hashlib import md5
|
||||
from datetime import datetime
|
||||
|
||||
from core.config import CoreConfig
|
||||
from core.data import Data, cached
|
||||
from titles.cxb.config import CxbConfig
|
||||
from titles.cxb.base import CxbBase
|
||||
from titles.cxb.const import CxbConstants
|
||||
|
||||
class CxbRevSunriseS2(CxbBase):
|
||||
def __init__(self, cfg: CoreConfig, game_cfg: CxbConfig) -> None:
|
||||
super().__init__(cfg, game_cfg)
|
||||
self.version = CxbConstants.VER_CROSSBEATS_REV_SUNRISE_S2_OMNI
|
||||
|
||||
def handle_data_path_list_request(self, data: Dict) -> Dict:
|
||||
return { "data": "" }
|
||||
|
||||
@cached(lifetime=86400)
|
||||
def handle_data_music_list_request(self, data: Dict) -> Dict:
|
||||
ret_str = ""
|
||||
with open(r"titles/cxb/rss2_data/MusicArchiveList.csv") as music:
|
||||
lines = music.readlines()
|
||||
for line in lines:
|
||||
line_split = line.split(',')
|
||||
ret_str += f"{line_split[0]},{line_split[1]},{line_split[2]},{line_split[3]},{line_split[4]},{line_split[5]},{line_split[6]},{line_split[7]},{line_split[8]},{line_split[9]},{line_split[10]},{line_split[11]},{line_split[12]},{line_split[13]},{line_split[14]},\r\n"
|
||||
|
||||
return({"data":ret_str})
|
||||
|
||||
@cached(lifetime=86400)
|
||||
def handle_data_item_list_detail_request(self, data: Dict) -> Dict:
|
||||
#ItemListIcon load
|
||||
ret_str = "#ItemListIcon\r\n"
|
||||
with open(r"titles/cxb/rss2_data/Item/ItemList_Icon.csv", encoding="utf-8") as item:
|
||||
lines = item.readlines()
|
||||
for line in lines:
|
||||
ret_str += f"{line[:-1]}\r\n"
|
||||
|
||||
#ItemListTitle load
|
||||
ret_str += "\r\n#ItemListTitle\r\n"
|
||||
with open(r"titles/cxb/rss2_data/Item/ItemList_Title.csv", encoding="utf-8") as item:
|
||||
lines = item.readlines()
|
||||
for line in lines:
|
||||
ret_str += f"{line[:-1]}\r\n"
|
||||
|
||||
return({"data":ret_str})
|
||||
|
||||
@cached(lifetime=86400)
|
||||
def handle_data_shop_list_detail_request(self, data: Dict) -> Dict:
|
||||
#ShopListIcon load
|
||||
ret_str = "#ShopListIcon\r\n"
|
||||
with open(r"titles/cxb/rss2_data/Shop/ShopList_Icon.csv", encoding="utf-8") as shop:
|
||||
lines = shop.readlines()
|
||||
for line in lines:
|
||||
ret_str += f"{line[:-1]}\r\n"
|
||||
|
||||
#ShopListMusic load
|
||||
ret_str += "\r\n#ShopListMusic\r\n"
|
||||
with open(r"titles/cxb/rss2_data/Shop/ShopList_Music.csv", encoding="utf-8") as shop:
|
||||
lines = shop.readlines()
|
||||
for line in lines:
|
||||
ret_str += f"{line[:-1]}\r\n"
|
||||
|
||||
#ShopListSale load
|
||||
ret_str += "\r\n#ShopListSale\r\n"
|
||||
with open(r"titles/cxb/rss2_data/Shop/ShopList_Sale.csv", encoding="shift-jis") as shop:
|
||||
lines = shop.readlines()
|
||||
for line in lines:
|
||||
ret_str += f"{line[:-1]}\r\n"
|
||||
|
||||
#ShopListSkinBg load
|
||||
ret_str += "\r\n#ShopListSkinBg\r\n"
|
||||
with open(r"titles/cxb/rss2_data/Shop/ShopList_SkinBg.csv", encoding="shift-jis") as shop:
|
||||
lines = shop.readlines()
|
||||
for line in lines:
|
||||
ret_str += f"{line[:-1]}\r\n"
|
||||
|
||||
#ShopListSkinEffect load
|
||||
ret_str += "\r\n#ShopListSkinEffect\r\n"
|
||||
with open(r"titles/cxb/rss2_data/Shop/ShopList_SkinEffect.csv", encoding="shift-jis") as shop:
|
||||
lines = shop.readlines()
|
||||
for line in lines:
|
||||
ret_str += f"{line[:-1]}\r\n"
|
||||
|
||||
#ShopListSkinNotes load
|
||||
ret_str += "\r\n#ShopListSkinNotes\r\n"
|
||||
with open(r"titles/cxb/rss2_data/Shop/ShopList_SkinNotes.csv", encoding="shift-jis") as shop:
|
||||
lines = shop.readlines()
|
||||
for line in lines:
|
||||
ret_str += f"{line[:-1]}\r\n"
|
||||
|
||||
#ShopListTitle load
|
||||
ret_str += "\r\n#ShopListTitle\r\n"
|
||||
with open(r"titles/cxb/rss2_data/Shop/ShopList_Title.csv", encoding="utf-8") as shop:
|
||||
lines = shop.readlines()
|
||||
for line in lines:
|
||||
ret_str += f"{line[:-1]}\r\n"
|
||||
return({"data":ret_str})
|
||||
|
||||
def handle_data_extra_stage_list_request(self, data: Dict) -> Dict:
|
||||
return({"data":""})
|
||||
|
||||
def handle_data_ex0001_request(self, data: Dict) -> Dict:
|
||||
return({"data":""})
|
||||
|
||||
def handle_data_one_more_extra_list_request(self, data: Dict) -> Dict:
|
||||
return({"data":""})
|
||||
|
||||
def handle_data_bonus_list10100_request(self, data: Dict) -> Dict:
|
||||
return({"data":""})
|
||||
|
||||
def handle_data_oe0001_request(self, data: Dict) -> Dict:
|
||||
return({"data":""})
|
||||
|
||||
def handle_data_free_coupon_request(self, data: Dict) -> Dict:
|
||||
return({"data":""})
|
||||
|
||||
@cached(lifetime=86400)
|
||||
def handle_data_news_list_request(self, data: Dict) -> Dict:
|
||||
ret_str = ""
|
||||
with open(r"titles/cxb/rss2_data/NewsList.csv", encoding="UTF-8") as news:
|
||||
lines = news.readlines()
|
||||
for line in lines:
|
||||
ret_str += f"{line[:-1]}\r\n"
|
||||
return({"data":ret_str})
|
||||
|
||||
def handle_data_tips_request(self, data: Dict) -> Dict:
|
||||
return({"data":""})
|
||||
|
||||
def handle_data_release_info_list_request(self, data: Dict) -> Dict:
|
||||
return({"data":""})
|
||||
|
||||
@cached(lifetime=86400)
|
||||
def handle_data_random_music_list_request(self, data: Dict) -> Dict:
|
||||
ret_str = ""
|
||||
with open(r"titles/cxb/rss2_data/MusicArchiveList.csv") as music:
|
||||
lines = music.readlines()
|
||||
count = 0
|
||||
for line in lines:
|
||||
line_split = line.split(",")
|
||||
ret_str += str(count) + "," + line_split[0] + "," + line_split[0] + ",\r\n"
|
||||
|
||||
return({"data":ret_str})
|
||||
|
||||
@cached(lifetime=86400)
|
||||
def handle_data_license_request(self, data: Dict) -> Dict:
|
||||
ret_str = ""
|
||||
with open(r"titles/cxb/rss2_data/License.csv", encoding="UTF-8") as licenses:
|
||||
lines = licenses.readlines()
|
||||
for line in lines:
|
||||
ret_str += f"{line[:-1]}\r\n"
|
||||
return({"data":ret_str})
|
||||
|
||||
@cached(lifetime=86400)
|
||||
def handle_data_course_list_request(self, data: Dict) -> Dict:
|
||||
ret_str = ""
|
||||
with open(r"titles/cxb/rss2_data/Course/CourseList.csv", encoding="UTF-8") as course:
|
||||
lines = course.readlines()
|
||||
for line in lines:
|
||||
ret_str += f"{line[:-1]}\r\n"
|
||||
return({"data":ret_str})
|
||||
|
||||
@cached(lifetime=86400)
|
||||
def handle_data_csxxxx_request(self, data: Dict) -> Dict:
|
||||
extra_num = int(data["dldate"]["filetype"][-4:])
|
||||
ret_str = ""
|
||||
with open(fr"titles/cxb/rss2_data/Course/Cs{extra_num}.csv", encoding="shift-jis") as course:
|
||||
lines = course.readlines()
|
||||
for line in lines:
|
||||
ret_str += f"{line[:-1]}\r\n"
|
||||
return({"data":ret_str})
|
||||
|
||||
def handle_data_mission_list_request(self, data: Dict) -> Dict:
|
||||
return({"data":""})
|
||||
|
||||
def handle_data_mission_bonus_request(self, data: Dict) -> Dict:
|
||||
return({"data":""})
|
||||
|
||||
def handle_data_unlimited_mission_request(self, data: Dict) -> Dict:
|
||||
return({"data":""})
|
||||
|
||||
def handle_data_partner_list_request(self, data: Dict) -> Dict:
|
||||
ret_str = ""
|
||||
# Lord forgive me for the sins I am about to commit
|
||||
for i in range(0,10):
|
||||
ret_str += f"80000{i},{i},{i},0,10000,,\r\n"
|
||||
ret_str += f"80000{i},{i},{i},1,10500,,\r\n"
|
||||
ret_str += f"80000{i},{i},{i},2,10500,,\r\n"
|
||||
for i in range(10,13):
|
||||
ret_str += f"8000{i},{i},{i},0,10000,,\r\n"
|
||||
ret_str += f"8000{i},{i},{i},1,10500,,\r\n"
|
||||
ret_str += f"8000{i},{i},{i},2,10500,,\r\n"
|
||||
ret_str +="\r\n---\r\n0,150,100,100,100,100,\r\n"
|
||||
for i in range(1,130):
|
||||
ret_str +=f"{i},100,100,100,100,100,\r\n"
|
||||
|
||||
ret_str += "---\r\n"
|
||||
return({"data": ret_str})
|
||||
|
||||
@cached(lifetime=86400)
|
||||
def handle_data_partnerxxxx_request(self, data: Dict) -> Dict:
|
||||
partner_num = int(data["dldate"]["filetype"][-4:])
|
||||
ret_str = f"{partner_num},,{partner_num},1,10000,\r\n"
|
||||
with open(r"titles/cxb/rss2_data/Partner0000.csv") as partner:
|
||||
lines = partner.readlines()
|
||||
for line in lines:
|
||||
ret_str += f"{line[:-1]}\r\n"
|
||||
return({"data": ret_str})
|
||||
|
||||
def handle_data_server_state_request(self, data: Dict) -> Dict:
|
||||
return({"data": True})
|
||||
|
||||
def handle_data_settings_request(self, data: Dict) -> Dict:
|
||||
return({"data": "2,\r\n"})
|
||||
|
||||
def handle_data_story_list_request(self, data: Dict) -> Dict:
|
||||
#story id, story name, game version, start time, end time, course arc, unlock flag, song mcode for menu
|
||||
ret_str = "\r\n"
|
||||
ret_str += f"st0000,RISING PURPLE,10104,1464370990,4096483201,Cs1000,-1,purple,\r\n"
|
||||
ret_str += f"st0001,REBEL YELL,10104,1467999790,4096483201,Cs1000,-1,chaset,\r\n"
|
||||
ret_str += f"st0002,REMNANT,10104,1502127790,4096483201,Cs1000,-1,overcl,\r\n"
|
||||
return({"data": ret_str})
|
||||
|
||||
def handle_data_stxxxx_request(self, data: Dict) -> Dict:
|
||||
story_num = int(data["dldate"]["filetype"][-4:])
|
||||
ret_str = ""
|
||||
# Each stories appears to have 10 pieces based on the wiki but as on how they are set.... no clue
|
||||
for i in range(1,11):
|
||||
ret_str +=f"{i},st000{story_num}_{i-1},,,,,,,,,,,,,,,,1,,-1,1,\r\n"
|
||||
return({"data": ret_str})
|
||||
|
||||
def handle_data_event_stamp_list_request(self, data: Dict) -> Dict:
|
||||
return({"data":"Cs1002,1,1,1,1,1,1,1,1,1,1,\r\n"})
|
||||
|
||||
def handle_data_premium_list_request(self, data: Dict) -> Dict:
|
||||
return({"data": "1,,,,10,,,,,99,,,,,,,,,100,,\r\n"})
|
||||
|
||||
def handle_data_event_list_request(self, data: Dict) -> Dict:
|
||||
return({"data":"Cs4001,0,10000,1601510400,1604188799,1,nv2006,1,\r\nCs4005,0,10000,1609459200,1615766399,1,nv2006,1,\r\n"})
|
||||
|
||||
def handle_data_event_detail_list_request(self, data: Dict) -> Dict:
|
||||
event_id = data["dldate"]["filetype"].split("/")[2]
|
||||
if "Cs4001" in event_id:
|
||||
return({"data":"#EventMusicList\r\n1,zonzon2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,\r\n2,moonki,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,\r\n3,tricko,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,\r\n"})
|
||||
elif "Cs4005" in event_id:
|
||||
return({"data":"#EventMusicList\r\n2,firstl,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,\r\n2,valent,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,\r\n2,dazzli2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,\r\n"})
|
||||
elif "EventStampMapListCs1002" in event_id:
|
||||
return({"data":"1,2,1,1,2,3,9,5,6,7,8,9,10,\r\n"})
|
||||
elif "EventStampList" in event_id:
|
||||
return({"data":"Cs1002,1,1,1,1,1,1,1,1,1,1,\r\n"})
|
||||
else:
|
||||
return({"data":""})
|
||||
|
||||
def handle_data_event_stamp_map_list_csxxxx_request(self, data: Dict) -> Dict:
|
||||
event_id = data["dldate"]["filetype"].split("/")[2]
|
||||
if "EventStampMapListCs1002" in event_id:
|
||||
return({"data":"1,2,1,1,2,3,9,5,6,7,8,9,10,\r\n"})
|
||||
else:
|
||||
return({"data":""})
|
||||
5
titles/cxb/rss2_data/Course/CourseList.csv
Normal file
5
titles/cxb/rss2_data/Course/CourseList.csv
Normal file
@@ -0,0 +1,5 @@
|
||||
Cs2000,0,10050,1422284400,4096483201,0,-1,-1,100,5,クリアすると段位が「見習い」に昇格します。,-1,
|
||||
Cs2001,1,10050,1422284400,4096483201,0,-1,-1,110,5,クリアすると段位が「初段」に昇格します。,-1,
|
||||
Cs2002,2,10050,1422284400,4096483201,0,-1,-1,120,5,クリアすると段位が「二段」に昇格します。,-1,
|
||||
Cs2003,3,10050,1422284400,4096483201,0,-1,-1,130,5,クリアすると段位が「三段」に昇格します。,-1,
|
||||
Cs2004,4,10050,1422284400,4096483201,0,-1,-1,140,5,クリアすると段位が「四段」に昇格します。,-1,
|
||||
|
4
titles/cxb/rss2_data/Course/Cs2000.csv
Normal file
4
titles/cxb/rss2_data/Course/Cs2000.csv
Normal file
@@ -0,0 +1,4 @@
|
||||
1,flower,0,1,-,-1,-1,2,-1,1,-1,1,
|
||||
2,bleeze,0,1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
3,killyk,0,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
4,shooti,0,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
|
4
titles/cxb/rss2_data/Course/Cs2001.csv
Normal file
4
titles/cxb/rss2_data/Course/Cs2001.csv
Normal file
@@ -0,0 +1,4 @@
|
||||
1,getthe,0,1,-,-1,-1,2,-1,1,-1,1,
|
||||
2,picora,0,1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
3,nature,1,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
4,roadof,1,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
|
4
titles/cxb/rss2_data/Course/Cs2002.csv
Normal file
4
titles/cxb/rss2_data/Course/Cs2002.csv
Normal file
@@ -0,0 +1,4 @@
|
||||
1,landin,1,1,-,-1,-1,2,-1,1,-1,1,
|
||||
2,powerr,1,1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
3,thesig,1,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
4,bluede,2,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
|
4
titles/cxb/rss2_data/Course/Cs2003.csv
Normal file
4
titles/cxb/rss2_data/Course/Cs2003.csv
Normal file
@@ -0,0 +1,4 @@
|
||||
1,hosita,2,1,-,-1,-1,2,-1,1,-1,1,
|
||||
2,techno,2,1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
3,moonli,2,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
4,kounen,2,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
|
4
titles/cxb/rss2_data/Course/Cs2004.csv
Normal file
4
titles/cxb/rss2_data/Course/Cs2004.csv
Normal file
@@ -0,0 +1,4 @@
|
||||
1,planet,2,1,-,-1,-1,2,-1,1,-1,1,
|
||||
2,firefo,2,1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
3,essenc,2,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
4,sateli,2,-1,-,-1,-1,-1,-1,-1,-1,-1,
|
||||
|
10
titles/cxb/rss2_data/Ex0000.csv
Normal file
10
titles/cxb/rss2_data/Ex0000.csv
Normal file
@@ -0,0 +1,10 @@
|
||||
StageMax,ClearCount,StageNo.,MCODE,Diff(std),Diff(hrd),Diff(mas),Diff(ulm),Diff(esy),Level(op), Level(val), Grade(op),Grade(val),GT(nml),GT(svl),GT(ult),GT(nhp),GT(esy),HS(op),HS(val),APP,DAP,F-V,F-H,FT(ac),FT(tab),FT(pho),Combo(op),Combo(val),FullCombo,ClearRate(op),ClearRate(val)
|
||||
2,1,1,-,2,2,2,1,2,-1,-,1,1,-1,-1,-1,-1,-1,1,-2,-1,-1,-1,-1,-1,-1,-1,1,300,-1,-1,-,
|
||||
2,-,2,-,2,2,2,1,2,-1,-,1,1,-1,-1,-1,-1,-1,1,-2,-1,-1,-1,-1,-1,-1,-1,1,300,-1,-1,-,
|
||||
3,3,1,-,2,2,1,1,2,-1,-,1,2,-1,-1,-1,-1,-1,1,-2,-1,-1,-1,-1,-1,-1,-1,-1,-,-1,-1,-,
|
||||
3,-,2,-,2,2,1,1,2,-1,-,1,2,-1,-1,-1,-1,-1,1,-2,-1,-1,-1,-1,-1,-1,-1,-1,-,-1,-1,-,
|
||||
3,-,3,-,2,2,1,1,2,1,50,1,2,2,2,1,2,2,1,-2,-1,-1,-1,-1,-1,-1,-1,-1,-,-1,-1,-,
|
||||
4,4,1,dynami:fronti:rebell:fronti2:auflcb:auflcb2,2,2,1,1,2,-1,-,1,-1,-1,-1,-1,-1,-1,1,-2,-1,-1,-1,-1,-1,-1,-1,-1,-,-1,-1,-,
|
||||
4,-,2,-,2,2,1,1,2,-1,-,1,-1,-1,-1,-1,-1,-1,1,-2,-1,-1,-1,-1,-1,-1,-1,-1,-,-1,-1,-,
|
||||
4,-,3,-,2,2,1,1,2,-1,-,1,-1,-1,-1,-1,-1,-1,1,-2,-1,-1,-1,-1,-1,-1,-1,-1,-,-1,-1,-,
|
||||
4,-,4,-,2,2,1,1,2,-1,-,1,-1,-1,-1,-1,-1,-1,1,-2,-1,-1,-1,-1,-1,-1,-1,-1,-,-1,-1,-,
|
||||
|
2
titles/cxb/rss2_data/ExtraStageList.csv
Normal file
2
titles/cxb/rss2_data/ExtraStageList.csv
Normal file
@@ -0,0 +1,2 @@
|
||||
No.,Ver.,ESID,Title,StartTime,EndTime,<EFBFBD>o<EFBFBD><EFBFBD><EFBFBD><EFBFBD>MCODE,<EFBFBD>o<EFBFBD><EFBFBD>RP,<EFBFBD>o<EFBFBD><EFBFBD><EFBFBD>G<EFBFBD>t<EFBFBD>F<EFBFBD>N<EFBFBD>g,Diff(std),Diff(hrd),Diff(mas),Diff(ulm),Diff(esy),GT(nml),GT(svl),GT(ult),GT(nhp),GT(esy),HS(op),HS(val),APP,DAP,F-V,F-H,FT(ac),FT(tab),FT(pho)
|
||||
0,10000,Ex0001,MEGALOMAN[i]A<>o<EFBFBD><6F>,1411697520.0288,1843233520.0288,megaro,0,3,2,2,1,2,2,2,2,1,2,2,1,-2,-1,-1,-1,-1,-1,-1,-1,
|
||||
|
162
titles/cxb/rss2_data/Item/ItemList_Icon.csv
Normal file
162
titles/cxb/rss2_data/Item/ItemList_Icon.csv
Normal file
@@ -0,0 +1,162 @@
|
||||
1000,ic0000,crossbeats.REV,
|
||||
1001,ic1718,crossbeats.REV SUNRiSE,
|
||||
1002,ic0001,曉月 (アカツキ),
|
||||
1289,ic1005,Phase:01 RISING PURPLE1,
|
||||
1290,ic1006,Phase:01 RISING PURPLE2,
|
||||
1291,ic1007,Phase:01 RISING PURPLE3,
|
||||
1292,ic1008,ANIMAX MUSIX特集,
|
||||
1293,ic1010,ANIMAX MUSIX特集 第2弾 II,
|
||||
1294,ic1011,ANIMAX MUSIX特集 第2弾 III,
|
||||
1295,ic1012,ANIMAX MUSIX特集 第2弾 I,
|
||||
1296,ic1013,モンスターハンタークロス特集 I,
|
||||
1297,ic1014,モンスターハンタークロス特集 II,
|
||||
1298,ic1015,モンスターハンタークロス特集 III,
|
||||
1299,ic1016,Phase:02 REBEL YELL1,
|
||||
1300,ic1017,Phase:02 REBEL YELL2,
|
||||
1301,ic1018,Phase:02 REBEL YELL3,
|
||||
1302,ic1020,高知イベント参加,
|
||||
1303,ic1021,幕張イベント参加,
|
||||
1304,ic1022,ストリートファイター特集 I,
|
||||
1305,ic1023,ストリートファイター特集 II,
|
||||
1306,ic1024,ストリートファイター特集 III,
|
||||
1307,ic1025,吉祥寺ロケテスト参加,
|
||||
1308,ic1026,Phase:02 REBEL YELL4,
|
||||
1309,ic1027,新堂敦士コラボイベント I,
|
||||
1310,ic1028,新堂敦士コラボイベント II,
|
||||
1311,ic1029,新堂敦士コラボイベント III,
|
||||
1312,ic1030,第1回クラスチャレンジイベント 金賞,
|
||||
1313,ic1031,第1回クラスチャレンジイベント 銀賞,
|
||||
1314,ic1032,第1回クラスチャレンジイベント 銅賞,
|
||||
1315,ic1033,Phase:03 REMNANT1,
|
||||
1316,ic1034,Phase:03 REMNANT2,
|
||||
1317,ic1035,Phase:03 REMNANT3,
|
||||
1318,ic1036,1st Anniversary,
|
||||
1319,ic1037,WIXOSSコラボイベント I,
|
||||
1320,ic1038,WIXOSSコラボイベント II,
|
||||
1321,ic1039,WIXOSSコラボイベント III,
|
||||
1322,ic1040,クローニャがやってきた☆,
|
||||
1323,ic1041,グルーヴコースター3リンクフィーバーコラボイベント I,
|
||||
1324,ic1042,グルーヴコースター3リンクフィーバーコラボイベント II,
|
||||
1325,ic1043,グルーヴコースター3リンクフィーバーコラボイベント III,
|
||||
1326,ic1044,エスピナス,
|
||||
1327,ic1045,ディスフィロア,
|
||||
1328,ic1046,UNKNOWN(覇種),
|
||||
1329,ic1047,14th Clock(INNOCENT NOIZE特集),
|
||||
1330,ic1048,Hervor(INNOCENT NOIZE特集),
|
||||
1331,ic1049,Hervor(INNOCENT NOIZE特集),
|
||||
1332,ic1050,東方Project楽曲追加記念 霊夢,
|
||||
1333,ic1051,東方Project楽曲追加記念 魔理沙,
|
||||
1334,ic1052,東方Project楽曲追加記念 チルノ,
|
||||
1335,ic1053,東方Project楽曲追加記念 アリス,
|
||||
1336,ic1054,東方Project楽曲追加記念 燐,
|
||||
1337,ic1055,回雪! 氷上の白姫♡燦,
|
||||
1338,ic1056,復活祭2017~ハッピー☆イースター~,
|
||||
1339,ic1057,Phase:04 ROAR 1,
|
||||
1340,ic1058,Phase:04 ROAR 2,
|
||||
1341,ic1059,Phase:04 ROAR 3,
|
||||
1342,ic1060,カプコンであそぼう! クローニャ,
|
||||
1343,ic1061,カプコンであそぼう! 暁月,
|
||||
1344,ic1062,カプコンであそぼう! 燦,
|
||||
1345,ic1063,SUNRiSE おかげさまで1周年☆,
|
||||
1346,ic1064,ニャるほど...,
|
||||
1347,ic1065,ここほれニャンニャン! 人間卒業,
|
||||
1348,ic1066,東方Project楽曲追加記念 レミリア,
|
||||
1349,ic1067,東方Project楽曲追加記念 咲夜,
|
||||
1350,ic1068,東方Project楽曲追加記念 赤蛮奇,
|
||||
1351,ic1069,東方Project楽曲追加記念 こいし,
|
||||
1352,ic1070,東方Project楽曲追加記念 クラウンピース,
|
||||
1353,ic1071,Hallowe'en あかつき,
|
||||
1354,ic1072,Hallowe'en さん,
|
||||
1355,ic1073,クリスマスがやってきたぁ☆2017 暁月,
|
||||
1356,ic1500,北海道,
|
||||
1357,ic1501,青森県,
|
||||
1358,ic1502,岩手県,
|
||||
1359,ic1503,宮城県,
|
||||
1360,ic1504,秋田県,
|
||||
1361,ic1505,山形県,
|
||||
1362,ic1506,福島県,
|
||||
1363,ic1507,茨城県,
|
||||
1364,ic1508,栃木県,
|
||||
1365,ic1509,群馬県,
|
||||
1366,ic1510,埼玉県,
|
||||
1367,ic1511,千葉県,
|
||||
1368,ic1512,東京都,
|
||||
1369,ic1513,神奈川県,
|
||||
1370,ic1514,新潟県,
|
||||
1371,ic1515,山梨県,
|
||||
1372,ic1516,長野県,
|
||||
1373,ic1517,富山県,
|
||||
1374,ic1518,石川県,
|
||||
1375,ic1519,福井県,
|
||||
1376,ic1520,岐阜県,
|
||||
1377,ic1521,静岡県,
|
||||
1378,ic1522,愛知県,
|
||||
1379,ic1523,三重県,
|
||||
1380,ic1524,滋賀県,
|
||||
1381,ic1525,京都府,
|
||||
1382,ic1526,大阪府,
|
||||
1383,ic1527,兵庫県,
|
||||
1384,ic1528,奈良県,
|
||||
1385,ic1529,和歌山県,
|
||||
1386,ic1530,鳥取県,
|
||||
1387,ic1531,島根県,
|
||||
1388,ic1532,岡山県,
|
||||
1389,ic1533,広島県,
|
||||
1390,ic1534,山口県,
|
||||
1391,ic1535,徳島県,
|
||||
1392,ic1536,香川県,
|
||||
1393,ic1537,愛媛県,
|
||||
1394,ic1538,高知県,
|
||||
1395,ic1539,福岡県,
|
||||
1396,ic1540,佐賀県,
|
||||
1397,ic1541,長崎県,
|
||||
1398,ic1542,熊本県,
|
||||
1399,ic1543,大分県,
|
||||
1400,ic1544,宮崎県,
|
||||
1401,ic1545,鹿児島県,
|
||||
1402,ic1546,沖縄県,
|
||||
1403,ic1547,海外,
|
||||
1404,ic1550,CLASS I,
|
||||
1405,ic1551,CLASS II,
|
||||
1406,ic1552,CLASS III,
|
||||
1407,ic1553,CLASS IV,
|
||||
1408,ic1554,CLASS V,
|
||||
1409,ic1555,CLASS VI,
|
||||
1410,ic1556,CLASS VII,
|
||||
1411,ic1557,CLASS VIII,
|
||||
1412,ic1558,CLASS IX,
|
||||
1413,ic1559,CLASS X,
|
||||
1414,ic1560,CLASS XI,
|
||||
1415,ic1561,CLAS XII,
|
||||
1416,ic1562,CLASS XIII,
|
||||
1417,ic1563,CLASS XIV,
|
||||
1418,ic1600,あかつき(春),
|
||||
1419,ic1601,あかつき(夏),
|
||||
1420,ic1602,あかつき(秋),
|
||||
1421,ic1603,あかつき(冬),
|
||||
1422,ic1604,竹,
|
||||
1423,ic1605,鬼,
|
||||
1424,ic1606,目,
|
||||
1425,ic1607,花,
|
||||
1426,ic1608,水ぶくれ,
|
||||
1427,ic1609,雨,
|
||||
1428,ic1610,星,
|
||||
1429,ic1611,圓,
|
||||
1430,ic1612,雲,
|
||||
1431,ic1613,月,
|
||||
1432,ic1614,梅,
|
||||
1433,ic1615,雪,
|
||||
1434,ic1616,ケーキ,
|
||||
1435,ic1617,チョコレート,
|
||||
1436,ic1618,猫,
|
||||
1437,ic1619,プレゼント,
|
||||
1438,ic1620,葉,
|
||||
1439,ic1622,HAPPY NAOKI MAEDA BIRTHDAY,
|
||||
1440,ic1623,七夕,
|
||||
1441,ic1624,ハロウィン,
|
||||
1442,ic1625,クリスマス,
|
||||
1443,ic1626,元日,
|
||||
1444,ic1700,REV友 募集中,
|
||||
1445,ic1701,対戦相手 募集中,
|
||||
1446,ic1702,スコアアタック中,
|
||||
1447,ic1703,上手くなりたい,
|
||||
|
152
titles/cxb/rss2_data/Item/ItemList_Title.csv
Normal file
152
titles/cxb/rss2_data/Item/ItemList_Title.csv
Normal file
@@ -0,0 +1,152 @@
|
||||
2000,crossbeats REV. SUNRiSE,1,
|
||||
2001,crossbeats REV.,1,
|
||||
2002,SUNSET,5,
|
||||
2003,ハンターデビュー,1,
|
||||
2004,隣のハンター,1,
|
||||
2005,評判のハンター,2,
|
||||
2006,かなりのハンター,2,
|
||||
2007,素晴らしいハンター,3,
|
||||
2008,一流ハンター,3,
|
||||
2009,幻のハンター,4,
|
||||
2010,ハンター師匠,4,
|
||||
2011,\INNOVATION/,5,
|
||||
2012,10階の住人,1,
|
||||
2013,20階の住人,2,
|
||||
2014,30階の住人,2,
|
||||
2015,40階の住人,2,
|
||||
2016,50階の住人,2,
|
||||
2017,60階の住人,3,
|
||||
2018,70階の住人,3,
|
||||
2019,80階の住人,3,
|
||||
2020,90階の住人,4,
|
||||
2021,フルコン芸術家[レベル1],1,
|
||||
2022,フルコン芸術家[レベル2],2,
|
||||
2023,フルコン芸術家[レベル3],2,
|
||||
2024,フルコン芸術家[レベル4],2,
|
||||
2025,フルコン芸術家[レベル5],2,
|
||||
2026,フルコン芸術家[レベル6],5,
|
||||
2027,ULTIMATE使い[レベル1],1,
|
||||
2028,ULTIMATE使い[レベル2],2,
|
||||
2029,ULTIMATE使い[レベル3],2,
|
||||
2030,ULTIMATE使い[レベル4],2,
|
||||
2031,ULTIMATE使い[レベル5],3,
|
||||
2032,ULTIMATE使い[レベル6],3,
|
||||
2033,ULTIMATE賢者[レベル1],2,
|
||||
2034,ULTIMATE賢者[レベル2],2,
|
||||
2035,ULTIMATE賢者[レベル3],3,
|
||||
2036,ULTIMATE賢者[レベル4],3,
|
||||
2037,ULTIMATE賢者[レベル5],4,
|
||||
2038,ULTIMATE賢者[レベル6],4,
|
||||
2039,100%マニア[レベル1],1,
|
||||
2040,100%マニア[レベル2],2,
|
||||
2041,100%マニア[レベル3],2,
|
||||
2042,100%マニア[レベル4],2,
|
||||
2043,100%マニア[レベル5],5,
|
||||
2044,そこそこできます,1,
|
||||
2045,まだまだできます,2,
|
||||
2046,まぁまぁできます,3,
|
||||
2047,色々できます,3,
|
||||
2048,カンペキにできます,5,
|
||||
2049,MASTER達成率99%余裕でした(笑),3,
|
||||
2050,UNLIMITED達成率99%余裕でした(白目),3,
|
||||
2051,ちょこっとSUNRISE,2,
|
||||
2052,まだまだSUNRISE,2,
|
||||
2053,いろいろSUNRISE,2,
|
||||
2054,もっとSUNRISE,2,
|
||||
2055,たくさんSUNRISE,2,
|
||||
2056,今日も一日 dxb,3,
|
||||
2057,クロビってる?,3,
|
||||
2058,dxb dxb dxb dxb,3,
|
||||
2059,帰ってきた!?イノベーター,4,
|
||||
2060,イノベーションおじさん,5,
|
||||
2061,勝負師の隣人,1,
|
||||
2062,謎めいた勝負師,1,
|
||||
2063,地元の勝負師,2,
|
||||
2064,人気者の勝負師,5,
|
||||
2065,有名な勝負師,5,
|
||||
2066,裏MANIA I 覇者,5,
|
||||
2067,裏MANIA II 覇者,5,
|
||||
2068,裏İstanbul覇者,5,
|
||||
2069,真・裏MANIA覇者,5,
|
||||
2070,真・裏MANIA覇者 極,5,
|
||||
2071,裏2020覇者,4,
|
||||
2072,日本全国ノ魂ヲ得タ者,5,
|
||||
2073,ムリよぉ これ・・・,2,
|
||||
2074,刹那の見切り,3,
|
||||
2075,おあついのでごちゅういください,3,
|
||||
2076,あるよな?,5,
|
||||
2077,確実にゴッ!!,5,
|
||||
2078,SEE YOU AGAINやな,5,
|
||||
2079,トリックマスター,3,
|
||||
2080,岡崎ロケテスター,1,
|
||||
2081,JAEPO2016勢,5,
|
||||
2082,吉祥寺ロケテスター,1,
|
||||
2083,初モノ食い,3,
|
||||
2084,MY FIRST STORY特集 TOP10,5,
|
||||
2085,MY FIRST STORY特集 TOP30,5,
|
||||
2086,MY FIRST STORY特集 TOP50,4,
|
||||
2087,MY FIRST STORY特集 TOP70,5,
|
||||
2088,MY FIRST STORY特集 TOP100,5,
|
||||
2089,MY FIRST STORY特集 TOP300,5,
|
||||
2090,MY FIRST STORY特集 TOP500,5,
|
||||
2091,MY FIRST STORY特集 TOP700,5,
|
||||
2092,MY FIRST STORY特集 TOP1000,2,
|
||||
2093,ライジングパープラー,1,
|
||||
2094,世界ニ暁鐘ヲ響カセヨ,2,
|
||||
2095,「いつの日か・・・・」そう言って旅立つ僕,3,
|
||||
2096,頷いて何度も手を振る君,4,
|
||||
2097,僕は此処で君を待つ,5,
|
||||
2098,RISING PURPLE 覇者,5,
|
||||
2099,RISING PURPLE 四天王,5,
|
||||
2100,RISING PURPLE 豪傑,5,
|
||||
2101,RISING PURPLE 猛者,5,
|
||||
2102,RISING PURPLE 強者,4,
|
||||
2103,RISING PURPLE 名人,5,
|
||||
2104,RISING PURPLE 達人,5,
|
||||
2105,RISING PURPLE 精鋭,5,
|
||||
2106,RISING PURPLE 入賞,2,
|
||||
2107,アニメミュージック通になりました,2,
|
||||
2108,ディノバルド,1,
|
||||
2109,ニャンター,2,
|
||||
2110,狩魂,3,
|
||||
2111,MONSTER HUNTER,4,
|
||||
2112,モンスターハンタークロス,5,
|
||||
2113,レベルイェーラー,2,
|
||||
2114,旅立つ背中にユルギナイ決意,2,
|
||||
2115,you're not alone...,3,
|
||||
2116,キミに 伝えたいよ,4,
|
||||
2117,キミと 駆け抜けてく,5,
|
||||
2118,帰ってきたレベルイェーラー,3,
|
||||
2119,REBEL YELL 覇者,5,
|
||||
2120,REBEL YELL 四天王,5,
|
||||
2121,REBEL YELL 豪傑,5,
|
||||
2122,REBEL YELL 猛者,5,
|
||||
2123,REBEL YELL 強者,4,
|
||||
2124,REBEL YELL 名人,5,
|
||||
2125,REBEL YELL 達人,5,
|
||||
2126,REBEL YELL 精鋭,5,
|
||||
2127,REBEL YELL 入賞,2,
|
||||
2128,昇龍拳!,1,
|
||||
2129,ゴメンね!,2,
|
||||
2130,神脚美麗,3,
|
||||
2131,俺より強い奴に会いに行く,4,
|
||||
2132,The World Warrior,5,
|
||||
2133,グルコス勢,1,
|
||||
2134,REV勢でヴ勢,5,
|
||||
2135,お断リンカちゃん,5,
|
||||
2136,I v リンカ,5,
|
||||
2137,I v Groove Coaster,5,
|
||||
2138,Groove Master?,5,
|
||||
2139,イノベーターの弟子,2,
|
||||
2140,駆け出しイノベーター,1,
|
||||
2141,ミドルイノベーター,2,
|
||||
2142,立派なイノベーター,2,
|
||||
2143,ベテンランイノベーター,2,
|
||||
2144,憧れのイノベーター,3,
|
||||
2145,特級イノベーター,3,
|
||||
2146,イノベーター超人,4,
|
||||
2147,ウルトラ☆イノベーター,4,
|
||||
2148,カリスマ☆イノベーター,5,
|
||||
2149,\INNOVATION ~改~/,5,
|
||||
2150,初代レヴ勢,1,
|
||||
2151,夜明け前,1,
|
||||
|
89
titles/cxb/rss2_data/License.csv
Normal file
89
titles/cxb/rss2_data/License.csv
Normal file
@@ -0,0 +1,89 @@
|
||||
英雄の証 ~ 4Version/カプコンサウンドチーム
|
||||
© CAPCOM CO., LTD. ALL RIGHTS RESERVED.
|
||||
|
||||
灼熱の刃 ~ ディノバルド
|
||||
© CAPCOM CO., LTD. ALL RIGHTS RESERVED.
|
||||
|
||||
古代の息吹き
|
||||
© CAPCOM CO., LTD. ALL RIGHTS RESERVED.
|
||||
|
||||
Theme of Ryu -SFIV Arrange-/Capcom Sound Team / Hideyuki Fukasawa
|
||||
©CAPCOM U.S.A., INC. ALL RIGHTS RESERVED.
|
||||
|
||||
Ultra Street Fighter IV/Hideyuki Fukasawa
|
||||
©CAPCOM U.S.A., INC. ALL RIGHTS RESERVED.
|
||||
|
||||
Theme of Chun-Li -SFIV Arrange-/Capcom Sound Team / Hideyuki Fukasawa
|
||||
©CAPCOM U.S.A., INC. ALL RIGHTS RESERVED.
|
||||
|
||||
Street Fighter V/Masahiro Aoki
|
||||
©CAPCOM U.S.A., INC. ALL RIGHTS RESERVED.
|
||||
|
||||
英雄の証/MHF-G 2015 Version
|
||||
© CAPCOM CO., LTD. ALL RIGHTS RESERVED.
|
||||
|
||||
異ヲ辿リシモノ -対峙-/若林タカツグ
|
||||
© CAPCOM CO., LTD. ALL RIGHTS RESERVED.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
QLWA(グルーヴコースター 3 リンクフィーバーより)/t+pazolite
|
||||
© TAITO CORPORATION 1978,2016 ALL RIGHTS RESERVED.
|
||||
|
||||
グルーヴ・ザ・ハート(グルーヴコースター 3 リンクフィーバーより)/ビートまりお+あまね
|
||||
© TAITO CORPORATION 1978,2016 ALL RIGHTS RESERVED.
|
||||
|
||||
Got hive of Ra(グルーヴコースター 3 リンクフィーバーより)/E.G.G.
|
||||
© TAITO CORPORATION 1978,2016 ALL RIGHTS RESERVED.
|
||||
|
||||
LINK LINK FEVER!!!(グルーヴコースター 3 リンクフィーバーより)/リンカ (CV:豊田萌絵)
|
||||
© TAITO CORPORATION 1978,2016 ALL RIGHTS RESERVED.
|
||||
|
||||
SAKURA EXHAUST/RIO HAMAMOTO(BNSI)「太鼓の達人」より
|
||||
©BANDAI NAMCO Entertainment Inc.
|
||||
|
||||
カリソメ(グルーヴコースター 3 リンクフィーバーより)/コンプ(豚乙女) × ichigo(岸田教団 & THE明星ロケッツ)
|
||||
©上海アリス幻樂団
|
||||
© TAITO CORPORATION 1978,2016 ALL RIGHTS RESERVED.
|
||||
|
||||
そして誰もいなくなった(グルーヴコースター 3 リンクフィーバーより)/コバヤシユウヤ(IOSYS) × あにー(TaNaBaTa)
|
||||
©上海アリス幻樂団
|
||||
© TAITO CORPORATION 1978,2016 ALL RIGHTS RESERVED.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Font Design by Fontworks Inc.
|
||||
DynaFont is a registered Trademark of DynaComware Taiwan Inc.
|
||||
Ogg Vorbis is Copyright ©2015, Xiph. Org Foundation
|
||||
The font used on this product is provided by Hakusyu Fonts co,.Ltd.
|
||||
キャスティング・ライツクリアランス
|
||||
株式会社ビーイング
|
||||
JASRAC許諾第V-1512134号
|
||||
e-License許諾番号GS35000
|
||||
VOCALOID and VOCALO are trademarks of Yamaha Corporation.
|
||||
|
||||
OMNiMIX v1.2
|
||||
|
4
titles/cxb/rss2_data/MissionList.csv
Normal file
4
titles/cxb/rss2_data/MissionList.csv
Normal file
@@ -0,0 +1,4 @@
|
||||
MissionID,Text,Type,Value_op,Value,Mcode,Difficulty_op,Difficulty,Level_op,Level,Grade_op,Grade,GaugeType_op,GaugeType,HiSpeed_op,HiSpeed,APP,DAP,FlipV,FlipH,Fullcombo,Combo_op,Combo,ClearRate_op,ClearRate,StartTime,StartEnd,District,CoupleId
|
||||
0,-,-1,-1,-1,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1443233520,1843233520,-1,-1,-1,-1,-1,-1,-1,-1,
|
||||
1,-,-1,-1,-1,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1443233520,1843233520,-1,-1,-1,-1,-1,-1,-1,-1,
|
||||
2,ExtraStage<EFBFBD><EFBFBD>MEGALOMAN[i]A<><41><EFBFBD>N<EFBFBD><4E><EFBFBD>A<EFBFBD><41><EFBFBD><EFBFBD>,0,-1,-1,megaro,-1,-1,-1,-1,1,9,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1443233520,1843233520,-1,-1,-1,-1,-1,-1,-1,-1,
|
||||
|
473
titles/cxb/rss2_data/MusicArchiveList.csv
Normal file
473
titles/cxb/rss2_data/MusicArchiveList.csv
Normal file
@@ -0,0 +1,473 @@
|
||||
tutori2,10000,100000,10,10,10,10,10,0,0,0,0,0,0,100000,
|
||||
tutori3,10000,100000,10,10,10,10,10,0,0,0,0,0,0,100000,
|
||||
tutori4,10000,10100000,10,10,10,10,10,0,0,0,0,0,0,100000,
|
||||
tutori6,10050,10100000,10,10,10,10,10,0,0,0,0,0,0,100000,
|
||||
tutori8,10000,800000,30,150,350,0,0,1,1,1,0,0,0,100000,
|
||||
sateli,10000,800000,280,490,770,820,170,1,1,1,1,1,0,100300,
|
||||
nature,10000,40802000,140,240,530,750,50,1,1,1,1,1,3,100301,
|
||||
purple,10000,800000,220,540,640,730,140,1,1,1,1,1,0,100307,
|
||||
hearts,10000,800000,180,380,680,770,80,1,1,1,1,1,0,100308,
|
||||
phasea,10000,800000,160,380,650,750,90,1,1,1,1,1,0,100310,
|
||||
planet,10000,802000,170,360,490,710,100,1,1,1,1,1,1,100311,
|
||||
firefo,10000,800000,130,360,570,830,70,1,1,1,1,1,0,100314,
|
||||
kounen,10000,808000,210,400,660,780,100,1,1,1,1,1,3,100315,
|
||||
essenc,10000,800000,250,500,700,760,110,1,1,1,1,1,0,100316,
|
||||
summer,10000,800000,230,570,790,890,130,1,1,1,1,1,0,100317,
|
||||
tanosi,10000,802000,250,450,700,800,160,1,1,1,1,1,7,100319,
|
||||
picora,10000,802000,150,380,660,750,80,1,1,1,1,1,1,100320,
|
||||
devils,10000,800000,270,400,800,0,150,1,1,1,0,1,0,100323,
|
||||
techno,10000,802000,160,380,510,740,90,1,1,1,1,1,1,100328,
|
||||
glowww,10000,40802000,170,280,420,600,80,1,1,1,1,1,7,100335,
|
||||
powerr,10000,800000,190,380,690,790,120,1,1,1,1,1,0,100336,
|
||||
amater,10000,800000,210,480,650,790,130,1,1,1,1,1,0,100340,
|
||||
advers,10000,802000,150,480,710,830,90,1,1,1,1,1,1,100349,
|
||||
venera,10000,800000,150,430,680,750,80,1,1,1,1,1,0,100353,
|
||||
dazaii,10000,803000,210,430,730,770,120,1,1,1,1,1,3,100357,
|
||||
thesig,10000,802000,210,380,560,730,100,1,1,1,1,1,3,100365,
|
||||
hosita,10000,802000,160,360,480,650,100,1,1,1,1,1,9999,100344,
|
||||
bluede,10000,802000,220,410,580,700,120,1,1,1,1,1,5,100372,
|
||||
emerao,10000,802000,300,530,850,0,190,1,1,1,0,1,1,100373,
|
||||
megaro,10000,800000,550,800,930,980,0,1,1,1,1,1,0,100129,
|
||||
angeli,10000,800000,330,560,820,900,220,1,1,1,1,1,0,100330,
|
||||
moonli,10000,803000,140,430,610,730,80,1,1,1,1,1,9999,100342,
|
||||
yumemi,10000,802000,120,350,590,690,60,1,1,1,1,1,9999,100369,
|
||||
pinkym,10000,800000,240,440,740,810,160,1,1,1,1,1,0,100348,
|
||||
dynami2,10000,804000,180,510,780,800,80,1,1,1,1,1,0,100370,
|
||||
reseed3,10000,800000,200,550,760,800,100,1,1,1,1,1,0,100306,
|
||||
toucho,10000,802000,90,280,440,650,50,1,1,1,1,1,1,100002,
|
||||
ameoto,10000,802000,120,260,470,630,60,1,1,1,1,1,1,100003,
|
||||
kimito,10000,800000,100,260,490,660,70,1,1,1,1,1,1,100004,
|
||||
giantk,10000,808000,250,530,710,780,110,1,1,1,1,1,3,100021,
|
||||
breakd,10000,803000,230,340,570,740,110,1,1,1,1,1,2,100015,
|
||||
dazzlj,10000,802000,350,600,800,900,160,1,1,1,1,1,1,100028,
|
||||
ididid,10000,802000,290,460,720,810,160,1,1,1,1,1,1,100093,
|
||||
sundro,10000,808000,240,470,750,830,140,1,1,1,1,1,3,100042,
|
||||
auflcb,10000,800000,130,430,810,0,80,1,1,1,0,1,0,100063,
|
||||
dennou,10000,801000,290,600,760,870,150,1,1,1,1,1,1,100045,
|
||||
hokoro,10000,801000,290,570,710,810,140,1,1,1,1,1,1,100068,
|
||||
landin,10000,802000,260,330,490,670,130,1,1,1,1,1,1,100005,
|
||||
tomorr,10003,803000,150,240,440,620,80,1,1,1,1,1,7,100362,
|
||||
daybyd,10003,803000,130,260,380,590,60,1,1,1,1,1,7,100363,
|
||||
syoujo,10003,802000,190,350,530,780,80,1,1,1,1,1,1,100309,
|
||||
destru,10003,800000,190,410,620,720,100,1,1,1,1,1,0,100352,
|
||||
gingat,10005,800000,130,290,460,610,50,1,1,1,1,1,0,100041,
|
||||
daisak,10005,800000,280,360,600,750,120,1,1,1,1,1,0,100066,
|
||||
paradi,10005,801000,160,280,530,640,100,1,1,1,1,1,3,100376,
|
||||
pigooo,10005,800000,190,340,590,840,130,1,1,1,1,1,6,100377,
|
||||
season,10006,1607000,150,280,440,650,80,1,1,1,1,1,1,100386,
|
||||
canonn,10006,1607000,170,280,500,830,70,1,1,1,1,1,1,100387,
|
||||
rhapso,10006,1607000,180,340,620,740,60,1,1,1,1,1,1,100388,
|
||||
turkis,10006,1607000,190,390,640,840,110,1,1,1,1,1,1,100389,
|
||||
biohaz,10006,1609000,150,300,510,640,60,1,1,1,1,1,9999,100390,
|
||||
monhan,10006,1609000,100,260,360,540,50,1,1,1,1,1,9999,100391,
|
||||
gyakut2,10006,1609000,130,350,430,560,50,1,1,1,1,1,9999,100392,
|
||||
street,10006,1609000,130,340,470,660,70,1,1,1,1,1,9999,100393,
|
||||
rockma2,10006,1609000,210,340,490,760,140,1,1,1,1,1,9999,100394,
|
||||
auflcb3,10007,802000,160,360,660,860,60,1,1,1,1,1,9999,100374,
|
||||
irohaa,10008,800000,190,410,550,760,120,1,1,1,1,1,0,100325,
|
||||
ibelie,10008,800000,270,470,780,820,140,1,1,1,1,1,0,100326,
|
||||
monhan2,10014,1609000,120,240,430,680,60,1,1,1,1,1,9999,100409,
|
||||
monhan3,10014,1609000,180,280,450,730,80,1,1,1,1,1,9999,100410,
|
||||
yejiii,10019,800000,220,360,630,790,100,1,1,1,1,1,0,100418,
|
||||
histor,10019,800000,200,360,560,820,110,1,1,1,1,1,0,100419,
|
||||
chaset,10019,803000,150,310,580,760,80,1,1,1,1,1,9999,100338,
|
||||
metall,10021,803000,160,280,570,770,80,1,1,1,1,1,1,100412,
|
||||
letmeg,10021,802000,180,320,500,720,120,1,1,1,1,1,1,100327,
|
||||
hontno,10022,801000,120,260,530,660,90,1,1,1,1,1,1,100010,
|
||||
azitat,10022,800000,240,550,700,830,140,1,1,1,1,1,0,100024,
|
||||
hellom,10022,801000,180,370,580,720,70,1,1,1,1,1,1,100360,
|
||||
laught,10022,801000,200,350,510,710,70,1,1,1,1,1,1,100337,
|
||||
bluede2,10024,801000,160,360,560,810,90,1,1,1,1,1,1,100426,
|
||||
street2,10025,1609000,210,370,550,730,140,1,1,1,1,1,9999,100423,
|
||||
street3,10025,1609000,240,380,570,740,130,1,1,1,1,1,9999,100424,
|
||||
street4,10025,1609000,170,320,510,780,110,1,1,1,1,1,9999,100425,
|
||||
silbur,10026,801000,200,350,540,750,90,1,1,1,1,1,1,100421,
|
||||
spicaa,10026,801000,230,360,560,780,100,1,1,1,1,1,1,100422,
|
||||
tricko,10050,800000,230,340,560,750,110,1,1,1,1,1,0,100438,
|
||||
thisis,10050,800000,230,370,600,740,120,1,1,1,1,1,4,100435,
|
||||
rising,10050,800000,230,380,660,850,140,1,1,1,1,1,4,100436,
|
||||
orbita,10050,803000,200,380,620,740,120,1,1,1,1,1,5,100411,
|
||||
dddddd,10050,800000,130,330,530,690,90,1,1,1,1,1,5,100433,
|
||||
pyroma,10050,800000,220,420,700,840,80,1,1,1,1,1,4,100427,
|
||||
touchn,10050,804000,270,460,680,860,150,1,1,1,1,1,8,100312,
|
||||
onlyll,10050,802000,210,320,560,690,130,1,1,1,1,1,9999,100359,
|
||||
upside,10050,802000,180,270,480,670,80,1,1,1,1,1,1,100313,
|
||||
istanb,10050,806000,410,490,900,980,230,1,1,1,1,1,3,100322,
|
||||
memori,10050,803000,260,380,650,840,130,1,1,1,1,1,9999,100371,
|
||||
straye,10050,800000,250,360,610,730,140,1,1,1,1,1,4,100350,
|
||||
rearhy,10050,802000,170,320,520,690,70,1,1,1,1,1,9999,100358,
|
||||
hereco,10050,801000,160,340,510,680,110,1,1,1,1,1,4,100432,
|
||||
thesun,10050,800000,250,400,720,870,130,1,1,1,1,1,4,100441,
|
||||
sayona,10050,803000,200,340,530,710,100,1,1,1,1,1,9999,100343,
|
||||
flameu,10050,801000,180,360,570,650,100,1,1,1,1,1,1,100380,
|
||||
raidon,10050,801000,300,380,580,870,130,1,1,1,1,1,1,100434,
|
||||
riseup,10050,800000,180,410,670,770,70,1,1,1,1,1,4,100437,
|
||||
sunglo,10050,801000,180,390,590,720,100,1,1,1,1,1,7,100431,
|
||||
kinbos,10050,800000,220,380,640,770,120,1,1,1,1,1,3,100439,
|
||||
densho,10050,800000,280,420,740,900,170,1,1,1,1,1,5,100430,
|
||||
aiohoo,10050,101000,180,290,420,660,100,1,1,1,1,1,1,100471,
|
||||
entert,10050,1607000,150,330,540,870,90,1,1,1,1,1,6,100472,
|
||||
takeit,10050,800000,200,380,650,830,120,1,1,1,1,1,4,100457,
|
||||
harmon,10050,801000,200,360,490,650,120,1,1,1,1,1,7,100449,
|
||||
avemar,10050,1607000,160,310,530,750,80,1,1,1,1,1,5,100428,
|
||||
mateki,10050,1607000,180,350,540,790,100,1,1,1,1,1,5,100429,
|
||||
lovech,10050,801000,160,300,460,680,80,1,1,1,1,1,7,100445,
|
||||
akaihe,10051,101000,210,320,500,690,80,1,1,1,1,1,1,100473,
|
||||
juicys,10051,101000,180,260,450,830,100,1,1,1,1,1,7,100474,
|
||||
codena,10055,801000,180,350,480,680,90,1,1,1,1,1,1,100468,
|
||||
groove,10055,1601000,220,400,520,730,100,1,1,1,1,1,103,100475,
|
||||
kansho,10056,801000,130,270,550,740,70,1,1,1,1,1,9999,100450,
|
||||
overcl2,10057,809000,230,420,580,740,120,1,1,1,1,1,3,100486,
|
||||
taikoo,10058,1609000,130,390,500,750,60,1,1,1,1,1,104,100483,
|
||||
groove2,10058,1601000,150,400,580,850,90,1,1,1,1,1,9999,100480,
|
||||
overcl,10059,809000,120,350,570,860,80,1,1,1,1,1,4,100487,
|
||||
notoss,10061,800000,120,420,650,910,80,1,1,1,1,1,4,100466,
|
||||
machup,10061,801000,170,320,410,710,90,1,1,1,1,1,6,100447,
|
||||
groove3,10062,2009000,180,340,640,850,100,1,1,1,1,1,105,100488,
|
||||
groove4,10062,2009000,220,350,500,750,120,1,1,1,1,1,106,100489,
|
||||
everyt,10063,801000,220,300,740,0,130,1,1,1,0,1,5,100482,
|
||||
lespri,10063,800000,250,570,800,0,130,1,1,1,0,1,5,100465,
|
||||
groove5,10064,1609000,240,370,670,0,140,1,1,1,0,1,0,100491,
|
||||
honeyo,10064,802000,320,630,880,930,240,1,1,1,1,1,6,100490,
|
||||
groove6,10065,1609000,300,640,790,0,220,1,1,1,0,1,3,100494,
|
||||
sunglo2,10065,801000,210,360,670,810,110,1,1,1,1,1,6,100495,
|
||||
fourte,10066,800000,240,500,740,800,140,1,1,1,1,1,5,100498,
|
||||
monhan4,10066,1609000,120,400,510,620,50,1,1,1,1,1,9999,100496,
|
||||
monhan5,10066,1609000,120,350,420,650,100,1,1,1,1,1,9999,100497,
|
||||
darkpa,10068,800000,260,390,700,840,160,1,1,1,1,1,3,100504,
|
||||
hervor,10068,800000,280,390,730,810,180,1,1,1,1,1,5,100505,
|
||||
cirnon,10069,409000,240,400,600,790,170,1,1,1,1,1,9999,100499,
|
||||
marisa,10069,409000,250,410,620,850,180,1,1,1,1,1,9999,100500,
|
||||
yakini,10069,409000,250,340,580,820,130,1,1,1,1,1,9999,100501,
|
||||
justic,10069,409000,190,360,570,830,140,1,1,1,1,1,1,100502,
|
||||
sintyo,10069,409000,250,460,700,830,160,1,1,1,1,1,6,100503,
|
||||
ascand,10069,800000,320,540,800,900,180,1,1,1,1,1,0,100347,
|
||||
blackl,10069,800000,190,410,730,840,120,1,1,1,1,1,3,100506,
|
||||
childr,10069,800000,240,390,560,620,140,1,1,1,1,1,0,100043,
|
||||
tsukai,10069,802000,190,440,720,760,130,1,1,1,1,1,1,100044,
|
||||
rideon,10069,802000,290,410,600,800,160,1,1,1,1,1,1,100067,
|
||||
minest,10070,800000,210,390,620,760,130,1,1,1,1,1,1,100507,
|
||||
ordine,10070,800000,250,430,730,820,190,1,1,1,1,1,3,100508,
|
||||
dreamw,10072,800000,260,370,620,750,160,1,1,1,1,1,0,100509,
|
||||
minerv,10072,800000,320,610,900,0,250,1,1,1,0,1,4,100510,
|
||||
wannab,10073,800000,90,230,400,650,50,1,1,1,1,1,3,100001,
|
||||
sekain,10073,800000,260,390,690,780,160,1,1,1,1,1,1,100511,
|
||||
farawa,10074,800000,230,360,600,760,180,1,1,1,1,1,7,100512,
|
||||
crissc,10076,800000,370,630,860,910,170,1,1,1,1,1,4,100100,
|
||||
speedy,10076,800000,220,550,770,0,110,1,1,1,0,1,8,100324,
|
||||
xxxrev,10076,800000,210,340,560,730,150,1,1,1,1,1,0,100513,
|
||||
higame,10076,800000,200,300,580,710,130,1,1,1,1,1,3,100016,
|
||||
theepi,10076,800000,190,400,610,750,140,1,1,1,1,1,3,100022,
|
||||
anomie,10076,800000,220,380,610,770,150,1,1,1,1,1,0,100023,
|
||||
crocus,10077,800000,260,370,600,720,150,1,1,1,1,1,7,100524,
|
||||
lavien,10077,800000,270,410,710,800,180,1,1,1,1,1,5,100546,
|
||||
megaro2,10100,800000,0,0,990,1000,0,0,0,1,1,0,4,100361,
|
||||
chipnn,10077,800000,270,340,610,790,160,1,1,1,1,1,6,100541,
|
||||
yiyoyi,10080,800000,140,330,560,700,70,1,1,1,1,1,3,100007,
|
||||
binary,10080,800000,170,350,640,890,140,1,1,1,1,1,1,100014,
|
||||
makaim,10078,2400000,300,500,770,0,230,1,1,1,0,1,3,100054,
|
||||
gyakut,10078,2400000,150,210,460,640,60,1,1,1,1,1,1,100055,
|
||||
basara,10078,2400000,190,370,640,730,140,1,1,1,1,1,0,100056,
|
||||
daybre,10080,201000,160,320,530,720,90,1,1,1,1,1,0,100514,
|
||||
umiyur,10080,201000,140,280,460,640,80,1,1,1,1,1,1,100515,
|
||||
chalur,10080,201000,180,400,600,720,140,1,1,1,1,1,9999,100516,
|
||||
melanc,10080,201000,150,300,500,630,100,1,1,1,1,1,7,100517,
|
||||
konofu,10080,201000,230,350,620,810,110,1,1,1,1,1,1,100518,
|
||||
bladem,10078,800000,280,380,630,750,170,1,1,1,1,1,4,100526,
|
||||
southw,10078,800000,180,270,570,680,120,1,1,1,1,1,7,100536,
|
||||
ryuuse,10078,800000,210,320,590,0,130,1,1,1,0,1,1,100537,
|
||||
redhea,10081,401000,270,390,590,720,100,1,1,1,1,1,0,100519,
|
||||
warnin,10081,401000,250,360,610,740,120,1,1,1,1,1,9999,100520,
|
||||
topsec,10081,401000,240,340,510,640,130,1,1,1,1,1,9999,100521,
|
||||
dddoll,10081,401000,260,380,550,630,140,1,1,1,1,1,9999,100522,
|
||||
tracee,10081,401000,190,310,490,650,90,1,1,1,1,1,0,100548,
|
||||
drivin,10100,800000,230,400,660,760,80,1,1,1,1,1,7,100111,
|
||||
genzit,10100,800000,180,460,730,820,120,1,1,1,1,1,0,100118,
|
||||
aerial,10100,800000,110,280,560,710,50,1,1,1,1,1,1,100039,
|
||||
einher,10100,800000,290,400,740,800,160,1,1,1,1,1,4,100532,
|
||||
ariell,10100,800000,190,320,640,730,150,1,1,1,1,1,7,100540,
|
||||
firstl,10100,800000,250,360,650,770,170,1,1,1,1,1,1,100542,
|
||||
heartl,10100,800000,230,300,640,0,110,1,1,1,0,1,1,100550,
|
||||
erasee,10100,800000,220,350,580,680,120,1,1,1,1,1,0,100551,
|
||||
regene,10100,800000,200,300,560,700,130,1,1,1,1,1,0,100530,
|
||||
allelu,10100,800000,280,350,640,750,160,1,1,1,1,1,9999,100549,
|
||||
lighto,10100,800000,250,330,600,740,120,1,1,1,1,1,1,100543,
|
||||
termin,10100,800000,240,340,630,790,130,1,1,1,1,1,7,100552,
|
||||
ryuuse2,10101,800000,200,360,620,750,130,1,1,1,1,1,1,100556,
|
||||
prizmm,10102,800000,210,300,540,0,120,1,1,1,0,1,1,100547,
|
||||
samalv,10102,800000,190,390,580,770,130,1,1,1,1,1,6,100098,
|
||||
palpit,10102,800000,290,550,840,920,180,1,1,1,1,1,8,100544,
|
||||
gainen,10102,801000,260,370,630,0,150,1,1,1,0,1,9999,100558,
|
||||
moonsh,10102,800000,230,360,620,0,100,1,1,1,0,1,3,100525,
|
||||
moonki,10102,800000,250,390,640,0,130,1,1,1,0,1,1,100559,
|
||||
moonri,10102,800000,210,380,580,850,140,1,1,1,1,1,0,100560,
|
||||
goaway,10103,800000,230,450,590,700,100,1,1,1,1,1,0,100561,
|
||||
itback,10103,800000,230,380,710,0,120,1,1,1,0,1,3,100567,
|
||||
redhhh,10103,800000,240,390,770,0,130,1,1,1,0,1,4,100569,
|
||||
actual,10103,800000,250,380,800,0,140,1,1,1,0,1,0,100568,
|
||||
zonzon,10066,800000,160,330,630,670,50,1,1,1,1,1,1,100367,
|
||||
memorm,10103,800000,260,370,730,0,150,1,1,1,0,1,0,100565,
|
||||
kokoro,10103,800000,200,430,650,690,120,1,1,1,1,1,1,100554,
|
||||
poweri,10103,800000,260,490,750,910,130,1,1,1,1,1,4,100563,
|
||||
nisenn,10103,800000,0,0,760,0,0,0,0,1,0,0,8,100555,
|
||||
yukiya,10103,800000,190,400,610,0,110,1,1,1,0,1,3,100096,
|
||||
zankyo,10103,800000,180,380,570,740,100,1,1,1,1,1,5,100124,
|
||||
overlp,10103,800000,170,300,510,0,90,1,1,1,0,1,7,100119,
|
||||
fracta,10103,800000,310,520,830,0,190,1,1,1,0,1,3,100529,
|
||||
cantst,10103,800000,230,420,650,0,110,1,1,1,0,1,0,100455,
|
||||
primaa,10104,800000,180,350,540,750,120,1,1,1,1,1,0,100527,
|
||||
cyberg,10104,801000,230,350,600,0,120,1,1,1,0,1,0,100448,
|
||||
freakw,10104,800000,220,420,650,660,130,1,1,1,1,1,0,100018,
|
||||
aquali,10104,800000,160,340,580,0,110,1,1,1,0,1,4,100006,
|
||||
takesc,10104,800000,270,370,690,0,100,1,1,1,0,1,1,100572,
|
||||
cthugh,10104,800000,250,480,730,0,140,1,1,1,0,1,0,100531,
|
||||
thetaa,10104,800000,210,340,620,0,110,1,1,1,0,1,1,100571,
|
||||
nekofu,10064,1607000,220,340,570,800,100,1,1,1,1,1,6,100493,
|
||||
howtru,10074,800000,120,250,530,740,80,1,1,1,1,1,0,100057,
|
||||
romanc,10104,800000,280,550,780,0,100,1,1,1,0,1,0,100047,
|
||||
kotobu,10104,800000,320,710,900,0,250,1,1,1,0,1,0,100573,
|
||||
xmasss,10017,1607000,180,380,560,770,80,1,1,1,1,1,101,100417,
|
||||
galaxy,10000,101000,160,320,430,670,100,1,1,1,1,1,0,100600,
|
||||
rebell,10000,800000,490,630,910,0,0,1,1,1,0,0,0,100601,
|
||||
anothe,10000,800000,270,370,730,760,0,1,1,1,1,0,0,100602,
|
||||
addict,10000,800000,200,340,520,620,0,1,1,1,1,0,0,100603,
|
||||
dirtyy,10000,800000,150,280,590,740,0,1,1,1,1,0,0,100604,
|
||||
levelf,10000,101000,110,280,450,630,50,1,1,1,1,1,0,100605,
|
||||
omnive,10000,800000,340,520,830,860,0,1,1,1,1,0,0,100606,
|
||||
kakuse,10000,800000,170,550,750,0,0,1,1,1,0,0,0,100607,
|
||||
unbeli,10000,101000,130,260,380,620,70,1,1,1,1,1,0,100608,
|
||||
sonzai,10000,800000,260,400,590,660,0,1,1,1,1,0,0,100609,
|
||||
okonik,10000,800000,260,450,670,0,0,1,1,1,0,0,0,100610,
|
||||
crssho,10000,800000,350,600,850,0,100,1,1,1,0,1,0,100611,
|
||||
reanim,10000,800000,280,440,700,800,0,1,1,1,1,0,0,100612,
|
||||
kamino,10000,800000,400,620,780,0,150,1,1,1,0,1,0,100613,
|
||||
fiveee,10000,101000,180,370,610,710,100,1,1,1,1,1,0,100614,
|
||||
granda,10000,800000,210,380,790,0,0,1,1,1,0,0,0,100615,
|
||||
fronti2,10000,800000,460,690,890,0,90,1,1,1,0,1,0,100616,
|
||||
saigon,10000,800000,190,310,570,0,0,1,1,1,0,0,0,100617,
|
||||
replay,10000,101000,180,440,630,700,80,1,1,1,1,1,0,100618,
|
||||
mousou,10000,800000,160,260,540,0,0,1,1,1,0,0,0,100619,
|
||||
aheadd,10000,101000,130,250,350,580,70,1,1,1,1,1,0,100620,
|
||||
musicr1,10000,800000,220,330,580,740,120,1,1,1,1,1,0,100621,
|
||||
getthe,10000,101000,170,370,490,660,60,1,1,1,1,1,0,100622,
|
||||
design,10000,800000,150,390,680,690,0,1,1,1,1,0,0,100623,
|
||||
garnet,10000,800000,260,460,700,940,0,1,1,1,1,0,0,100624,
|
||||
hopesb,10000,101000,100,250,440,610,70,1,1,1,1,1,0,100625,
|
||||
shooti,10000,101000,150,370,490,690,70,1,1,1,1,1,0,100626,
|
||||
dangan,10000,800000,280,580,810,0,0,1,1,1,0,0,0,100627,
|
||||
impact,10000,800000,240,600,720,900,200,1,1,1,1,1,0,100628,
|
||||
lightm,10000,101000,260,330,540,710,110,1,1,1,1,1,0,100629,
|
||||
miiroo,10000,101000,220,390,580,680,110,1,1,1,1,1,0,100630,
|
||||
voiceo,10000,800000,180,340,580,590,0,1,1,1,1,0,0,100631,
|
||||
cosmol,10000,800000,360,640,870,0,250,1,1,1,0,1,0,100632,
|
||||
vividd,10000,101000,160,350,550,650,90,1,1,1,1,1,0,100633,
|
||||
splash,10000,800000,260,500,710,0,0,1,1,1,0,0,0,100634,
|
||||
donuth,10000,201000,220,400,540,800,110,1,1,1,1,1,0,100635,
|
||||
senbon,10000,201000,200,280,540,740,120,1,1,1,1,1,0,100636,
|
||||
kmtyju,10000,101000,240,310,570,740,120,1,1,1,1,1,0,100637,
|
||||
fronti,10000,800000,480,650,820,0,130,1,1,1,0,1,0,100638,
|
||||
nueraa,10000,800000,220,430,750,530,0,1,1,1,1,0,0,100639,
|
||||
childe,10000,101000,90,240,340,560,40,1,1,1,1,1,0,100640,
|
||||
dazzli2,10000,800000,350,600,820,0,190,1,1,1,0,1,0,100641,
|
||||
perfec,10000,800000,390,640,780,0,0,1,1,1,0,0,0,100642,
|
||||
flower,10000,101000,70,200,400,650,60,1,1,1,1,1,0,100643,
|
||||
frgmnt,10000,800000,330,630,740,650,100,1,1,1,1,1,0,100644,
|
||||
headph,10000,800000,240,320,520,0,0,1,1,1,0,0,0,100645,
|
||||
crsang,10000,800000,270,530,670,0,130,1,1,1,0,1,0,100646,
|
||||
musicr4,10000,800000,190,320,580,0,120,1,1,1,0,1,0,100647,
|
||||
imaxim,10000,800000,440,690,900,870,0,1,1,1,1,0,0,100648,
|
||||
azitat2,10000,800000,230,520,660,0,80,1,1,1,0,1,0,100649,
|
||||
dynami,10000,800000,260,540,680,0,110,1,1,1,0,1,0,100650,
|
||||
incave,10000,800000,220,440,760,780,0,1,1,1,1,0,0,100651,
|
||||
aktuki,10000,800000,260,580,840,0,100,1,1,1,0,1,0,100652,
|
||||
kindof,10000,800000,140,290,480,0,0,1,1,1,0,0,0,100653,
|
||||
mikaku,10000,800000,190,310,540,0,0,1,1,1,0,0,0,100654,
|
||||
strang,10000,800000,120,280,550,0,0,1,1,1,0,0,0,100655,
|
||||
hesper,10000,800000,360,610,920,930,0,1,1,1,1,0,0,100656,
|
||||
breaka,10000,101000,150,310,450,680,70,1,1,1,1,1,0,100657,
|
||||
myname,10000,800000,60,140,300,570,0,1,1,1,1,0,0,100658,
|
||||
amaiko,10000,800000,150,370,600,0,0,1,1,1,0,0,0,100659,
|
||||
reseed2,10000,800000,220,470,630,0,0,1,1,1,0,0,0,100660,
|
||||
kingst,10000,800000,380,630,740,0,120,1,1,1,0,1,0,100661,
|
||||
ramram,10000,800000,230,340,670,0,0,1,1,1,0,0,0,100662,
|
||||
murasa,10000,800000,280,410,760,0,0,1,1,1,0,0,0,100663,
|
||||
happyd,10000,800000,220,410,730,790,180,1,1,1,1,1,0,100664,
|
||||
izimed,10000,101000,190,390,690,770,90,1,1,1,1,1,0,100665,
|
||||
wastel,10000,800000,40,120,230,400,0,1,1,1,1,0,0,100666,
|
||||
assign,10000,800000,260,430,610,620,0,1,1,1,1,0,0,100667,
|
||||
jahaci,10000,800000,170,290,590,0,0,1,1,1,0,0,0,100668,
|
||||
hisuii,10000,800000,220,470,700,0,0,1,1,1,0,0,0,100669,
|
||||
godkno,10000,101000,100,260,450,640,60,1,1,1,1,1,0,100670,
|
||||
roadof,10000,101000,150,360,500,750,70,1,1,1,1,1,0,100671,
|
||||
rokuch,10000,301000,210,350,620,810,110,1,1,1,1,1,0,100672,
|
||||
valent,10000,800000,270,330,590,770,100,1,1,1,1,1,0,100673,
|
||||
unfini,10000,101000,160,320,500,710,80,1,1,1,1,1,0,100674,
|
||||
auflcb2,10000,800000,220,370,750,0,100,1,1,1,0,1,0,100675,
|
||||
burnin,10000,800000,180,280,600,850,150,1,1,1,1,1,0,100676,
|
||||
sphere,10000,800000,200,380,730,0,0,1,1,1,0,0,0,100677,
|
||||
dropou,10000,101000,170,310,460,690,140,1,1,1,1,1,0,100678,
|
||||
xencou,10000,101000,200,320,520,600,80,1,1,1,1,1,0,100679,
|
||||
killyk,10000,101000,130,420,630,760,60,1,1,1,1,1,0,100680,
|
||||
missil,10000,800000,160,380,590,0,0,1,1,1,0,0,0,100681,
|
||||
burstt,10000,101000,120,250,460,630,70,1,1,1,1,1,0,100682,
|
||||
musicr2,10000,800000,220,330,580,0,120,1,1,1,0,1,0,100683,
|
||||
isingl,10000,800000,250,440,800,0,120,1,1,1,0,1,0,100684,
|
||||
lvless,10000,800000,230,380,600,0,0,1,1,1,0,0,0,100685,
|
||||
sapphi,10000,800000,290,440,810,0,0,1,1,1,0,0,0,100686,
|
||||
musicr3,10000,800000,190,320,580,720,120,1,1,1,1,1,0,100687,
|
||||
deeout,10000,800000,180,340,630,810,0,1,1,1,1,0,0,100688,
|
||||
sugars,10000,101000,170,300,420,660,60,1,1,1,1,1,0,100689,
|
||||
mercur,10000,800000,140,350,660,0,0,1,1,1,0,0,0,100690,
|
||||
zizizi,10000,800000,300,570,880,960,0,1,1,1,1,0,0,100691,
|
||||
wegooo,10000,101000,180,340,540,680,100,1,1,1,1,1,0,100692,
|
||||
alonee,10000,101000,110,210,360,480,50,1,1,1,1,1,0,100693,
|
||||
nuheat,10000,800000,290,440,650,850,0,1,1,1,1,0,0,100694,
|
||||
granro,10000,101000,150,280,430,600,80,1,1,1,1,1,0,100695,
|
||||
sister,10000,101000,100,270,460,630,70,1,1,1,1,1,0,100696,
|
||||
lotusl,10000,800000,200,360,640,0,0,1,1,1,0,0,0,100697,
|
||||
yukari,10000,800000,310,500,760,840,0,1,1,1,1,0,0,100698,
|
||||
flawli,10000,101000,170,300,400,590,80,1,1,1,1,1,0,100699,
|
||||
nightf,10000,800000,150,280,460,710,0,1,1,1,1,0,0,100700,
|
||||
random,10000,800000,0,0,0,0,0,0,0,0,0,0,0,100701,
|
||||
wiwwtw,10000,800000,260,380,620,0,0,1,1,1,0,0,0,100702,
|
||||
inneru,10000,800000,220,360,480,670,90,1,1,1,1,1,0,100703,
|
||||
taishi,10000,800000,190,350,580,0,0,1,1,1,0,0,0,100704,
|
||||
daysss,10000,800000,380,590,810,810,0,1,1,1,1,0,0,100705,
|
||||
bokuwa,10000,101000,230,340,550,690,160,1,1,1,1,1,0,100706,
|
||||
showww,10000,800000,180,350,510,790,150,1,1,1,1,1,0,100707,
|
||||
nevers,10000,101000,260,320,650,750,150,1,1,1,1,1,0,100708,
|
||||
bleeze,10000,101000,160,310,470,620,90,1,1,1,1,1,0,100709,
|
||||
dreami,10000,800000,140,370,650,0,0,1,1,1,0,0,0,100710,
|
||||
allune,10000,110002000,140,350,710,0,0,1,1,1,0,0,0,100711,
|
||||
always,10000,110002000,130,270,490,0,0,1,1,1,0,0,0,100712,
|
||||
anomie2,10000,110002000,160,430,840,0,0,1,1,1,0,0,0,100713,
|
||||
aquali2,10000,110002000,220,430,600,810,0,1,1,1,1,0,0,100714,
|
||||
astaro,10000,110002000,230,400,740,0,0,1,1,1,0,0,0,100715,
|
||||
bassan,10000,110002000,200,320,660,0,0,1,1,1,0,0,0,100716,
|
||||
zonzon2,10000,110002000,130,270,680,750,0,1,1,1,1,0,0,100717,
|
||||
bouled,10000,110002000,190,300,570,0,0,1,1,1,0,0,0,100718,
|
||||
brandn,10000,110002000,90,390,660,720,0,1,1,1,1,0,0,100719,
|
||||
bravee,10000,110002000,350,600,820,0,250,1,1,1,0,0,0,100720,
|
||||
breakd2,10000,110002000,340,640,740,0,0,1,1,1,0,0,0,100721,
|
||||
buffet,10000,110002000,380,550,680,0,300,1,1,1,0,0,0,100722,
|
||||
buzzke,10000,110002000,180,330,580,770,0,1,1,1,1,0,0,100723,
|
||||
cashhh,10000,110002000,190,250,640,0,0,1,1,1,0,0,0,100724,
|
||||
cloudb,10000,110002000,370,660,740,0,250,1,1,1,0,0,0,100725,
|
||||
clouds,10000,110002000,130,250,470,0,0,1,1,1,0,0,0,100726,
|
||||
codepa,10000,110002000,290,550,700,0,150,1,1,1,0,0,0,100727,
|
||||
comear,10000,110002000,380,560,830,0,250,1,1,1,0,0,0,100728,
|
||||
crysta,10000,110002000,370,560,810,0,300,1,1,1,0,0,0,100729,
|
||||
curseo,10000,110002000,220,360,740,0,0,1,1,1,0,0,0,100730,
|
||||
datami,10000,110002000,180,360,660,0,0,1,1,1,0,0,0,100731,
|
||||
defaul,10000,110002000,210,330,480,0,0,1,1,1,0,0,0,100732,
|
||||
design2,10000,110002000,250,430,680,0,0,1,1,1,0,0,0,100733,
|
||||
diamon,10000,110002000,100,260,330,0,0,1,1,1,0,0,0,100734,
|
||||
dispel,10000,110002000,280,480,800,0,0,1,1,1,0,0,0,100735,
|
||||
distan,10000,110002000,200,300,680,0,0,1,1,1,0,0,0,100736,
|
||||
dokibl,10000,110002000,150,230,670,0,0,1,1,1,0,0,0,100737,
|
||||
dontwa,10000,110002000,130,340,690,0,0,1,1,1,0,0,0,100738,
|
||||
drgirl,10000,110002000,190,350,540,730,0,1,1,1,1,0,0,100739,
|
||||
eterna,10000,110002000,120,210,390,0,0,1,1,1,0,0,0,100740,
|
||||
everkr,10000,110002000,180,290,410,0,0,1,1,1,0,0,0,100741,
|
||||
everwh,10000,110002000,200,310,580,0,0,1,1,1,0,0,0,100742,
|
||||
farthe,10000,110002000,300,560,780,870,0,1,1,1,1,0,0,100743,
|
||||
filame,10000,110002000,230,380,630,0,0,1,1,1,0,0,0,100744,
|
||||
flameu2,10000,110002000,170,240,590,0,0,1,1,1,0,0,0,100745,
|
||||
freeee,10000,110002000,190,390,690,0,0,1,1,1,0,0,0,100746,
|
||||
funkyb2,10000,110002000,210,340,560,0,0,1,1,1,0,0,0,100747,
|
||||
granda2,10000,110002000,240,410,730,830,0,1,1,1,1,0,0,100748,
|
||||
hsphsp,10000,110002000,120,250,690,0,0,1,1,1,0,0,0,100749,
|
||||
halluc,10000,110002000,400,520,870,0,0,1,1,1,0,0,0,100750,
|
||||
indigo,10000,110002000,170,330,500,750,0,1,1,1,1,0,0,100751,
|
||||
inters,10000,110002000,250,420,770,0,0,1,1,1,0,0,0,100752,
|
||||
incave2,10000,110002000,310,570,880,0,0,1,1,1,0,0,0,100753,
|
||||
ioniza,10000,110002000,170,340,700,850,0,1,1,1,1,0,0,100754,
|
||||
guilty,10000,110002000,150,280,500,0,0,1,1,1,0,0,0,100755,
|
||||
keraun,10000,110002000,250,520,790,0,0,1,1,1,0,0,0,100756,
|
||||
landin2,10000,110002000,200,340,590,660,0,1,1,1,1,0,0,100757,
|
||||
videog,10000,110002000,210,370,620,0,0,1,1,1,0,0,0,100758,
|
||||
loseyo,10000,110002000,200,300,710,0,0,1,1,1,0,0,0,100759,
|
||||
machin,10000,110002000,120,280,720,0,0,1,1,1,0,0,0,100760,
|
||||
makeit,10000,110002000,110,240,480,0,0,1,1,1,0,0,0,100761,
|
||||
daydre,10000,110002000,190,360,800,0,0,1,1,1,0,0,0,100762,
|
||||
metron,10000,110002000,200,440,710,0,0,1,1,1,0,0,0,100763,
|
||||
milkyw,10000,110002000,220,310,600,0,0,1,1,1,0,0,0,100764,
|
||||
nayuta,10000,110002000,170,370,680,0,0,1,1,1,0,0,0,100766,
|
||||
nightm,10000,110002000,200,490,730,0,0,1,1,1,0,0,0,100767,
|
||||
otherw,10000,110002000,230,410,760,0,0,1,1,1,0,0,0,100768,
|
||||
overth,10000,110002000,330,570,820,0,250,1,1,1,0,0,0,100769,
|
||||
uuuuuu,10000,110002000,230,370,740,0,0,1,1,1,0,0,0,100770,
|
||||
rainin,10000,110002000,160,410,690,0,0,1,1,1,0,0,0,100771,
|
||||
raisey,10000,110002000,230,550,750,0,150,1,1,1,0,0,0,100772,
|
||||
resona,10000,110002000,170,320,640,0,0,1,1,1,0,0,0,100773,
|
||||
reuniv,10000,110002000,140,230,410,0,0,1,1,1,0,0,0,100774,
|
||||
rhythm,10000,110002000,370,560,780,0,250,1,1,1,0,0,0,100775,
|
||||
rushhh,10000,110002000,250,370,750,0,0,1,1,1,0,0,0,100776,
|
||||
steeee,10000,110002000,300,580,870,0,0,1,1,1,0,0,0,100777,
|
||||
sangey,10000,110002000,270,470,850,0,0,1,1,1,0,0,0,100778,
|
||||
senpai,10000,110002000,380,540,770,0,250,1,1,1,0,0,0,100779,
|
||||
sestea,10000,110002000,270,470,760,0,0,1,1,1,0,0,0,100780,
|
||||
silver,10000,110002000,280,400,690,0,0,1,1,1,0,0,0,100781,
|
||||
sodama,10000,110002000,200,400,650,0,0,1,1,1,0,0,0,100782,
|
||||
stardu,10000,110002000,190,330,640,0,0,1,1,1,0,0,0,100783,
|
||||
starti,10000,110002000,170,310,540,700,0,1,1,1,1,0,0,100784,
|
||||
sunday,10000,110002000,180,290,460,670,0,1,1,1,1,0,0,100785,
|
||||
sundro2,10000,110002000,300,480,790,820,0,1,1,1,1,0,0,100786,
|
||||
sunnyd,10000,110002000,230,380,590,0,0,1,1,1,0,0,0,100787,
|
||||
superl,10000,110002000,150,320,590,0,0,1,1,1,0,0,0,100788,
|
||||
switch,10000,110002000,160,350,690,0,0,1,1,1,0,0,0,100789,
|
||||
theepi2,10000,110002000,220,370,650,0,0,1,1,1,0,0,0,100790,
|
||||
epipha,10000,110002000,150,300,700,0,0,1,1,1,0,0,0,100791,
|
||||
thekin,10000,110002000,220,520,750,0,0,1,1,1,0,0,0,100792,
|
||||
timele,10000,110002000,160,330,720,0,0,1,1,1,0,0,0,100793,
|
||||
tokyoo,10000,110002000,150,330,710,0,0,1,1,1,0,0,0,100794,
|
||||
toooma,10000,110002000,300,510,770,0,0,1,1,1,0,0,0,100795,
|
||||
toucho2,10000,110002000,170,320,520,780,0,1,1,1,1,0,0,100796,
|
||||
tayuta,10000,110002000,260,350,720,0,0,1,1,1,0,0,0,100797,
|
||||
ultrix,10000,110002000,270,450,760,0,0,1,1,1,0,0,0,100798,
|
||||
underw,10000,110002000,290,460,690,860,0,1,1,1,1,0,0,100799,
|
||||
virtua,10000,110002000,150,350,630,0,0,1,1,1,0,0,0,100800,
|
||||
voiceo2,10000,110002000,140,380,670,0,0,1,1,1,0,0,0,100801,
|
||||
wannab2,10000,110002000,260,410,690,0,0,1,1,1,0,0,0,100802,
|
||||
wiwwtw2,10000,110002000,200,430,670,720,0,1,1,1,1,0,0,100803,
|
||||
wingso,10000,110002000,200,530,710,0,0,1,1,1,0,0,0,100804,
|
||||
winter,10000,110002000,140,240,410,0,0,1,1,1,0,0,0,100805,
|
||||
iineee,10000,110002000,210,400,810,0,0,1,1,1,0,0,0,100806,
|
||||
illumi,10000,110002000,100,250,460,630,0,1,1,1,1,0,0,100807,
|
||||
yellll,10000,110002000,80,170,520,0,0,1,1,1,0,0,0,100808,
|
||||
eschat,10000,110002000,360,570,770,0,250,1,1,1,0,0,0,100809,
|
||||
counte,10000,110002000,290,340,710,0,0,1,1,1,0,0,0,100810,
|
||||
gimcho,10000,110002000,180,390,700,0,0,1,1,1,0,0,0,100811,
|
||||
surviv,10000,110002000,240,400,650,0,0,1,1,1,0,0,0,100812,
|
||||
turkis3,10000,110002000,60,200,480,0,0,1,1,1,0,0,0,100814,
|
||||
picora2,10000,110002000,280,530,800,0,0,1,1,1,0,0,0,100815,
|
||||
fortis,10000,110002000,200,370,530,0,0,1,1,1,0,0,0,100816,
|
||||
hedban,10000,110002000,160,430,660,0,0,1,1,1,0,0,0,100817,
|
||||
megitu,10000,110002000,150,300,490,0,0,1,1,1,0,0,0,100818,
|
||||
rockma,10000,110002000,270,480,730,0,0,1,1,1,0,0,0,100819,
|
||||
kounen2,10000,110002000,210,430,730,0,0,1,1,1,0,0,0,100820,
|
||||
saisyu,10000,110002000,180,360,560,0,0,1,1,1,0,0,0,100821,
|
||||
yuukan,10000,110002000,220,330,780,0,0,1,1,1,0,0,0,100822,
|
||||
modern,10000,110002000,200,320,560,0,0,1,1,1,0,0,0,100823,
|
||||
miraie,10000,110002000,210,350,660,0,0,1,1,1,0,0,0,100824,
|
||||
ranfes,10000,110002000,200,420,650,0,0,1,1,1,0,0,0,100825,
|
||||
nemure,10000,110002000,150,380,670,760,0,1,1,1,1,0,0,100826,
|
||||
yuwaku,10000,110002000,150,260,430,0,0,1,1,1,0,0,0,100827,
|
||||
dontst,10000,110002000,150,320,560,700,0,1,1,1,1,0,0,100828,
|
||||
mottai,10000,110002000,100,260,360,0,0,1,1,1,0,0,0,100829,
|
||||
slysly,10000,110002000,100,330,580,0,0,1,1,1,0,0,0,100830,
|
||||
lookam,10000,110002000,170,340,670,0,0,1,1,1,0,0,0,100831,
|
||||
feverr,10000,110002000,280,480,680,0,0,1,1,1,0,0,0,100832,
|
||||
fashio,10000,110002000,80,240,390,0,0,1,1,1,0,0,0,100833,
|
||||
hagito,10000,110002000,120,260,500,0,0,1,1,1,0,0,0,100834,
|
||||
invade,10000,110002000,100,280,470,0,0,1,1,1,0,0,0,100835,
|
||||
ainoch,10000,110002000,170,400,590,0,0,1,1,1,0,0,0,100836,
|
||||
nakama,10000,110002000,140,320,530,0,0,1,1,1,0,0,0,100837,
|
||||
ninjar,10000,110002000,80,230,410,650,0,1,1,1,1,0,0,100838,
|
||||
parall,10000,110002000,140,350,610,0,0,1,1,1,0,0,0,100839,
|
||||
yukifu,10000,110002000,130,290,510,0,0,1,1,1,0,0,0,100840,
|
||||
furiso,10000,110002000,120,240,440,740,0,1,1,1,1,0,0,100841,
|
||||
honeyj,10064,802000,320,630,880,930,240,1,1,1,1,1,6,100842,
|
||||
emeraj,10000,802000,300,530,850,0,190,1,1,1,0,1,1,100843,
|
||||
dazzlo,10000,802000,350,600,800,900,160,1,1,1,1,1,1,100844,
|
||||
shares,10000,800000,0,0,0,0,0,0,0,0,0,0,0,100844,
|
||||
|
9
titles/cxb/rss2_data/NewsList.csv
Normal file
9
titles/cxb/rss2_data/NewsList.csv
Normal file
@@ -0,0 +1,9 @@
|
||||
1,1,1601510400,4096483201,1,0,0,0,1,0,news1054,,,1,1,
|
||||
2,1,1601510400,4096483201,1,0,0,0,1,0,news1090,,,1,1,
|
||||
3,1,1601510400,4096483201,1,0,0,0,1,0,news1091,,,1,1,
|
||||
4,1,1601510400,4096483201,1,0,0,0,1,0,news3001,,,1,1,
|
||||
5,1,1601510400,4096483201,0,0,0,1,1,0,news9000,,,1,1,
|
||||
6,1,1601510400,4096483201,1,0,0,0,1,0,news9001,,,1,1,
|
||||
7,1,1601510400,4096483201,1,0,0,0,1,0,news9002,,,1,1,
|
||||
8,1,1601510400,4096483201,1,0,0,0,1,0,news9003,,,1,1,
|
||||
9,1,1601510400,4096483201,1,0,0,0,1,0,news9004,,,1,1,
|
||||
|
101
titles/cxb/rss2_data/Partner0000.csv
Normal file
101
titles/cxb/rss2_data/Partner0000.csv
Normal file
@@ -0,0 +1,101 @@
|
||||
1,0,100,100,100,100,100,100,100,100,0,0,
|
||||
2,100,110,101,101,103,101,101,101,101,1000,0,
|
||||
3,210,120,102,102,106,102,102,102,102,0,0,
|
||||
4,331,130,103,103,109,103,103,103,103,0,0,
|
||||
5,464,140,104,104,112,104,104,104,104,1001,0,
|
||||
6,610,150,105,105,115,105,105,105,105,1002,0,
|
||||
7,771,160,106,106,118,106,106,106,106,1003,0,
|
||||
8,948,170,107,107,121,107,107,107,107,0,0,
|
||||
9,1143,180,108,108,124,108,108,108,108,0,0,
|
||||
10,1357,190,109,109,127,109,109,109,109,1004,0,
|
||||
11,1593,200,110,110,130,110,110,110,110,0,0,
|
||||
12,1853,210,111,111,133,111,111,111,111,0,0,
|
||||
13,2138,220,112,112,136,112,112,112,112,0,0,
|
||||
14,2452,230,113,113,139,113,113,113,113,0,0,
|
||||
15,2797,240,114,114,142,114,114,114,114,1005,0,
|
||||
16,3177,250,115,115,145,115,115,115,115,0,0,
|
||||
17,3594,260,116,116,148,116,116,116,116,0,0,
|
||||
18,4054,270,117,117,151,117,117,117,117,0,0,
|
||||
19,4559,280,118,118,154,118,118,118,118,0,0,
|
||||
20,5115,290,119,119,157,119,119,119,119,1006,1,
|
||||
21,5727,300,120,120,160,120,120,120,120,0,1,
|
||||
22,6400,310,121,121,163,121,121,121,121,0,1,
|
||||
23,7140,320,122,122,166,122,122,122,122,0,1,
|
||||
24,7954,330,123,123,169,123,123,123,123,0,1,
|
||||
25,8849,340,124,124,172,124,124,124,124,0,1,
|
||||
26,9834,350,125,125,175,125,125,125,125,0,1,
|
||||
27,10918,360,126,126,178,126,126,126,126,0,1,
|
||||
28,12109,370,127,127,181,127,127,127,127,0,1,
|
||||
29,13420,380,128,128,184,128,128,128,128,0,1,
|
||||
30,14863,390,129,129,187,129,129,129,129,0,1,
|
||||
31,16449,400,130,130,190,130,130,130,130,0,1,
|
||||
32,18194,410,131,131,193,131,131,131,131,0,1,
|
||||
33,20113,420,132,132,196,132,132,132,132,0,1,
|
||||
34,22225,430,133,133,199,133,133,133,133,0,1,
|
||||
35,24547,440,134,134,202,134,134,134,134,0,1,
|
||||
36,27102,450,135,135,205,135,135,135,135,0,1,
|
||||
37,29912,460,136,136,208,136,136,136,136,0,1,
|
||||
38,33003,470,137,137,211,137,137,137,137,0,1,
|
||||
39,36404,480,138,138,214,138,138,138,138,0,1,
|
||||
40,40144,490,139,139,217,139,139,139,139,0,1,
|
||||
41,44259,500,140,140,220,140,140,140,140,0,1,
|
||||
42,48785,510,141,141,223,141,141,141,141,0,1,
|
||||
43,53763,520,142,142,226,142,142,142,142,0,1,
|
||||
44,59240,530,143,143,229,143,143,143,143,0,1,
|
||||
45,65264,540,144,144,232,144,144,144,144,0,1,
|
||||
46,71890,550,145,145,235,145,145,145,145,0,1,
|
||||
47,79179,560,146,146,238,146,146,146,146,0,1,
|
||||
48,87197,570,147,147,241,147,147,147,147,0,1,
|
||||
49,96017,580,148,148,244,148,148,148,148,0,1,
|
||||
50,105718,590,149,149,247,149,149,149,149,0,2,
|
||||
51,116390,600,150,150,250,150,150,150,150,0,2,
|
||||
52,128129,610,151,151,253,151,151,151,151,0,2,
|
||||
53,141042,620,152,152,256,152,152,152,152,0,2,
|
||||
54,155247,630,153,153,259,153,153,153,153,0,2,
|
||||
55,170871,640,154,154,262,154,154,154,154,0,2,
|
||||
56,188059,650,155,155,265,155,155,155,155,0,2,
|
||||
57,206965,660,156,156,268,156,156,156,156,0,2,
|
||||
58,227761,670,157,157,271,157,157,157,157,0,2,
|
||||
59,250637,680,158,158,274,158,158,158,158,0,2,
|
||||
60,275801,690,159,159,277,159,159,159,159,0,2,
|
||||
61,303481,700,160,160,280,160,160,160,160,0,2,
|
||||
62,333929,710,161,161,283,161,161,161,161,0,2,
|
||||
63,367422,720,162,162,286,162,162,162,162,0,2,
|
||||
64,404265,730,163,163,289,163,163,163,163,0,2,
|
||||
65,444791,740,164,164,292,164,164,164,164,0,2,
|
||||
66,489370,750,165,165,295,165,165,165,165,0,2,
|
||||
67,538407,760,166,166,298,166,166,166,166,0,2,
|
||||
68,592348,770,167,167,301,167,167,167,167,0,2,
|
||||
69,651683,780,168,168,304,168,168,168,168,0,2,
|
||||
70,716951,790,169,169,307,169,169,169,169,0,2,
|
||||
71,788746,800,170,170,310,170,170,170,170,0,2,
|
||||
72,867721,810,171,171,313,171,171,171,171,0,2,
|
||||
73,954593,820,172,172,316,172,172,172,172,0,2,
|
||||
74,1050153,830,173,173,319,173,173,173,173,0,2,
|
||||
75,1155268,840,174,174,322,174,174,174,174,0,2,
|
||||
76,1270895,850,175,175,325,175,175,175,175,0,2,
|
||||
77,1398084,860,176,176,328,176,176,176,176,0,2,
|
||||
78,1537993,870,177,177,331,177,177,177,177,0,2,
|
||||
79,1691892,880,178,178,334,178,178,178,178,0,2,
|
||||
80,1861182,890,179,179,337,179,179,179,179,0,2,
|
||||
81,2047400,900,180,180,340,180,180,180,180,0,2,
|
||||
82,2252240,910,181,181,343,181,181,181,181,0,2,
|
||||
83,2477564,920,182,182,346,182,182,182,182,0,2,
|
||||
84,2725420,930,183,183,349,183,183,183,183,0,2,
|
||||
85,2998062,940,184,184,352,184,184,184,184,0,2,
|
||||
86,3297969,950,185,185,355,185,185,185,185,0,2,
|
||||
87,3627865,960,186,186,358,186,186,186,186,0,2,
|
||||
88,3990752,970,187,187,361,187,187,187,187,0,2,
|
||||
89,4389927,980,188,188,364,188,188,188,188,0,2,
|
||||
90,4829020,990,189,189,367,189,189,189,189,0,2,
|
||||
91,5312022,1000,190,190,370,190,190,190,190,0,2,
|
||||
92,5843324,1010,191,191,373,191,191,191,191,0,2,
|
||||
93,6427757,1020,192,192,376,192,192,192,192,0,2,
|
||||
94,7070633,1030,193,193,379,193,193,193,193,0,2,
|
||||
95,7777796,1040,194,194,382,194,194,194,194,0,2,
|
||||
96,8555676,1050,195,195,385,195,195,195,195,0,2,
|
||||
97,9411343,1060,196,196,388,196,196,196,196,0,2,
|
||||
98,10352578,1070,197,197,391,197,197,197,197,0,2,
|
||||
99,11387935,1080,198,198,394,198,198,198,198,0,2,
|
||||
100,12526829,1090,199,199,397,199,199,199,199,0,2,
|
||||
|
||||
|
452
titles/cxb/rss2_data/Shop/ShopList_Icon.csv
Normal file
452
titles/cxb/rss2_data/Shop/ShopList_Icon.csv
Normal file
@@ -0,0 +1,452 @@
|
||||
1000,1,10000,1,-1,-,1412103600,4096483201,ic0000,10,2,,1,,1,-,
|
||||
1001,2,10000,1,-1,-,1412103600,4096483201,ic1718,10,2,,1,,1,-,
|
||||
1002,3,10000,1,-1,-,1412103600,4096483201,ic0001,10,2,,1,,1,-,
|
||||
1003,4,10000,1,-1,-,1412103600,4096483201,ic0002,10,2,,1,,1,-,
|
||||
1004,5,10000,1,-1,-,1412103600,4096483201,ic0003,10,2,,1,,1,-,
|
||||
1005,6,10000,1,-1,-,1412103600,4096483201,ic0004,10,2,,1,,1,-,
|
||||
1006,7,10000,1,-1,-,1412103600,4096483201,ic0005,10,2,,1,,1,-,
|
||||
1007,8,10000,1,-1,-,1412103600,4096483201,ic0006,10,2,,1,,1,-,
|
||||
1008,9,10000,1,-1,-,1412103600,4096483201,ic0007,10,2,,1,,1,-,
|
||||
1009,10,10000,1,-1,-,1412103600,4096483201,ic0008,10,2,,1,,1,-,
|
||||
1010,11,10000,1,-1,-,1412103600,4096483201,ic0009,10,2,,1,,1,-,
|
||||
1011,12,10000,1,-1,-,1412103600,4096483201,ic0010,10,2,,1,,1,-,
|
||||
1012,13,10000,1,-1,-,1412103600,4096483201,ic0011,10,2,,1,,1,-,
|
||||
1013,14,10000,1,-1,-,1412103600,4096483201,ic0012,10,2,,1,,1,-,
|
||||
1014,15,10000,1,-1,-,1412103600,4096483201,ic0013,10,2,,1,,1,-,
|
||||
1015,16,10000,1,-1,-,1412103600,4096483201,ic0014,10,2,,1,,1,-,
|
||||
1016,17,10000,1,-1,-,1412103600,4096483201,ic0015,10,2,,1,,1,-,
|
||||
1017,18,10000,1,-1,-,1412103600,4096483201,ic0016,10,2,,1,,1,-,
|
||||
1018,19,10000,1,-1,-,1412103600,4096483201,ic0017,10,2,,1,,1,-,
|
||||
1019,20,10000,1,-1,-,1412103600,4096483201,ic0018,10,2,,1,,1,-,
|
||||
1020,21,10000,1,-1,-,1412103600,4096483201,ic0019,10,2,,1,,1,-,
|
||||
1021,22,10000,1,-1,-,1412103600,4096483201,ic0020,10,2,,1,,1,-,
|
||||
1022,23,10000,1,-1,-,1412103600,4096483201,ic0021,10,2,,1,,1,-,
|
||||
1023,24,10000,1,-1,-,1412103600,4096483201,ic0022,10,2,,1,,1,-,
|
||||
1024,25,10000,1,-1,-,1412103600,4096483201,ic0023,10,2,,1,,1,-,
|
||||
1025,26,10000,1,-1,-,1412103600,4096483201,ic0024,10,2,,1,,1,-,
|
||||
1026,27,10000,1,-1,-,1412103600,4096483201,ic0025,10,2,,1,,1,-,
|
||||
1027,28,10000,1,-1,-,1412103600,4096483201,ic0026,10,2,,1,,1,-,
|
||||
1028,29,10000,1,-1,-,1412103600,4096483201,ic0027,10,2,,1,,1,-,
|
||||
1029,30,10000,1,-1,-,1412103600,4096483201,ic0029,10,2,,1,,1,-,
|
||||
1030,31,10000,1,-1,-,1412103600,4096483201,ic0030,10,2,,1,,1,-,
|
||||
1031,32,10000,1,-1,-,1412103600,4096483201,ic0031,10,2,,1,,1,-,
|
||||
1032,33,10000,1,-1,-,1412103600,4096483201,ic0032,10,2,,1,,1,-,
|
||||
1033,34,10000,1,-1,-,1412103600,4096483201,ic0033,10,2,,1,,1,-,
|
||||
1034,35,10000,1,-1,-,1412103600,4096483201,ic0034,10,2,,1,,1,-,
|
||||
1035,36,10000,1,-1,-,1412103600,4096483201,ic0035,10,2,,1,,1,-,
|
||||
1036,37,10000,1,-1,-,1412103600,4096483201,ic0036,10,2,,1,,1,-,
|
||||
1037,38,10000,1,-1,-,1412103600,4096483201,ic0037,10,2,,1,,1,-,
|
||||
1038,39,10000,1,-1,-,1412103600,4096483201,ic0038,10,2,,1,,1,-,
|
||||
1039,40,10000,1,-1,-,1412103600,4096483201,ic0039,10,2,,1,,1,-,
|
||||
1040,41,10000,1,-1,-,1412103600,4096483201,ic0040,10,2,,1,,1,-,
|
||||
1041,42,10000,1,-1,-,1412103600,4096483201,ic0042,10,2,,1,,1,-,
|
||||
1042,43,10000,1,-1,-,1412103600,4096483201,ic0043,10,2,,1,,1,-,
|
||||
1043,44,10000,1,-1,-,1412103600,4096483201,ic0044,10,2,,1,,1,-,
|
||||
1044,45,10000,1,-1,-,1412103600,4096483201,ic0045,10,2,,1,,1,-,
|
||||
1045,46,10000,1,-1,-,1412103600,4096483201,ic0046,10,2,,1,,1,-,
|
||||
1046,47,10000,1,-1,-,1412103600,4096483201,ic0047,10,2,,1,,1,-,
|
||||
1047,48,10000,1,-1,-,1412103600,4096483201,ic0048,10,2,,1,,1,-,
|
||||
1048,49,10000,1,-1,-,1412103600,4096483201,ic0049,10,2,,1,,1,-,
|
||||
1049,50,10000,1,-1,-,1412103600,4096483201,ic0050,10,2,,1,,1,-,
|
||||
1050,51,10000,1,-1,-,1412103600,4096483201,ic0051,10,2,,1,,1,-,
|
||||
1051,52,10000,1,-1,-,1412103600,4096483201,ic0052,10,2,,1,,1,-,
|
||||
1052,53,10000,1,-1,-,1412103600,4096483201,ic0053,10,2,,1,,1,-,
|
||||
1053,54,10000,1,-1,-,1412103600,4096483201,ic0054,10,2,,1,,1,-,
|
||||
1054,55,10000,1,-1,-,1412103600,4096483201,ic0055,10,2,,1,,1,-,
|
||||
1055,56,10000,1,-1,-,1412103600,4096483201,ic0056,10,2,,1,,1,-,
|
||||
1056,57,10000,1,-1,-,1412103600,4096483201,ic0057,10,2,,1,,1,-,
|
||||
1057,58,10000,1,-1,-,1412103600,4096483201,ic0058,10,2,,1,,1,-,
|
||||
1058,59,10000,1,-1,-,1412103600,4096483201,ic0059,10,2,,1,,1,-,
|
||||
1059,60,10000,1,-1,-,1412103600,4096483201,ic0060,10,2,,1,,1,-,
|
||||
1060,61,10000,1,-1,-,1412103600,4096483201,ic0061,10,2,,1,,1,-,
|
||||
1061,62,10000,1,-1,-,1412103600,4096483201,ic0062,10,2,,1,,1,-,
|
||||
1062,63,10000,1,-1,-,1412103600,4096483201,ic0063,10,2,,1,,1,-,
|
||||
1063,64,10000,1,-1,-,1412103600,4096483201,ic0065,10,2,,1,,1,-,
|
||||
1064,65,10000,1,-1,-,1412103600,4096483201,ic0066,10,2,,1,,1,-,
|
||||
1065,66,10000,1,-1,-,1412103600,4096483201,ic0067,10,2,,1,,1,-,
|
||||
1066,67,10000,1,-1,-,1412103600,4096483201,ic0069,10,2,,1,,1,-,
|
||||
1067,68,10000,1,-1,-,1412103600,4096483201,ic0070,10,2,,1,,1,-,
|
||||
1068,69,10000,1,-1,-,1412103600,4096483201,ic0071,10,2,,1,,1,-,
|
||||
1069,70,10000,1,-1,-,1412103600,4096483201,ic0072,10,2,,1,,1,-,
|
||||
1070,71,10000,1,-1,-,1412103600,4096483201,ic0074,10,2,,1,,1,-,
|
||||
1071,72,10000,1,-1,-,1412103600,4096483201,ic0075,10,2,,1,,1,-,
|
||||
1072,73,10000,1,-1,-,1412103600,4096483201,ic0076,10,2,,1,,1,-,
|
||||
1073,74,10000,1,-1,-,1412103600,4096483201,ic0077,10,2,,1,,1,-,
|
||||
1074,75,10000,1,-1,-,1412103600,4096483201,ic0078,10,2,,1,,1,-,
|
||||
1075,76,10000,1,-1,-,1412103600,4096483201,ic0079,10,2,,1,,1,-,
|
||||
1076,77,10000,1,-1,-,1412103600,4096483201,ic0080,10,2,,1,,1,-,
|
||||
1077,78,10000,1,-1,-,1412103600,4096483201,ic0081,10,2,,1,,1,-,
|
||||
1078,79,10000,1,-1,-,1412103600,4096483201,ic0082,10,2,,1,,1,-,
|
||||
1079,80,10000,1,-1,-,1412103600,4096483201,ic0083,10,2,,1,,1,-,
|
||||
1080,81,10000,1,-1,-,1412103600,4096483201,ic0084,10,2,,1,,1,-,
|
||||
1081,82,10000,1,-1,-,1412103600,4096483201,ic0085,10,2,,1,,1,-,
|
||||
1082,83,10000,1,-1,-,1412103600,4096483201,ic0086,10,2,,1,,1,-,
|
||||
1083,84,10000,1,-1,-,1412103600,4096483201,ic0087,10,2,,1,,1,-,
|
||||
1084,85,10000,1,-1,-,1412103600,4096483201,ic0088,10,2,,1,,1,-,
|
||||
1085,86,10000,1,-1,-,1412103600,4096483201,ic0089,10,2,,1,,1,-,
|
||||
1086,87,10000,1,-1,-,1412103600,4096483201,ic0090,10,2,,1,,1,-,
|
||||
1087,88,10000,1,-1,-,1412103600,4096483201,ic0091,10,2,,1,,1,-,
|
||||
1088,89,10000,1,-1,-,1412103600,4096483201,ic0092,10,2,,1,,1,-,
|
||||
1089,90,10000,1,-1,-,1412103600,4096483201,ic0093,10,2,,1,,1,-,
|
||||
1090,91,10000,1,-1,-,1412103600,4096483201,ic0094,10,2,,1,,1,-,
|
||||
1091,92,10000,1,-1,-,1412103600,4096483201,ic0095,10,2,,1,,1,-,
|
||||
1092,93,10000,1,-1,-,1412103600,4096483201,ic0096,10,2,,1,,1,-,
|
||||
1093,94,10000,1,-1,-,1412103600,4096483201,ic0097,10,2,,1,,1,-,
|
||||
1094,95,10000,1,-1,-,1412103600,4096483201,ic0098,10,2,,1,,1,-,
|
||||
1095,96,10000,1,-1,-,1412103600,4096483201,ic0099,10,2,,1,,1,-,
|
||||
1096,97,10000,1,-1,-,1412103600,4096483201,ic0100,10,2,,1,,1,-,
|
||||
1097,98,10000,1,-1,-,1412103600,4096483201,ic0101,10,2,,1,,1,-,
|
||||
1098,99,10000,1,-1,-,1412103600,4096483201,ic0102,10,2,,1,,1,-,
|
||||
1099,100,10000,1,-1,-,1412103600,4096483201,ic0103,10,2,,1,,1,-,
|
||||
1100,101,10000,1,-1,-,1412103600,4096483201,ic0104,10,2,,1,,1,-,
|
||||
1101,102,10000,1,-1,-,1412103600,4096483201,ic0107,10,2,,1,,1,-,
|
||||
1102,103,10000,1,-1,-,1412103600,4096483201,ic0108,10,2,,1,,1,-,
|
||||
1103,104,10000,1,-1,-,1412103600,4096483201,ic0109,10,2,,1,,1,-,
|
||||
1104,105,10000,1,-1,-,1412103600,4096483201,ic0110,10,2,,1,,1,-,
|
||||
1105,106,10000,1,-1,-,1412103600,4096483201,ic0111,10,2,,1,,1,-,
|
||||
1106,107,10000,1,-1,-,1412103600,4096483201,ic0112,10,2,,1,,1,-,
|
||||
1107,108,10000,1,-1,-,1412103600,4096483201,ic0113,10,2,,1,,1,-,
|
||||
1108,109,10000,1,-1,-,1412103600,4096483201,ic0114,10,2,,1,,1,-,
|
||||
1109,110,10000,1,-1,-,1412103600,4096483201,ic0115,10,2,,1,,1,-,
|
||||
1110,111,10000,1,-1,-,1412103600,4096483201,ic0116,10,2,,1,,1,-,
|
||||
1111,112,10000,1,-1,-,1412103600,4096483201,ic0117,10,2,,1,,1,-,
|
||||
1112,113,10000,1,-1,-,1412103600,4096483201,ic0118,10,2,,1,,1,-,
|
||||
1113,114,10000,1,-1,-,1412103600,4096483201,ic0119,10,2,,1,,1,-,
|
||||
1114,115,10000,1,-1,-,1412103600,4096483201,ic0120,10,2,,1,,1,-,
|
||||
1115,116,10000,1,-1,-,1412103600,4096483201,ic0121,10,2,,1,,1,-,
|
||||
1116,117,10000,1,-1,-,1412103600,4096483201,ic0122,10,2,,1,,1,-,
|
||||
1117,118,10000,1,-1,-,1412103600,4096483201,ic0123,10,2,,1,,1,-,
|
||||
1118,119,10000,1,-1,-,1412103600,4096483201,ic0124,10,2,,1,,1,-,
|
||||
1119,120,10000,1,-1,-,1412103600,4096483201,ic0125,10,2,,1,,1,-,
|
||||
1120,121,10000,1,-1,-,1412103600,4096483201,ic0126,10,2,,1,,1,-,
|
||||
1121,122,10000,1,-1,-,1412103600,4096483201,ic0127,10,2,,1,,1,-,
|
||||
1122,123,10000,1,-1,-,1412103600,4096483201,ic0128,10,2,,1,,1,-,
|
||||
1123,124,10000,1,-1,-,1412103600,4096483201,ic0129,10,2,,1,,1,-,
|
||||
1124,125,10000,1,-1,-,1412103600,4096483201,ic0130,10,2,,1,,1,-,
|
||||
1125,126,10000,1,-1,-,1412103600,4096483201,ic0131,10,2,,1,,1,-,
|
||||
1126,127,10000,1,-1,-,1412103600,4096483201,ic0132,10,2,,1,,1,-,
|
||||
1127,128,10000,1,-1,-,1412103600,4096483201,ic0133,10,2,,1,,1,-,
|
||||
1128,129,10000,1,-1,-,1412103600,4096483201,ic0134,10,2,,1,,1,-,
|
||||
1129,130,10000,1,-1,-,1412103600,4096483201,ic0135,10,2,,1,,1,-,
|
||||
1130,131,10000,1,-1,-,1412103600,4096483201,ic0137,10,2,,1,,1,-,
|
||||
1131,132,10000,1,-1,-,1412103600,4096483201,ic0138,10,2,,1,,1,-,
|
||||
1132,133,10000,1,-1,-,1412103600,4096483201,ic0139,10,2,,1,,1,-,
|
||||
1133,134,10000,1,-1,-,1412103600,4096483201,ic0140,10,2,,1,,1,-,
|
||||
1134,135,10000,1,-1,-,1412103600,4096483201,ic0141,10,2,,1,,1,-,
|
||||
1135,136,10000,1,-1,-,1412103600,4096483201,ic0143,10,2,,1,,1,-,
|
||||
1136,137,10000,1,-1,-,1412103600,4096483201,ic0144,10,2,,1,,1,-,
|
||||
1137,138,10000,1,-1,-,1412103600,4096483201,ic0145,10,2,,1,,1,-,
|
||||
1138,139,10000,1,-1,-,1412103600,4096483201,ic0146,10,2,,1,,1,-,
|
||||
1139,140,10000,1,-1,-,1412103600,4096483201,ic0147,10,2,,1,,1,-,
|
||||
1140,141,10000,1,-1,-,1412103600,4096483201,ic0148,10,2,,1,,1,-,
|
||||
1141,142,10000,1,-1,-,1412103600,4096483201,ic0149,10,2,,1,,1,-,
|
||||
1142,143,10000,1,-1,-,1412103600,4096483201,ic0150,10,2,,1,,1,-,
|
||||
1143,144,10000,1,-1,-,1412103600,4096483201,ic0151,10,2,,1,,1,-,
|
||||
1144,145,10000,1,-1,-,1412103600,4096483201,ic0152,10,2,,1,,1,-,
|
||||
1145,146,10000,1,-1,-,1412103600,4096483201,ic0153,10,2,,1,,1,-,
|
||||
1146,147,10000,1,-1,-,1412103600,4096483201,ic0154,10,2,,1,,1,-,
|
||||
1147,148,10000,1,-1,-,1412103600,4096483201,ic0155,10,2,,1,,1,-,
|
||||
1148,149,10000,1,-1,-,1412103600,4096483201,ic0156,10,2,,1,,1,-,
|
||||
1149,150,10000,1,-1,-,1412103600,4096483201,ic0157,10,2,,1,,1,-,
|
||||
1150,151,10000,1,-1,-,1412103600,4096483201,ic0158,10,2,,1,,1,-,
|
||||
1151,152,10000,1,-1,-,1412103600,4096483201,ic0159,10,2,,1,,1,-,
|
||||
1152,153,10000,1,-1,-,1412103600,4096483201,ic0160,10,2,,1,,1,-,
|
||||
1153,154,10000,1,-1,-,1412103600,4096483201,ic0161,10,2,,1,,1,-,
|
||||
1154,155,10000,1,-1,-,1412103600,4096483201,ic0162,10,2,,1,,1,-,
|
||||
1155,156,10000,1,-1,-,1412103600,4096483201,ic0163,10,2,,1,,1,-,
|
||||
1156,157,10000,1,-1,-,1412103600,4096483201,ic0164,10,2,,1,,1,-,
|
||||
1157,158,10000,1,-1,-,1412103600,4096483201,ic0165,10,2,,1,,1,-,
|
||||
1158,159,10000,1,-1,-,1412103600,4096483201,ic0166,10,2,,1,,1,-,
|
||||
1159,160,10000,1,-1,-,1412103600,4096483201,ic0167,10,2,,1,,1,-,
|
||||
1160,161,10000,1,-1,-,1412103600,4096483201,ic0168,10,2,,1,,1,-,
|
||||
1161,162,10000,1,-1,-,1412103600,4096483201,ic0169,10,2,,1,,1,-,
|
||||
1162,163,10000,1,-1,-,1412103600,4096483201,ic0170,10,2,,1,,1,-,
|
||||
1163,164,10000,1,-1,-,1412103600,4096483201,ic0171,10,2,,1,,1,-,
|
||||
1164,165,10000,1,-1,-,1412103600,4096483201,ic0172,10,2,,1,,1,-,
|
||||
1165,166,10000,1,-1,-,1412103600,4096483201,ic0173,10,2,,1,,1,-,
|
||||
1166,167,10000,1,-1,-,1412103600,4096483201,ic0174,10,2,,1,,1,-,
|
||||
1167,168,10000,1,-1,-,1412103600,4096483201,ic0175,10,2,,1,,1,-,
|
||||
1168,169,10000,1,-1,-,1412103600,4096483201,ic0178,10,2,,1,,1,-,
|
||||
1169,170,10000,1,-1,-,1412103600,4096483201,ic0179,10,2,,1,,1,-,
|
||||
1170,171,10000,1,-1,-,1412103600,4096483201,ic0180,10,2,,1,,1,-,
|
||||
1171,172,10000,1,-1,-,1412103600,4096483201,ic0182,10,2,,1,,1,-,
|
||||
1172,173,10000,1,-1,-,1412103600,4096483201,ic0183,10,2,,1,,1,-,
|
||||
1173,174,10000,1,-1,-,1412103600,4096483201,ic0184,10,2,,1,,1,-,
|
||||
1174,175,10000,1,-1,-,1412103600,4096483201,ic0185,10,2,,1,,1,-,
|
||||
1175,176,10000,1,-1,-,1412103600,4096483201,ic0186,10,2,,1,,1,-,
|
||||
1176,177,10000,1,-1,-,1412103600,4096483201,ic0187,10,2,,1,,1,-,
|
||||
1177,178,10000,1,-1,-,1412103600,4096483201,ic0188,10,2,,1,,1,-,
|
||||
1178,179,10000,1,-1,-,1412103600,4096483201,ic0189,10,2,,1,,1,-,
|
||||
1179,180,10000,1,-1,-,1412103600,4096483201,ic0190,10,2,,1,,1,-,
|
||||
1180,181,10000,1,-1,-,1412103600,4096483201,ic0191,10,2,,1,,1,-,
|
||||
1181,182,10000,1,-1,-,1412103600,4096483201,ic0192,10,2,,1,,1,-,
|
||||
1182,183,10000,1,-1,-,1412103600,4096483201,ic0193,10,2,,1,,1,-,
|
||||
1183,184,10000,1,-1,-,1412103600,4096483201,ic0194,10,2,,1,,1,-,
|
||||
1184,185,10000,1,-1,-,1412103600,4096483201,ic0195,10,2,,1,,1,-,
|
||||
1185,186,10000,1,-1,-,1412103600,4096483201,ic0196,10,2,,1,,1,-,
|
||||
1186,187,10000,1,-1,-,1412103600,4096483201,ic0198,10,2,,1,,1,-,
|
||||
1187,188,10000,1,-1,-,1412103600,4096483201,ic0199,10,2,,1,,1,-,
|
||||
1188,189,10000,1,-1,-,1412103600,4096483201,ic0200,10,2,,1,,1,-,
|
||||
1189,190,10000,1,-1,-,1412103600,4096483201,ic0201,10,2,,1,,1,-,
|
||||
1190,191,10000,1,-1,-,1412103600,4096483201,ic0202,10,2,,1,,1,-,
|
||||
1191,192,10000,1,-1,-,1412103600,4096483201,ic0203,10,2,,1,,1,-,
|
||||
1192,193,10000,1,-1,-,1412103600,4096483201,ic0204,10,2,,1,,1,-,
|
||||
1193,194,10000,1,-1,-,1412103600,4096483201,ic0205,10,2,,1,,1,-,
|
||||
1194,195,10000,1,-1,-,1412103600,4096483201,ic0206,10,2,,1,,1,-,
|
||||
1195,196,10000,1,-1,-,1412103600,4096483201,ic0207,10,2,,1,,1,-,
|
||||
1196,197,10000,1,-1,-,1412103600,4096483201,ic0208,10,2,,1,,1,-,
|
||||
1197,198,10000,1,-1,-,1412103600,4096483201,ic0209,10,2,,1,,1,-,
|
||||
1198,199,10000,1,-1,-,1412103600,4096483201,ic0210,10,2,,1,,1,-,
|
||||
1199,200,10000,1,-1,-,1412103600,4096483201,ic0211,10,2,,1,,1,-,
|
||||
1200,201,10000,1,-1,-,1412103600,4096483201,ic0212,10,2,,1,,1,-,
|
||||
1201,202,10000,1,-1,-,1412103600,4096483201,ic0213,10,2,,1,,1,-,
|
||||
1202,203,10000,1,-1,-,1412103600,4096483201,ic0214,10,2,,1,,1,-,
|
||||
1203,204,10000,1,-1,-,1412103600,4096483201,ic0215,10,2,,1,,1,-,
|
||||
1204,205,10000,1,-1,-,1412103600,4096483201,ic0216,10,2,,1,,1,-,
|
||||
1205,206,10000,1,-1,-,1412103600,4096483201,ic0217,10,2,,1,,1,-,
|
||||
1206,207,10000,1,-1,-,1412103600,4096483201,ic0218,10,2,,1,,1,-,
|
||||
1207,208,10000,1,-1,-,1412103600,4096483201,ic0219,10,2,,1,,1,-,
|
||||
1208,209,10000,1,-1,-,1412103600,4096483201,ic0220,10,2,,1,,1,-,
|
||||
1209,210,10000,1,-1,-,1412103600,4096483201,ic0221,10,2,,1,,1,-,
|
||||
1210,211,10000,1,-1,-,1412103600,4096483201,ic0222,10,2,,1,,1,-,
|
||||
1211,212,10000,1,-1,-,1412103600,4096483201,ic0223,10,2,,1,,1,-,
|
||||
1212,213,10000,1,-1,-,1412103600,4096483201,ic0224,10,2,,1,,1,-,
|
||||
1213,214,10000,1,-1,-,1412103600,4096483201,ic0225,10,2,,1,,1,-,
|
||||
1214,215,10000,1,-1,-,1412103600,4096483201,ic0226,10,2,,1,,1,-,
|
||||
1215,216,10000,1,-1,-,1412103600,4096483201,ic0227,10,2,,1,,1,-,
|
||||
1216,217,10000,1,-1,-,1412103600,4096483201,ic0228,10,2,,1,,1,-,
|
||||
1217,218,10000,1,-1,-,1412103600,4096483201,ic0229,10,2,,1,,1,-,
|
||||
1218,219,10000,1,-1,-,1412103600,4096483201,ic0230,10,2,,1,,1,-,
|
||||
1219,220,10000,1,-1,-,1412103600,4096483201,ic0231,10,2,,1,,1,-,
|
||||
1220,221,10000,1,-1,-,1412103600,4096483201,ic0232,10,2,,1,,1,-,
|
||||
1221,222,10000,1,-1,-,1412103600,4096483201,ic0233,10,2,,1,,1,-,
|
||||
1222,223,10000,1,-1,-,1412103600,4096483201,ic0234,10,2,,1,,1,-,
|
||||
1223,224,10000,1,-1,-,1412103600,4096483201,ic0235,10,2,,1,,1,-,
|
||||
1224,225,10000,1,-1,-,1412103600,4096483201,ic0236,10,2,,1,,1,-,
|
||||
1225,226,10000,1,-1,-,1412103600,4096483201,ic0237,10,2,,1,,1,-,
|
||||
1226,227,10000,1,-1,-,1412103600,4096483201,ic0239,10,2,,1,,1,-,
|
||||
1227,228,10000,1,-1,-,1412103600,4096483201,ic0240,10,2,,1,,1,-,
|
||||
1228,229,10000,1,-1,-,1412103600,4096483201,ic0241,10,2,,1,,1,-,
|
||||
1229,230,10000,1,-1,-,1412103600,4096483201,ic0242,10,2,,1,,1,-,
|
||||
1230,231,10000,1,-1,-,1412103600,4096483201,ic0243,10,2,,1,,1,-,
|
||||
1231,232,10000,1,-1,-,1412103600,4096483201,ic0244,10,2,,1,,1,-,
|
||||
1232,233,10000,1,-1,-,1412103600,4096483201,ic0245,10,2,,1,,1,-,
|
||||
1233,234,10000,1,-1,-,1412103600,4096483201,ic0246,10,2,,1,,1,-,
|
||||
1234,235,10000,1,-1,-,1412103600,4096483201,ic0249,10,2,,1,,1,-,
|
||||
1235,236,10000,1,-1,-,1412103600,4096483201,ic0250,10,2,,1,,1,-,
|
||||
1236,237,10000,1,-1,-,1412103600,4096483201,ic0251,10,2,,1,,1,-,
|
||||
1237,238,10000,1,-1,-,1412103600,4096483201,ic0252,10,2,,1,,1,-,
|
||||
1238,239,10000,1,-1,-,1412103600,4096483201,ic0253,10,2,,1,,1,-,
|
||||
1239,240,10000,1,-1,-,1412103600,4096483201,ic0254,10,2,,1,,1,-,
|
||||
1240,241,10000,1,-1,-,1412103600,4096483201,ic0255,10,2,,1,,1,-,
|
||||
1241,242,10000,1,-1,-,1412103600,4096483201,ic0256,10,2,,1,,1,-,
|
||||
1242,243,10000,1,-1,-,1412103600,4096483201,ic0257,10,2,,1,,1,-,
|
||||
1243,244,10000,1,-1,-,1412103600,4096483201,ic0258,10,2,,1,,1,-,
|
||||
1244,245,10000,1,-1,-,1412103600,4096483201,ic0259,10,2,,1,,1,-,
|
||||
1245,246,10000,1,-1,-,1412103600,4096483201,ic0260,10,2,,1,,1,-,
|
||||
1246,247,10000,1,-1,-,1412103600,4096483201,ic0261,10,2,,1,,1,-,
|
||||
1247,248,10000,1,-1,-,1412103600,4096483201,ic0262,10,2,,1,,1,-,
|
||||
1248,249,10000,1,-1,-,1412103600,4096483201,ic0263,10,2,,1,,1,-,
|
||||
1249,250,10000,1,-1,-,1412103600,4096483201,ic0265,10,2,,1,,1,-,
|
||||
1250,251,10000,1,-1,-,1412103600,4096483201,ic0266,10,2,,1,,1,-,
|
||||
1251,252,10000,1,-1,-,1412103600,4096483201,ic0267,10,2,,1,,1,-,
|
||||
1252,253,10000,1,-1,-,1412103600,4096483201,ic0268,10,2,,1,,1,-,
|
||||
1253,254,10000,1,-1,-,1412103600,4096483201,ic0269,10,2,,1,,1,-,
|
||||
1254,255,10000,1,-1,-,1412103600,4096483201,ic0270,10,2,,1,,1,-,
|
||||
1255,256,10000,1,-1,-,1412103600,4096483201,ic0271,10,2,,1,,1,-,
|
||||
1256,257,10000,1,-1,-,1412103600,4096483201,ic0272,10,2,,1,,1,-,
|
||||
1257,258,10000,1,-1,-,1412103600,4096483201,ic0273,10,2,,1,,1,-,
|
||||
1258,259,10000,1,-1,-,1412103600,4096483201,ic0274,10,2,,1,,1,-,
|
||||
1259,260,10000,1,-1,-,1412103600,4096483201,ic0276,10,2,,1,,1,-,
|
||||
1260,261,10000,1,-1,-,1412103600,4096483201,ic0277,10,2,,1,,1,-,
|
||||
1261,262,10000,1,-1,-,1412103600,4096483201,ic0278,10,2,,1,,1,-,
|
||||
1262,263,10000,1,-1,-,1412103600,4096483201,ic0279,10,2,,1,,1,-,
|
||||
1263,264,10000,1,-1,-,1412103600,4096483201,ic0280,10,2,,1,,1,-,
|
||||
1264,265,10000,1,-1,-,1412103600,4096483201,ic0281,10,2,,1,,1,-,
|
||||
1265,266,10000,1,-1,-,1412103600,4096483201,ic0282,10,2,,1,,1,-,
|
||||
1266,267,10000,1,-1,-,1412103600,4096483201,ic0283,10,2,,1,,1,-,
|
||||
1267,268,10000,1,-1,-,1412103600,4096483201,ic0284,10,2,,1,,1,-,
|
||||
1268,269,10000,1,-1,-,1412103600,4096483201,ic0286,10,2,,1,,1,-,
|
||||
1269,270,10000,1,-1,-,1412103600,4096483201,ic0287,10,2,,1,,1,-,
|
||||
1270,271,10000,1,-1,-,1412103600,4096483201,ic0288,10,2,,1,,1,-,
|
||||
1271,272,10000,1,-1,-,1412103600,4096483201,ic0289,10,2,,1,,1,-,
|
||||
1272,273,10000,1,-1,-,1412103600,4096483201,ic0290,10,2,,1,,1,-,
|
||||
1273,274,10000,1,-1,-,1412103600,4096483201,ic0291,10,2,,1,,1,-,
|
||||
1274,275,10000,1,-1,-,1412103600,4096483201,ic0292,10,2,,1,,1,-,
|
||||
1275,276,10000,1,-1,-,1412103600,4096483201,ic0293,10,2,,1,,1,-,
|
||||
1276,277,10000,1,-1,-,1412103600,4096483201,ic0294,10,2,,1,,1,-,
|
||||
1277,278,10000,1,-1,-,1412103600,4096483201,ic0295,10,2,,1,,1,-,
|
||||
1278,279,10000,1,-1,-,1412103600,4096483201,ic0296,10,2,,1,,1,-,
|
||||
1279,280,10000,1,-1,-,1412103600,4096483201,ic0297,10,2,,1,,1,-,
|
||||
1280,281,10000,1,-1,-,1412103600,4096483201,ic0298,10,2,,1,,1,-,
|
||||
1281,282,10000,1,-1,-,1412103600,4096483201,ic0299,10,2,,1,,1,-,
|
||||
1282,283,10000,1,-1,-,1412103600,4096483201,ic0300,10,2,,1,,1,-,
|
||||
1283,284,10000,1,-1,-,1412103600,4096483201,ic0301,10,2,,1,,1,-,
|
||||
1284,285,10000,1,-1,-,1412103600,4096483201,ic0302,10,2,,1,,1,-,
|
||||
1285,286,10000,1,-1,-,1412103600,4096483201,ic1000,10,2,,1,,1,-,
|
||||
1286,287,10000,1,-1,-,1412103600,4096483201,ic1001,10,2,,1,,1,-,
|
||||
1287,288,10000,1,-1,-,1412103600,4096483201,ic1002,10,2,,1,,1,-,
|
||||
1288,289,10000,1,-1,-,1412103600,4096483201,ic1004,10,2,,1,,1,-,
|
||||
1289,290,10000,1,-1,-,1412103600,4096483201,ic1005,10,2,,1,,1,-,
|
||||
1290,291,10000,1,-1,-,1412103600,4096483201,ic1006,10,2,,1,,1,-,
|
||||
1291,292,10000,1,-1,-,1412103600,4096483201,ic1007,10,2,,1,,1,-,
|
||||
1292,293,10000,1,-1,-,1412103600,4096483201,ic1008,10,2,,1,,1,-,
|
||||
1293,294,10000,1,-1,-,1412103600,4096483201,ic1010,10,2,,1,,1,-,
|
||||
1294,295,10000,1,-1,-,1412103600,4096483201,ic1011,10,2,,1,,1,-,
|
||||
1295,296,10000,1,-1,-,1412103600,4096483201,ic1012,10,2,,1,,1,-,
|
||||
1296,297,10000,1,-1,-,1412103600,4096483201,ic1013,10,2,,1,,1,-,
|
||||
1297,298,10000,1,-1,-,1412103600,4096483201,ic1014,10,2,,1,,1,-,
|
||||
1298,299,10000,1,-1,-,1412103600,4096483201,ic1015,10,2,,1,,1,-,
|
||||
1299,300,10000,1,-1,-,1412103600,4096483201,ic1016,10,2,,1,,1,-,
|
||||
1300,301,10000,1,-1,-,1412103600,4096483201,ic1017,10,2,,1,,1,-,
|
||||
1301,302,10000,1,-1,-,1412103600,4096483201,ic1018,10,2,,1,,1,-,
|
||||
1302,303,10000,1,-1,-,1412103600,4096483201,ic1020,10,2,,1,,1,-,
|
||||
1303,304,10000,1,-1,-,1412103600,4096483201,ic1021,10,2,,1,,1,-,
|
||||
1304,305,10000,1,-1,-,1412103600,4096483201,ic1022,10,2,,1,,1,-,
|
||||
1305,306,10000,1,-1,-,1412103600,4096483201,ic1023,10,2,,1,,1,-,
|
||||
1306,307,10000,1,-1,-,1412103600,4096483201,ic1024,10,2,,1,,1,-,
|
||||
1307,308,10000,1,-1,-,1412103600,4096483201,ic1025,10,2,,1,,1,-,
|
||||
1308,309,10000,1,-1,-,1412103600,4096483201,ic1026,10,2,,1,,1,-,
|
||||
1309,310,10000,1,-1,-,1412103600,4096483201,ic1027,10,2,,1,,1,-,
|
||||
1310,311,10000,1,-1,-,1412103600,4096483201,ic1028,10,2,,1,,1,-,
|
||||
1311,312,10000,1,-1,-,1412103600,4096483201,ic1029,10,2,,1,,1,-,
|
||||
1312,313,10000,1,-1,-,1412103600,4096483201,ic1030,10,2,,1,,1,-,
|
||||
1313,314,10000,1,-1,-,1412103600,4096483201,ic1031,10,2,,1,,1,-,
|
||||
1314,315,10000,1,-1,-,1412103600,4096483201,ic1032,10,2,,1,,1,-,
|
||||
1315,316,10000,1,-1,-,1412103600,4096483201,ic1033,10,2,,1,,1,-,
|
||||
1316,317,10000,1,-1,-,1412103600,4096483201,ic1034,10,2,,1,,1,-,
|
||||
1317,318,10000,1,-1,-,1412103600,4096483201,ic1035,10,2,,1,,1,-,
|
||||
1318,319,10000,1,-1,-,1412103600,4096483201,ic1036,10,2,,1,,1,-,
|
||||
1319,320,10000,1,-1,-,1412103600,4096483201,ic1037,10,2,,1,,1,-,
|
||||
1320,321,10000,1,-1,-,1412103600,4096483201,ic1038,10,2,,1,,1,-,
|
||||
1321,322,10000,1,-1,-,1412103600,4096483201,ic1039,10,2,,1,,1,-,
|
||||
1322,323,10000,1,-1,-,1412103600,4096483201,ic1040,10,2,,1,,1,-,
|
||||
1323,324,10000,1,-1,-,1412103600,4096483201,ic1041,10,2,,1,,1,-,
|
||||
1324,325,10000,1,-1,-,1412103600,4096483201,ic1042,10,2,,1,,1,-,
|
||||
1325,326,10000,1,-1,-,1412103600,4096483201,ic1043,10,2,,1,,1,-,
|
||||
1326,327,10000,1,-1,-,1412103600,4096483201,ic1044,10,2,,1,,1,-,
|
||||
1327,328,10000,1,-1,-,1412103600,4096483201,ic1045,10,2,,1,,1,-,
|
||||
1328,329,10000,1,-1,-,1412103600,4096483201,ic1046,10,2,,1,,1,-,
|
||||
1329,330,10000,1,-1,-,1412103600,4096483201,ic1047,10,2,,1,,1,-,
|
||||
1330,331,10000,1,-1,-,1412103600,4096483201,ic1048,10,2,,1,,1,-,
|
||||
1331,332,10000,1,-1,-,1412103600,4096483201,ic1049,10,2,,1,,1,-,
|
||||
1332,333,10000,1,-1,-,1412103600,4096483201,ic1050,10,2,,1,,1,-,
|
||||
1333,334,10000,1,-1,-,1412103600,4096483201,ic1051,10,2,,1,,1,-,
|
||||
1334,335,10000,1,-1,-,1412103600,4096483201,ic1052,10,2,,1,,1,-,
|
||||
1335,336,10000,1,-1,-,1412103600,4096483201,ic1053,10,2,,1,,1,-,
|
||||
1336,337,10000,1,-1,-,1412103600,4096483201,ic1054,10,2,,1,,1,-,
|
||||
1337,338,10000,1,-1,-,1412103600,4096483201,ic1055,10,2,,1,,1,-,
|
||||
1338,339,10000,1,-1,-,1412103600,4096483201,ic1056,10,2,,1,,1,-,
|
||||
1339,340,10000,1,-1,-,1412103600,4096483201,ic1057,10,2,,1,,1,-,
|
||||
1340,341,10000,1,-1,-,1412103600,4096483201,ic1058,10,2,,1,,1,-,
|
||||
1341,342,10000,1,-1,-,1412103600,4096483201,ic1059,10,2,,1,,1,-,
|
||||
1342,343,10000,1,-1,-,1412103600,4096483201,ic1060,10,2,,1,,1,-,
|
||||
1343,344,10000,1,-1,-,1412103600,4096483201,ic1061,10,2,,1,,1,-,
|
||||
1344,345,10000,1,-1,-,1412103600,4096483201,ic1062,10,2,,1,,1,-,
|
||||
1345,346,10000,1,-1,-,1412103600,4096483201,ic1063,10,2,,1,,1,-,
|
||||
1346,347,10000,1,-1,-,1412103600,4096483201,ic1064,10,2,,1,,1,-,
|
||||
1347,348,10000,1,-1,-,1412103600,4096483201,ic1065,10,2,,1,,1,-,
|
||||
1348,349,10000,1,-1,-,1412103600,4096483201,ic1066,10,2,,1,,1,-,
|
||||
1349,350,10000,1,-1,-,1412103600,4096483201,ic1067,10,2,,1,,1,-,
|
||||
1350,351,10000,1,-1,-,1412103600,4096483201,ic1068,10,2,,1,,1,-,
|
||||
1351,352,10000,1,-1,-,1412103600,4096483201,ic1069,10,2,,1,,1,-,
|
||||
1352,353,10000,1,-1,-,1412103600,4096483201,ic1070,10,2,,1,,1,-,
|
||||
1353,354,10000,1,-1,-,1412103600,4096483201,ic1071,10,2,,1,,1,-,
|
||||
1354,355,10000,1,-1,-,1412103600,4096483201,ic1072,10,2,,1,,1,-,
|
||||
1355,356,10000,1,-1,-,1412103600,4096483201,ic1073,10,2,,1,,1,-,
|
||||
1356,357,10000,1,-1,-,1412103600,4096483201,ic1500,10,2,,1,,1,-,
|
||||
1357,358,10000,1,-1,-,1412103600,4096483201,ic1501,10,2,,1,,1,-,
|
||||
1358,359,10000,1,-1,-,1412103600,4096483201,ic1502,10,2,,1,,1,-,
|
||||
1359,360,10000,1,-1,-,1412103600,4096483201,ic1503,10,2,,1,,1,-,
|
||||
1360,361,10000,1,-1,-,1412103600,4096483201,ic1504,10,2,,1,,1,-,
|
||||
1361,362,10000,1,-1,-,1412103600,4096483201,ic1505,10,2,,1,,1,-,
|
||||
1362,363,10000,1,-1,-,1412103600,4096483201,ic1506,10,2,,1,,1,-,
|
||||
1363,364,10000,1,-1,-,1412103600,4096483201,ic1507,10,2,,1,,1,-,
|
||||
1364,365,10000,1,-1,-,1412103600,4096483201,ic1508,10,2,,1,,1,-,
|
||||
1365,366,10000,1,-1,-,1412103600,4096483201,ic1509,10,2,,1,,1,-,
|
||||
1366,367,10000,1,-1,-,1412103600,4096483201,ic1510,10,2,,1,,1,-,
|
||||
1367,368,10000,1,-1,-,1412103600,4096483201,ic1511,10,2,,1,,1,-,
|
||||
1368,369,10000,1,-1,-,1412103600,4096483201,ic1512,10,2,,1,,1,-,
|
||||
1369,370,10000,1,-1,-,1412103600,4096483201,ic1513,10,2,,1,,1,-,
|
||||
1370,371,10000,1,-1,-,1412103600,4096483201,ic1514,10,2,,1,,1,-,
|
||||
1371,372,10000,1,-1,-,1412103600,4096483201,ic1515,10,2,,1,,1,-,
|
||||
1372,373,10000,1,-1,-,1412103600,4096483201,ic1516,10,2,,1,,1,-,
|
||||
1373,374,10000,1,-1,-,1412103600,4096483201,ic1517,10,2,,1,,1,-,
|
||||
1374,375,10000,1,-1,-,1412103600,4096483201,ic1518,10,2,,1,,1,-,
|
||||
1375,376,10000,1,-1,-,1412103600,4096483201,ic1519,10,2,,1,,1,-,
|
||||
1376,377,10000,1,-1,-,1412103600,4096483201,ic1520,10,2,,1,,1,-,
|
||||
1377,378,10000,1,-1,-,1412103600,4096483201,ic1521,10,2,,1,,1,-,
|
||||
1378,379,10000,1,-1,-,1412103600,4096483201,ic1522,10,2,,1,,1,-,
|
||||
1379,380,10000,1,-1,-,1412103600,4096483201,ic1523,10,2,,1,,1,-,
|
||||
1380,381,10000,1,-1,-,1412103600,4096483201,ic1524,10,2,,1,,1,-,
|
||||
1381,382,10000,1,-1,-,1412103600,4096483201,ic1525,10,2,,1,,1,-,
|
||||
1382,383,10000,1,-1,-,1412103600,4096483201,ic1526,10,2,,1,,1,-,
|
||||
1383,384,10000,1,-1,-,1412103600,4096483201,ic1527,10,2,,1,,1,-,
|
||||
1384,385,10000,1,-1,-,1412103600,4096483201,ic1528,10,2,,1,,1,-,
|
||||
1385,386,10000,1,-1,-,1412103600,4096483201,ic1529,10,2,,1,,1,-,
|
||||
1386,387,10000,1,-1,-,1412103600,4096483201,ic1530,10,2,,1,,1,-,
|
||||
1387,388,10000,1,-1,-,1412103600,4096483201,ic1531,10,2,,1,,1,-,
|
||||
1388,389,10000,1,-1,-,1412103600,4096483201,ic1532,10,2,,1,,1,-,
|
||||
1389,390,10000,1,-1,-,1412103600,4096483201,ic1533,10,2,,1,,1,-,
|
||||
1390,391,10000,1,-1,-,1412103600,4096483201,ic1534,10,2,,1,,1,-,
|
||||
1391,392,10000,1,-1,-,1412103600,4096483201,ic1535,10,2,,1,,1,-,
|
||||
1392,393,10000,1,-1,-,1412103600,4096483201,ic1536,10,2,,1,,1,-,
|
||||
1393,394,10000,1,-1,-,1412103600,4096483201,ic1537,10,2,,1,,1,-,
|
||||
1394,395,10000,1,-1,-,1412103600,4096483201,ic1538,10,2,,1,,1,-,
|
||||
1395,396,10000,1,-1,-,1412103600,4096483201,ic1539,10,2,,1,,1,-,
|
||||
1396,397,10000,1,-1,-,1412103600,4096483201,ic1540,10,2,,1,,1,-,
|
||||
1397,398,10000,1,-1,-,1412103600,4096483201,ic1541,10,2,,1,,1,-,
|
||||
1398,399,10000,1,-1,-,1412103600,4096483201,ic1542,10,2,,1,,1,-,
|
||||
1399,400,10000,1,-1,-,1412103600,4096483201,ic1543,10,2,,1,,1,-,
|
||||
1400,401,10000,1,-1,-,1412103600,4096483201,ic1544,10,2,,1,,1,-,
|
||||
1401,402,10000,1,-1,-,1412103600,4096483201,ic1545,10,2,,1,,1,-,
|
||||
1402,403,10000,1,-1,-,1412103600,4096483201,ic1546,10,2,,1,,1,-,
|
||||
1403,404,10000,1,-1,-,1412103600,4096483201,ic1547,10,2,,1,,1,-,
|
||||
1404,405,10000,1,-1,-,1412103600,4096483201,ic1550,10,2,,1,,1,-,
|
||||
1405,406,10000,1,-1,-,1412103600,4096483201,ic1551,10,2,,1,,1,-,
|
||||
1406,407,10000,1,-1,-,1412103600,4096483201,ic1552,10,2,,1,,1,-,
|
||||
1407,408,10000,1,-1,-,1412103600,4096483201,ic1553,10,2,,1,,1,-,
|
||||
1408,409,10000,1,-1,-,1412103600,4096483201,ic1554,10,2,,1,,1,-,
|
||||
1409,410,10000,1,-1,-,1412103600,4096483201,ic1555,10,2,,1,,1,-,
|
||||
1410,411,10000,1,-1,-,1412103600,4096483201,ic1556,10,2,,1,,1,-,
|
||||
1411,412,10000,1,-1,-,1412103600,4096483201,ic1557,10,2,,1,,1,-,
|
||||
1412,413,10000,1,-1,-,1412103600,4096483201,ic1558,10,2,,1,,1,-,
|
||||
1413,414,10000,1,-1,-,1412103600,4096483201,ic1559,10,2,,1,,1,-,
|
||||
1414,415,10000,1,-1,-,1412103600,4096483201,ic1560,10,2,,1,,1,-,
|
||||
1415,416,10000,1,-1,-,1412103600,4096483201,ic1561,10,2,,1,,1,-,
|
||||
1416,417,10000,1,-1,-,1412103600,4096483201,ic1562,10,2,,1,,1,-,
|
||||
1417,418,10000,1,-1,-,1412103600,4096483201,ic1563,10,2,,1,,1,-,
|
||||
1418,419,10000,1,-1,-,1412103600,4096483201,ic1600,10,2,,1,,1,-,
|
||||
1419,420,10000,1,-1,-,1412103600,4096483201,ic1601,10,2,,1,,1,-,
|
||||
1420,421,10000,1,-1,-,1412103600,4096483201,ic1602,10,2,,1,,1,-,
|
||||
1421,422,10000,1,-1,-,1412103600,4096483201,ic1603,10,2,,1,,1,-,
|
||||
1422,423,10000,1,-1,-,1412103600,4096483201,ic1604,10,2,,1,,1,-,
|
||||
1423,424,10000,1,-1,-,1412103600,4096483201,ic1605,10,2,,1,,1,-,
|
||||
1424,425,10000,1,-1,-,1412103600,4096483201,ic1606,10,2,,1,,1,-,
|
||||
1425,426,10000,1,-1,-,1412103600,4096483201,ic1607,10,2,,1,,1,-,
|
||||
1426,427,10000,1,-1,-,1412103600,4096483201,ic1608,10,2,,1,,1,-,
|
||||
1427,428,10000,1,-1,-,1412103600,4096483201,ic1609,10,2,,1,,1,-,
|
||||
1428,429,10000,1,-1,-,1412103600,4096483201,ic1610,10,2,,1,,1,-,
|
||||
1429,430,10000,1,-1,-,1412103600,4096483201,ic1611,10,2,,1,,1,-,
|
||||
1430,431,10000,1,-1,-,1412103600,4096483201,ic1612,10,2,,1,,1,-,
|
||||
1431,432,10000,1,-1,-,1412103600,4096483201,ic1613,10,2,,1,,1,-,
|
||||
1432,433,10000,1,-1,-,1412103600,4096483201,ic1614,10,2,,1,,1,-,
|
||||
1433,434,10000,1,-1,-,1412103600,4096483201,ic1615,10,2,,1,,1,-,
|
||||
1434,435,10000,1,-1,-,1412103600,4096483201,ic1616,10,2,,1,,1,-,
|
||||
1435,436,10000,1,-1,-,1412103600,4096483201,ic1617,10,2,,1,,1,-,
|
||||
1436,437,10000,1,-1,-,1412103600,4096483201,ic1618,10,2,,1,,1,-,
|
||||
1437,438,10000,1,-1,-,1412103600,4096483201,ic1619,10,2,,1,,1,-,
|
||||
1438,439,10000,1,-1,-,1412103600,4096483201,ic1620,10,2,,1,,1,-,
|
||||
1439,440,10000,1,-1,-,1412103600,4096483201,ic1622,10,2,,1,,1,-,
|
||||
1440,441,10000,1,-1,-,1412103600,4096483201,ic1623,10,2,,1,,1,-,
|
||||
1441,442,10000,1,-1,-,1412103600,4096483201,ic1624,10,2,,1,,1,-,
|
||||
1442,443,10000,1,-1,-,1412103600,4096483201,ic1625,10,2,,1,,1,-,
|
||||
1443,444,10000,1,-1,-,1412103600,4096483201,ic1626,10,2,,1,,1,-,
|
||||
1444,445,10000,1,-1,-,1412103600,4096483201,ic1700,10,2,,1,,1,-,
|
||||
1445,446,10000,1,-1,-,1412103600,4096483201,ic1701,10,2,,1,,1,-,
|
||||
1446,447,10000,1,-1,-,1412103600,4096483201,ic1702,10,2,,1,,1,-,
|
||||
1447,448,10000,1,-1,-,1412103600,4096483201,ic1703,10,2,,1,,1,-,
|
||||
1448,449,10000,1,-1,-,1412103600,4096483201,ic1704,10,2,,1,,1,-,
|
||||
1449,450,10000,1,-1,-,1412103600,4096483201,ic1705,10,2,,1,,1,-,
|
||||
1450,451,10000,1,-1,-,1412103600,4096483201,ic1706,10,2,,1,,1,-,
|
||||
1451,452,10000,1,-1,-,1412103600,4096483201,ic1717,10,2,,1,,1,-,
|
||||
|
13
titles/cxb/rss2_data/Shop/ShopList_Music.csv
Normal file
13
titles/cxb/rss2_data/Shop/ShopList_Music.csv
Normal file
@@ -0,0 +1,13 @@
|
||||
shopID.,整理用No.,Ver.,出現フラグ,出現フラグ参照ID,条件,出現時間,消滅時間,MusicCode,価格,表示タイプ,Text,Type,Value(op),Value,対象曲,Difficulty(op),Difficulty,Level(op),Level,Grade(Op),Grade,GaugeType(op),GaugeType,HS(op),HS,APP,DAP,F-V,F-H,FullCombo,Combo(op),Combo,ClearRate(op),ClearRate,プレイ日,地域,
|
||||
0,1,1.00.00,3,1,-,1411697520.0288,4096483201.0288,megaro,0,0,-,-1,-1,-1,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
1,2,1.00.00,1,-1,-,1411697520.0288,4096483201.0288,nature,10,2,???,-1,-1,-1,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
2,3,1.00.00,2,-1,-,1412103600.0288,4096483201.992,hopesb,30,1,「Landing on the moon」をSTANDARD以上でクリアする。,0,-1,-1,landin,1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
3,4,1.00.00,1,-1,-,1412103600.0288,4096483201.992,flower,10,0,-,-1,-1,-1,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
4,5,1.00.02,1,-1,1&2&3,1412103600.0288,4096483201.992,reseed3,10,0,「Human Nature」「Hopes Bright」「Flowerwall」をクリアする。,-1,-1,-1,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
5,6,1.00.00,1,-1,-,1411697520.0288,4096483201.0288,dennou,20,1,-,0,-1,-1,flower,1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,,,
|
||||
6,7,1.00.00,2,-1,5&7,1411697520.0288,4096483201.0288,romanc,10,1,-,-1,-1,-1,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
7,8,1.00.00,1,-1,-,1411697520.0288,4096483201.0288,landin,40,1,-,-1,-1,-1,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
8,9,1.00.00,1,-1,7,1411697520.0288,4096483201.0288,ididid,50,0,-,-1,-1,-1,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,,,
|
||||
9,10,1.00.00,1,-1,-,1411697520.0288,4096483201.0288,crissc,60,0,MASTER以上の2曲S+以上フルコンボクリアする。,1,1,2,-,1,2,-1,0,1,1,1,2,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,,,
|
||||
10,11,1.00.00,1,-1,-,1411697520.0288,4096483201.0288,dazzli,70,1,MASTER以上の4曲S+以上クリアする。,1,1,4,-,1,2,-1,0,1,1,1,2,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,,,
|
||||
11,12,1.00.00,1,-1,-,1411697520.0288,4096483201.0288,izimed,987654,1,MASTER以上の7曲S+以上クリアする。,1,1,7,-,1,2,-1,0,1,1,1,2,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,,,
|
||||
|
3
titles/cxb/rss2_data/Shop/ShopList_Sale.csv
Normal file
3
titles/cxb/rss2_data/Shop/ShopList_Sale.csv
Normal file
@@ -0,0 +1,3 @@
|
||||
saleID.,開始日,終了日,ShopID,Price,
|
||||
0,1411696799,4096483201,0,7000,
|
||||
1,1411783199,4096483201,1,7000,
|
||||
|
4
titles/cxb/rss2_data/Shop/ShopList_SkinBg.csv
Normal file
4
titles/cxb/rss2_data/Shop/ShopList_SkinBg.csv
Normal file
@@ -0,0 +1,4 @@
|
||||
shopID.,整理用No.,Ver.,出現フラグ,出現フラグ参照ID,条件,出現時間,消滅時間,ItemCode,価格,表示タイプ,Text,Type,Value(op),Value,対象曲,Difficulty(op),Difficulty,Level(op),Level,Grade(Op),Grade,GaugeType(op),GaugeType,HS(op)i,HS,APP,DAP,F-V,F-H,FullCombo,Combo(op),Combo,ClearRate(op),ClearRate,プレイ日,地域,
|
||||
3000,1,10000,1,-1,-,1411697520,4096483201,skb0000,10,1,MASTER以上の2曲S+以上フルコンボクリアする。,1,1,1,-,1,2,-1,-1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
3001,2,10000,1,-1,-,1411697520,4096483201,skb0001,10,1,Next Frontier (Master)をクリア,0,-1,-1,bleeze,1,2,-1,-1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
3002,3,10000,1,-1,-,1412103600,4096483201,skb0002,10,2,Master以上を1曲をS+以上でクリアする。,1,1,1,-,1,2,-1,-1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,1,
|
||||
|
11
titles/cxb/rss2_data/Shop/ShopList_SkinEffect.csv
Normal file
11
titles/cxb/rss2_data/Shop/ShopList_SkinEffect.csv
Normal file
@@ -0,0 +1,11 @@
|
||||
shopID.,整理用No.,Ver.,出現フラグ,出現フラグ参照ID,条件,出現時間,消滅時間,ItemCode,価格,表示タイプ,Text,Type,Value(op),Value,対象曲,Difficulty(op),Difficulty,Level(op),Level,Grade(Op),Grade,GaugeType(op),GaugeType,HS(op)i,HS,APP,DAP,F-V,F-H,FullCombo,Combo(op),Combo,ClearRate(op),ClearRate,プレイ日,地域,
|
||||
5000,1,10000,1,-1,-,1411697520,4096483201,ske0000,10,1,MASTER以上の2曲S+以上フルコンボクリアする。,1,1,1,-,1,2,-1,-1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
5001,2,10000,1,-1,-,1411697520,4096483201,ske0001,10,1,Next Frontier (Master)をクリア,0,-1,-1,megaro,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
5002,3,10000,1,-1,-,1412103600,4096483201,ske0002,10,2,Master以上を1曲をS+以上でクリアする。,1,1,1,-,1,2,-1,-1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,1,
|
||||
5003,4,10000,1,-1,-,1412103600,4096483201,ske0003,10,0,Master以上を1曲をS+以上でクリアする。,1,1,1,-,1,2,-1,-1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
5004,5,10000,1,-1,-,1412103600,4096483201,ske0004,10,2,2曲クリア,1,1,2,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
5005,5,10000,1,-1,-,1412103600,4096483201,ske0005,10,2,3曲クリア,1,1,3,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
5006,5,10000,1,-1,-,1412103600,4096483201,ske0006,10,2,4曲クリア,1,1,4,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
5007,5,10000,1,-1,-,1412103600,4096483201,ske0007,10,2,5曲クリア,1,1,5,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
5008,5,10000,1,-1,-,1412103600,4096483201,ske0008,10,2,6曲クリア,1,1,6,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
5009,5,10000,1,-1,-,1412103600,4096483201,ske0009,10,2,7曲クリア,1,1,7,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
|
6
titles/cxb/rss2_data/Shop/ShopList_SkinNotes.csv
Normal file
6
titles/cxb/rss2_data/Shop/ShopList_SkinNotes.csv
Normal file
@@ -0,0 +1,6 @@
|
||||
shopID.,整理用No.,Ver.,出現フラグ,出現フラグ参照ID,条件,出現時間,消滅時間,ItemCode,価格,表示タイプ,Text,Type,Value(op),Value,対象曲,Difficulty(op),Difficulty,Level(op),Level,Grade(Op),Grade,GaugeType(op),GaugeType,HS(op)i,HS,APP,DAP,F-V,F-H,FullCombo,Combo(op),Combo,ClearRate(op),ClearRate,プレイ日,地域,
|
||||
4000,1,10000,1,-1,-,1411697520,4096483201,skt0000,10,1,MASTER以上の2曲S+以上フルコンボクリアする。,1,1,1,-,1,2,-1,-1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
4001,2,10000,1,-1,-,1411697520,4096483201,skt0001,10,1,Next Frontier (Master)をクリア,0,-1,-1,megaro,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
4002,3,10000,1,-1,-,1412103600,4096483201,skt0002,10,2,Master以上を1曲をS+以上でクリアする。,1,1,1,-,1,2,-1,-1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,1,
|
||||
4003,4,10000,1,-1,-,1412103600,4096483201,skt0003,10,0,Master以上を1曲をS+以上でクリアする。,1,1,1,-,1,2,-1,-1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
4004,5,10000,1,-1,-,1412103600,4096483201,skt0004,10,2,aaaaaaaaaaaaaaaaa,1,1,20,-,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,,,
|
||||
|
265
titles/cxb/rss2_data/Shop/ShopList_Title.csv
Normal file
265
titles/cxb/rss2_data/Shop/ShopList_Title.csv
Normal file
@@ -0,0 +1,265 @@
|
||||
2000,1001,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2001,1002,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2002,1003,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2003,1004,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2004,1005,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2005,1006,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2006,1007,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2007,1008,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2008,1009,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2009,1010,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2010,1011,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2011,1012,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2012,1013,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2013,1014,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2014,1015,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2015,1016,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2016,1017,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2017,1018,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2018,1019,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2019,1020,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2020,1021,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2021,1022,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2022,1023,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2023,1024,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2024,1025,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2025,1026,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2026,1027,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2027,1028,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2028,1029,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2029,1030,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2030,1031,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2031,1032,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2032,1033,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2033,1034,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2034,1035,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2035,1036,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2036,1037,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2037,1038,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2038,1039,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2039,1040,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2040,1041,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2041,1042,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2042,1043,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2043,1044,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2044,1045,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2045,1046,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2046,1047,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2047,1048,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2048,1049,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2049,1050,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2050,1051,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2051,1052,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2052,1053,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2053,1054,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2054,1055,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2055,1056,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2056,1057,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2057,1058,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2058,1059,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2059,1060,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2060,1061,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2061,1062,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2062,1063,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2063,1064,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2064,1065,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2065,1066,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2066,1067,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2067,1068,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2068,1069,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2069,1070,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2070,1071,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2071,1072,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2072,1073,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2073,1074,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2074,1075,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2075,1076,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2076,1077,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2077,1078,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2078,1079,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2079,1080,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2080,1081,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2081,1082,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2082,1083,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2083,1084,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2084,1085,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2085,1086,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2086,1087,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2087,1088,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2088,1089,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2089,1090,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2090,1091,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2091,1092,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2092,1093,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2093,1094,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2094,1095,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2095,1096,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2096,1097,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2097,1098,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2098,1099,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2099,1100,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2100,1101,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2101,1102,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2102,1103,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2103,1104,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2104,1105,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2105,1106,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2106,1107,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2107,1108,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2108,1109,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2109,1110,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2110,1111,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2111,1112,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2112,1113,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2113,1114,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2114,1115,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2115,1116,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2116,1117,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2117,1118,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2118,1119,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2119,1120,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2120,1121,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2121,1122,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2122,1123,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2123,1124,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2124,1125,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2125,1126,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2126,1127,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2127,1128,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2128,1129,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2129,1130,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2130,1131,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2131,1132,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2132,1133,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2133,1134,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2134,1135,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2135,1136,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2136,1137,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2137,1138,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2138,1139,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2139,1140,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2140,1141,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2141,1142,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2142,1143,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2143,1144,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2144,1145,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2145,1146,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2146,1147,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2147,1148,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2148,1149,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2149,1150,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2150,1151,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2151,1152,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2152,1153,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2153,1154,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2154,1155,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2155,1156,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2156,1157,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2157,1158,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2158,1159,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2159,1160,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2160,1161,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2161,1162,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2162,1163,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2163,1164,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2164,1165,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2165,1166,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2166,1167,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2167,1168,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2168,1169,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2169,1170,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2170,1171,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2171,1172,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2172,1173,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2173,1174,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2174,1175,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2175,1176,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2176,1177,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2177,1178,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2178,1179,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2179,1180,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2180,1181,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2181,1182,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2182,1183,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2183,1184,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2184,1185,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2185,1186,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2186,1187,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2187,1188,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2188,1189,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2189,1190,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2190,1191,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2191,1192,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2192,1193,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2193,1194,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2194,1195,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2195,1196,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2196,1197,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2197,1198,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2198,1199,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2199,1200,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2200,1201,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2201,1202,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2202,1203,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2203,1204,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2204,1205,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2205,1206,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2206,1207,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2207,1208,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2208,1209,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2209,1210,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2210,1211,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2211,1212,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2212,1213,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2213,1214,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2214,1215,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2215,1216,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2216,1217,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2217,1218,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2218,1219,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2219,1220,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2220,1221,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2221,1222,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2222,1223,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2223,1224,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2224,1225,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2225,1226,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2226,1227,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2227,1228,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2228,1229,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2229,1230,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2230,1231,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2231,1232,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2232,1233,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2233,1234,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2234,1235,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2235,1236,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2236,1237,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2237,1238,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2238,1239,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2239,1240,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2240,1241,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2241,1242,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2242,1243,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2243,1244,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2244,1245,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2245,1246,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2246,1247,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2247,1248,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2248,1249,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2249,1250,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2250,1251,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2251,1252,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2252,1253,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2253,1254,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2254,1255,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2255,1256,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2256,1257,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2257,1258,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2258,1259,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2259,1260,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2260,1261,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2261,1262,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2262,1263,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2263,1264,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
2264,1265,10000,1,-1,-,1412103600,4096483201,,10,2,,1,,1,,
|
||||
|
27
titles/cxb/rss2_data/Tips.csv
Normal file
27
titles/cxb/rss2_data/Tips.csv
Normal file
@@ -0,0 +1,27 @@
|
||||
RANK POINT(RP)とは、crossbeats REV.の上手さを表す数値です。
|
||||
クリアした楽曲のレベルにクリアレートを掛けたものが、その曲のRPになります。
|
||||
自分の成績の上位20譜面が加算の対象となります。
|
||||
ノートスピードの説明
|
||||
ゲージタイプの説明
|
||||
Movie Brightnessの説明
|
||||
APP, DAPの説明
|
||||
Flip-H, Flip-Vの説明
|
||||
クリアレートの説明
|
||||
グレードの説明
|
||||
判定の説明
|
||||
スコアの説明
|
||||
Challengeモードの説明
|
||||
Local Battleの説明
|
||||
REVCHIPの説明
|
||||
REV.SHOPの説明
|
||||
フィルターの説明
|
||||
カテゴリーの説明
|
||||
オプションの説明
|
||||
DIFFICULTYの説明
|
||||
クリア判定の説明
|
||||
ロングノートの判定についての説明
|
||||
フリックの判定についての説明
|
||||
オススメフォルダの説明
|
||||
フルコンボの説明
|
||||
連動Webの説明
|
||||
MusicEnergyの説明
|
||||
|
6
titles/cxb/schema/__init__.py
Normal file
6
titles/cxb/schema/__init__.py
Normal file
@@ -0,0 +1,6 @@
|
||||
from titles.cxb.schema.profile import CxbProfileData
|
||||
from titles.cxb.schema.score import CxbScoreData
|
||||
from titles.cxb.schema.item import CxbItemData
|
||||
from titles.cxb.schema.static import CxbStaticData
|
||||
|
||||
__all__ = [CxbProfileData, CxbScoreData, CxbItemData, CxbStaticData]
|
||||
45
titles/cxb/schema/item.py
Normal file
45
titles/cxb/schema/item.py
Normal file
@@ -0,0 +1,45 @@
|
||||
from typing import Optional, Dict, List
|
||||
from sqlalchemy import Table, Column, UniqueConstraint, PrimaryKeyConstraint, and_, case
|
||||
from sqlalchemy.types import Integer, String, TIMESTAMP, Boolean
|
||||
from sqlalchemy.schema import ForeignKey
|
||||
from sqlalchemy.sql import func
|
||||
from sqlalchemy.dialects.mysql import insert
|
||||
|
||||
from core.data.schema import BaseData, metadata
|
||||
|
||||
energy = Table(
|
||||
"cxb_rev_energy",
|
||||
metadata,
|
||||
Column("id", Integer, primary_key=True, nullable=False),
|
||||
Column("user", ForeignKey("aime_user.id", ondelete="cascade"), nullable=False),
|
||||
Column("energy", Integer, nullable=False, server_default="0"),
|
||||
UniqueConstraint("user", name="cxb_rev_energy_uk"),
|
||||
mysql_charset='utf8mb4'
|
||||
)
|
||||
|
||||
class CxbItemData(BaseData):
|
||||
def put_energy(self, user_id: int, rev_energy: int) -> Optional[int]:
|
||||
sql = insert(energy).values(
|
||||
user = user_id,
|
||||
energy = rev_energy
|
||||
)
|
||||
|
||||
conflict = sql.on_duplicate_key_update(
|
||||
energy = rev_energy
|
||||
)
|
||||
|
||||
result = self.execute(conflict)
|
||||
if result is None:
|
||||
self.logger.error(f"{__name__} failed to insert item! user: {user_id}, energy: {rev_energy}")
|
||||
return None
|
||||
|
||||
return result.lastrowid
|
||||
|
||||
def get_energy(self, user_id: int) -> Optional[Dict]:
|
||||
sql = energy.select(
|
||||
and_(energy.c.user == user_id)
|
||||
)
|
||||
|
||||
result = self.execute(sql)
|
||||
if result is None: return None
|
||||
return result.fetchone()
|
||||
72
titles/cxb/schema/profile.py
Normal file
72
titles/cxb/schema/profile.py
Normal file
@@ -0,0 +1,72 @@
|
||||
from typing import Optional, Dict, List
|
||||
from sqlalchemy import Table, Column, UniqueConstraint, PrimaryKeyConstraint, and_
|
||||
from sqlalchemy.types import Integer, String, TIMESTAMP, Boolean, JSON
|
||||
from sqlalchemy.schema import ForeignKey
|
||||
from sqlalchemy.sql import func, select
|
||||
from sqlalchemy.dialects.mysql import insert
|
||||
|
||||
from core.data.schema import BaseData, metadata
|
||||
|
||||
profile = Table(
|
||||
"cxb_profile",
|
||||
metadata,
|
||||
Column("id", Integer, primary_key=True, nullable=False),
|
||||
Column("user", ForeignKey("aime_user.id", ondelete="cascade"), nullable=False),
|
||||
Column("version", Integer, nullable=False),
|
||||
Column("index", Integer, nullable=False),
|
||||
Column("data", JSON, nullable=False),
|
||||
UniqueConstraint("user", "index", name="cxb_profile_uk"),
|
||||
mysql_charset='utf8mb4'
|
||||
)
|
||||
|
||||
class CxbProfileData(BaseData):
|
||||
def put_profile(self, user_id: int, version: int, index: int, data: JSON) -> Optional[int]:
|
||||
sql = insert(profile).values(
|
||||
user = user_id,
|
||||
version = version,
|
||||
index = index,
|
||||
data = data
|
||||
)
|
||||
|
||||
conflict = sql.on_duplicate_key_update(
|
||||
index = index,
|
||||
data = data
|
||||
)
|
||||
|
||||
result = self.execute(conflict)
|
||||
if result is None:
|
||||
self.logger.error(f"{__name__} failed to update! user: {user_id}, index: {index}, data: {data}")
|
||||
return None
|
||||
|
||||
return result.lastrowid
|
||||
|
||||
def get_profile(self, aime_id: int, version: int) -> Optional[List[Dict]]:
|
||||
"""
|
||||
Given a game version and either a profile or aime id, return the profile
|
||||
"""
|
||||
sql = profile.select(and_(
|
||||
profile.c.version == version,
|
||||
profile.c.user == aime_id
|
||||
))
|
||||
|
||||
result = self.execute(sql)
|
||||
if result is None: return None
|
||||
return result.fetchall()
|
||||
|
||||
def get_profile_index(self, index: int, aime_id: int = None, version: int = None) -> Optional[Dict]:
|
||||
"""
|
||||
Given a game version and either a profile or aime id, return the profile
|
||||
"""
|
||||
if aime_id is not None and version is not None and index is not None:
|
||||
sql = profile.select(and_(
|
||||
profile.c.version == version,
|
||||
profile.c.user == aime_id,
|
||||
profile.c.index == index
|
||||
))
|
||||
else:
|
||||
self.logger.error(f"get_profile: Bad arguments!! aime_id {aime_id} version {version}")
|
||||
return None
|
||||
|
||||
result = self.execute(sql)
|
||||
if result is None: return None
|
||||
return result.fetchone()
|
||||
166
titles/cxb/schema/score.py
Normal file
166
titles/cxb/schema/score.py
Normal file
@@ -0,0 +1,166 @@
|
||||
from sqlalchemy import Table, Column, UniqueConstraint, PrimaryKeyConstraint, and_
|
||||
from sqlalchemy.types import Integer, String, TIMESTAMP, JSON, Boolean
|
||||
from sqlalchemy.schema import ForeignKey
|
||||
from sqlalchemy.sql import func
|
||||
from sqlalchemy.dialects.mysql import insert
|
||||
from typing import Optional, List, Dict, Any
|
||||
|
||||
from core.data.schema import BaseData, metadata
|
||||
from core.data import cached
|
||||
|
||||
score = Table(
|
||||
"cxb_score",
|
||||
metadata,
|
||||
Column("id", Integer, primary_key=True, nullable=False),
|
||||
Column("user", ForeignKey("aime_user.id", ondelete="cascade"), nullable=False),
|
||||
Column("game_version", Integer),
|
||||
Column("song_mcode", String(7)),
|
||||
Column("song_index", Integer),
|
||||
Column("data", JSON),
|
||||
UniqueConstraint("user", "song_mcode", "song_index", name="cxb_score_uk"),
|
||||
mysql_charset='utf8mb4'
|
||||
)
|
||||
|
||||
playlog = Table(
|
||||
"cxb_playlog",
|
||||
metadata,
|
||||
Column("id", Integer, primary_key=True, nullable=False),
|
||||
Column("user", ForeignKey("aime_user.id", ondelete="cascade"), nullable=False),
|
||||
Column("song_mcode", String(7)),
|
||||
Column("chart_id", Integer),
|
||||
Column("score", Integer),
|
||||
Column("clear", Integer),
|
||||
Column("flawless", Integer),
|
||||
Column("super", Integer),
|
||||
Column("cool", Integer),
|
||||
Column("fast", Integer),
|
||||
Column("fast2", Integer),
|
||||
Column("slow", Integer),
|
||||
Column("slow2", Integer),
|
||||
Column("fail", Integer),
|
||||
Column("combo", Integer),
|
||||
Column("date_scored", TIMESTAMP, server_default=func.now()),
|
||||
mysql_charset='utf8mb4'
|
||||
)
|
||||
|
||||
ranking = Table(
|
||||
"cxb_ranking",
|
||||
metadata,
|
||||
Column("id", Integer, primary_key=True, nullable=False),
|
||||
Column("user", ForeignKey("aime_user.id", ondelete="cascade"), nullable=False),
|
||||
Column("rev_id", Integer),
|
||||
Column("song_id", Integer),
|
||||
Column("score", Integer),
|
||||
Column("clear", Integer),
|
||||
UniqueConstraint("user", "rev_id", name="cxb_ranking_uk"),
|
||||
mysql_charset='utf8mb4'
|
||||
)
|
||||
|
||||
class CxbScoreData(BaseData):
|
||||
def put_best_score(self, user_id: int, song_mcode: str, game_version: int, song_index: int, data: JSON) -> Optional[int]:
|
||||
"""
|
||||
Update the user's best score for a chart
|
||||
"""
|
||||
sql = insert(score).values(
|
||||
user=user_id,
|
||||
song_mcode=song_mcode,
|
||||
game_version=game_version,
|
||||
song_index=song_index,
|
||||
data=data
|
||||
)
|
||||
|
||||
conflict = sql.on_duplicate_key_update(
|
||||
data = sql.inserted.data
|
||||
)
|
||||
|
||||
result = self.execute(conflict)
|
||||
if result is None:
|
||||
self.logger.error(f"{__name__} failed to insert best score! profile: {user_id}, song: {song_mcode}, data: {data}")
|
||||
return None
|
||||
|
||||
return result.lastrowid
|
||||
|
||||
def put_playlog(self, user_id: int, song_mcode: str, chart_id: int, score: int, clear: int, flawless: int, this_super: int,
|
||||
cool: int, this_fast: int, this_fast2: int, this_slow: int, this_slow2: int, fail: int, combo: int) -> Optional[int]:
|
||||
"""
|
||||
Add an entry to the user's play log
|
||||
"""
|
||||
sql = playlog.insert().values(
|
||||
user=user_id,
|
||||
song_mcode=song_mcode,
|
||||
chart_id=chart_id,
|
||||
score=score,
|
||||
clear=clear,
|
||||
flawless=flawless,
|
||||
super=this_super,
|
||||
cool=cool,
|
||||
fast=this_fast,
|
||||
fast2=this_fast2,
|
||||
slow=this_slow,
|
||||
slow2=this_slow2,
|
||||
fail=fail,
|
||||
combo=combo
|
||||
)
|
||||
|
||||
result = self.execute(sql)
|
||||
if result is None:
|
||||
self.logger.error(f"{__name__} failed to insert playlog! profile: {user_id}, song: {song_mcode}, chart: {chart_id}")
|
||||
return None
|
||||
|
||||
return result.lastrowid
|
||||
|
||||
def put_ranking(self, user_id: int, rev_id: int, song_id: int, score: int, clear: int) -> Optional[int]:
|
||||
"""
|
||||
Add an entry to the user's ranking logs
|
||||
"""
|
||||
if song_id == 0:
|
||||
sql = insert(ranking).values(
|
||||
user=user_id,
|
||||
rev_id=rev_id,
|
||||
score=score,
|
||||
clear=clear
|
||||
)
|
||||
else:
|
||||
sql = insert(ranking).values(
|
||||
user=user_id,
|
||||
rev_id=rev_id,
|
||||
song_id=song_id,
|
||||
score=score,
|
||||
clear=clear
|
||||
)
|
||||
|
||||
conflict = sql.on_duplicate_key_update(
|
||||
score = score
|
||||
)
|
||||
|
||||
result = self.execute(conflict)
|
||||
if result is None:
|
||||
self.logger.error(f"{__name__} failed to insert ranking log! profile: {user_id}, score: {score}, clear: {clear}")
|
||||
return None
|
||||
|
||||
return result.lastrowid
|
||||
|
||||
def get_best_score(self, user_id: int, song_mcode: int) -> Optional[Dict]:
|
||||
sql = score.select(
|
||||
and_(score.c.user == user_id, score.c.song_mcode == song_mcode)
|
||||
)
|
||||
|
||||
result = self.execute(sql)
|
||||
if result is None: return None
|
||||
return result.fetchone()
|
||||
|
||||
def get_best_scores(self, user_id: int) -> Optional[Dict]:
|
||||
sql = score.select(score.c.user == user_id)
|
||||
|
||||
result = self.execute(sql)
|
||||
if result is None: return None
|
||||
return result.fetchall()
|
||||
|
||||
def get_best_rankings(self, user_id: int) -> Optional[List[Dict]]:
|
||||
sql = ranking.select(
|
||||
ranking.c.user == user_id
|
||||
)
|
||||
|
||||
result = self.execute(sql)
|
||||
if result is None: return None
|
||||
return result.fetchall()
|
||||
74
titles/cxb/schema/static.py
Normal file
74
titles/cxb/schema/static.py
Normal file
@@ -0,0 +1,74 @@
|
||||
from typing import Dict, List, Optional
|
||||
from sqlalchemy import Table, Column, UniqueConstraint, PrimaryKeyConstraint, and_
|
||||
from sqlalchemy.types import Integer, String, TIMESTAMP, Boolean, JSON, Float
|
||||
from sqlalchemy.engine.base import Connection
|
||||
from sqlalchemy.engine import Row
|
||||
from sqlalchemy.schema import ForeignKey
|
||||
from sqlalchemy.sql import func, select
|
||||
from sqlalchemy.dialects.mysql import insert
|
||||
|
||||
from core.data.schema import BaseData, metadata
|
||||
|
||||
music = Table(
|
||||
"cxb_static_music",
|
||||
metadata,
|
||||
Column("id", Integer, primary_key=True, nullable=False),
|
||||
Column("version", Integer, nullable=False),
|
||||
Column("songId", String(255)),
|
||||
Column("index", Integer),
|
||||
Column("chartId", Integer),
|
||||
Column("title", String(255)),
|
||||
Column("artist", String(255)),
|
||||
Column("category", String(255)),
|
||||
Column("level", Float),
|
||||
UniqueConstraint("version", "songId", "chartId", "index", name="cxb_static_music_uk"),
|
||||
mysql_charset='utf8mb4'
|
||||
)
|
||||
|
||||
class CxbStaticData(BaseData):
|
||||
def put_music(self, version: int, mcode: str, index: int, chart: int, title: str, artist: str, category: str, level: float ) -> Optional[int]:
|
||||
sql = insert(music).values(
|
||||
version = version,
|
||||
songId = mcode,
|
||||
index = index,
|
||||
chartId = chart,
|
||||
title = title,
|
||||
artist = artist,
|
||||
category = category,
|
||||
level = level
|
||||
)
|
||||
|
||||
conflict = sql.on_duplicate_key_update(
|
||||
title = title,
|
||||
artist = artist,
|
||||
category = category,
|
||||
level = level
|
||||
)
|
||||
|
||||
result = self.execute(conflict)
|
||||
if result is None: return None
|
||||
return result.lastrowid
|
||||
|
||||
def get_music(self, version: int, song_id: Optional[int] = None) -> Optional[List[Row]]:
|
||||
if song_id is None:
|
||||
sql = select(music).where(music.c.version == version)
|
||||
else:
|
||||
sql = select(music).where(and_(
|
||||
music.c.version == version,
|
||||
music.c.songId == song_id,
|
||||
))
|
||||
|
||||
result = self.execute(sql)
|
||||
if result is None: return None
|
||||
return result.fetchall()
|
||||
|
||||
def get_music_chart(self, version: int, song_id: int, chart_id: int) -> Optional[List[Row]]:
|
||||
sql = select(music).where(and_(
|
||||
music.c.version == version,
|
||||
music.c.songId == song_id,
|
||||
music.c.chartId == chart_id
|
||||
))
|
||||
|
||||
result = self.execute(sql)
|
||||
if result is None: return None
|
||||
return result.fetchone()
|
||||
Reference in New Issue
Block a user