diff --git a/.gitignore b/.gitignore index 016f1a2d8..089e8305b 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,9 @@ game-server/logs *.DS_Store .vscode/* shared/**/*.js -shared/resource/privateKey \ No newline at end of file +shared/resource/privateKey +/.idea/.gitignore +/.idea/modules.xml +/.idea/inspectionProfiles/Project_Default.xml +/.idea/vcs.xml +/.idea/zyz_server.iml diff --git a/game-server/app/servers/battle/handler/rougeHandler.ts b/game-server/app/servers/battle/handler/rougeHandler.ts new file mode 100644 index 000000000..01fae7f66 --- /dev/null +++ b/game-server/app/servers/battle/handler/rougeHandler.ts @@ -0,0 +1,1185 @@ +import { Application, BackendSession, pinus, HandlerService, } from 'pinus'; +import { RougelikeRecordModel } from '../../../db/RougelikeRecord'; +import { genCode, getRandEelmWithWeight, resResult } from '../../../pubUtils/util'; +import { COLLECTION_TYPE, ITEM_CHANGE_REASON, REST_POINT_TYPE, ROUGE_LIKE_CARD_TYPE, ROUGE_LIKE_CHOOSE_REWARD, ROUGE_LIKE_NODE_TYPE, ROUGE_LIKE_STATUS } from '../../../consts'; +import { Quest, RestPoint, RougelikeRecordDetailModel } from '../../../db/RougelikeRecordDetail'; +import { STATUS } from '../../../consts/statusCode'; +import { RougelikeCardModel, RougelikeCardPara, RougelikeCardType } from '../../../db/RougelikeCard'; +import { Card, RougelikeCharaModel, RougelikeCharaPara, RougelikeCharaType } from '../../../db/RougelikeChara'; +import { CollectionReturnParam, CommonCard, CommonChara, RewardInter, RewardOption, RougeDamageInter, SlotCard, layerNode } from '../../../pubUtils/interface'; +import { clone } from 'underscore'; +import { RougelikeScoreModel } from '../../../db/RougelikeScore'; +import { RougelikeTechModel } from '../../../db/RougelikeTech'; +import { RougelikeCollectionModel } from '../../../db/RougelikeCollection'; +import { RougelikeLayerModel, RougelikeLayerType } from '../../../db/RougelikeLayer'; +import { RoleModel } from '../../../db/Role'; +import { gameData } from '../../../pubUtils/data'; +import { chooseNode, getGame, getInitCharaCard, getLayerNodeReward, getLayerRewardOneData, getMap, getMaxHp, getRandomSpirit, getRougeData, repaireSendScoreReward, updateChalleng, updateMaxHp } from '../../../services/battle/rougeService'; +import { checkPreRougeTech, getCurTechData, updateEffectId } from '../../../services/battle/rougeTechService'; +import { BattleRecordModel } from '../../../db/BattleRecord'; +import { HeroModel } from '../../../db/Hero'; +import { ROUGELIKE } from '../../../pubUtils/dicParam'; +import { HandleAddCard, addSameTypeCollect, addSingleCollect, formateCharasOrCards } from '../../../services/battle/rougeCollectService'; +import { DicRougePassiveCollect } from '../../../pubUtils/dictionary/DicRougePassiveCollect'; +import { DicRougeHolyCard } from '../../../pubUtils/dictionary/DicRougeHolyCard'; +import { DicRougeSkillCard } from '../../../pubUtils/dictionary/DicRougeSkillCard'; +import { DicRougeOptionGroup } from '../../../pubUtils/dictionary/DicRougeOptionGroup'; +import { addItems, getRougeTechScoreObject, handleCost } from '../../../services/role/rewardService'; +import { getEffectWhenGameStart, getCharaHp, getAddCoin, getNoBossRecoveryHp, getBattleRecoveryNum, getRecoveryExtendHp, getTrainCardDiscount, checkCanChooseSkillCard, checkCanReRandomReward } from '../../../services/battle/rougeEffectService'; +import { RougelikeExtendModel } from '../../../db/RougelikeExtend'; +import * as util from 'util'; +import { DicRougePassiveCard } from '../../../pubUtils/dictionary/DicRougePassiveCard'; + +export default function (app: Application) { + new HandlerService(app, {}); + return new RougeHandler(app); +} + +export class RougeHandler { + constructor(private app: Application) { + } + + + /** + * 获取大界面数据(即进入游戏获取当前是否有进行中的一场数据) + * @param msg + * @param session + * @returns + */ + async getData(msg: {}, session: BackendSession) { + let roleId = session.get('roleId'); + + let data = await getRougeData(roleId); + return resResult(STATUS.SUCCESS, data); + } + + + /** + * 获取一场试炼正在进行中的游戏数据 + * @param msg + * @param session + */ + async getGame(msg: {}, session: BackendSession) { + let roleId = session.get('roleId'); + + return resResult(STATUS.SUCCESS, { ...await getGame(roleId) }) + } + + + + /** + * 获取初始角色卡 + * @param msg + * @param session + * @returns + */ + async getInitCharaCard(msg: { type: number, grade: number }, session: BackendSession) { + let roleId = session.get('roleId'); + let sid = session.get('sid'); + + const { type, grade } = msg; + + const dbRecord = await RougelikeRecordModel.findByRoleIdAndStatus(roleId, ROUGE_LIKE_STATUS.SUCCESS) + // 存在一场正在进行中,不能开启新一场 + if (dbRecord) return resResult(STATUS.ROUGELIKE_GAME_PLAYING); + + let typeGradeData = gameData.rougeTypeGrade.get(type + '_' + grade); + if (!typeGradeData) return resResult(STATUS.NO_TYPE_GRADE); + + const { lv = 0 } = await RoleModel.findByRoleId(roleId, 'lv'); + if (lv < (typeGradeData.lvLimit || 0)) return resResult(STATUS.LIMIT_LV); + + // 开启新一场 + const gameCode = genCode(8); + + const charaCards = getInitCharaCard() || []; + + let handleAddFun = new HandleAddCard(roleId, sid, gameCode); + for (let ele of charaCards) { + handleAddFun.pushChara(ele.id, await getMaxHp(roleId, gameCode, ele.id, type, grade), []); + } + let result = await handleAddFun.save(); + await RougelikeRecordModel.updateByGameCode(gameCode, { + $set: { + roleId, grade, type, authorType: 0, curLayer: 0, + maxLayer: typeGradeData.layerCount, status: 0, takeoutReward: [], + }, + $inc: { score: 0, coin: 0, techScore: 0 } + }) + + return resResult(STATUS.SUCCESS, { gameCode, ...result }) + } + + /** + * 开启一场游戏 + * @param msg + * @param session + * @returns + */ + async startGame(msg: { gameCode: string, authorType: number }, session: BackendSession) { + let roleId = session.get('roleId'); + let sid = session.get('sid'); + + const { gameCode, authorType } = msg; + + // 检测流派 + const authorTypeData = gameData.rougeAuthorType.get(authorType); + if (!authorTypeData) return resResult(STATUS.NO_AUTHOR_TYPE); + + let dbRecord = await RougelikeRecordModel.findByGameCode(gameCode) + // 未选角色 + if (!dbRecord) return resResult(STATUS.NO_ROUGELIKE_GAME) + // 存在一场正在进行中,不能开启新一场 + if (dbRecord.status != ROUGE_LIKE_STATUS.CHOOSECHARA) return resResult(STATUS.ROUGELIKE_GAME_PLAYING); + + const { type, grade, curLayer, maxLayer, } = dbRecord + const typeGradeData = gameData.rougeTypeGrade.get(type + '_' + grade); + if (!typeGradeData) return resResult(STATUS.NO_TYPE_GRADE); + + const typeGradeByIdData = gameData.rougeTypeGradeById.get(typeGradeData.limitId); + if (typeGradeByIdData) { + const dbExtend = await RougelikeExtendModel.findByRoleIdAndLimitId(roleId, typeGradeData.limitId) + if (!dbExtend) return resResult(STATUS.TYPE_UNLOCK); + } + + let nodes = getMap(typeGradeData.layerPlan, typeGradeData.layerCount); + + await RougelikeLayerModel.bulkWriteUpdate(nodes.map(cur => { return { ...cur, gameCode, roleId, status: 0 }; })); + await RougelikeRecordModel.updateByGameCode(gameCode, { $set: { authorType, status: ROUGE_LIKE_STATUS.INPROGRESS } }); + + let { addCoin, cardIds } = await getEffectWhenGameStart(roleId, gameCode, authorType); + dbRecord = await RougelikeRecordModel.updateByGameCode(gameCode, { $inc: { coin: addCoin, coinTotal: addCoin } }); + + + const charas: CommonChara[] = formateCharasOrCards(await RougelikeCharaModel.findByGameCode(gameCode), ROUGE_LIKE_CARD_TYPE.CHARA)?.charas || []; + let handleAddFun = new HandleAddCard(roleId, sid, gameCode); + handleAddFun.pushHolyCards(cardIds); + let result = await handleAddFun.save(); + result = await handleAddFun.getHolyEffect(); + + + return resResult(STATUS.SUCCESS, { gameCode, grade, coin: dbRecord.coin, coinTotal: dbRecord.coinTotal, type, authorType, curLayer, maxLayer, nodes, charas: [...charas, ...result.addCharas], cards: result.addCards }) + + } + + /** + * 结束游戏 + * @param msg + * @param session + * @returns + */ + async gameEnd(msg: { gameCode: string }, session: BackendSession) { + let roleId = session.get('roleId'); + let roleName = session.get('roleName'); + let sid = session.get('sid'); + + const { gameCode } = msg; + let dbRecord = await RougelikeRecordModel.findByGameCode(gameCode) + if (!dbRecord) return resResult(STATUS.NO_ROUGELIKE_GAME); + let { type, grade, status = 0, takeoutReward = [], hasReceivedTakeout = false, curLayer = 0, } = dbRecord; + if (status == ROUGE_LIKE_STATUS.SUCCESS) return resResult(STATUS.ROUGELIKE_GAME_END); + + status = ROUGE_LIKE_STATUS.SUCCESS; + + const dbLayers = await RougelikeLayerModel.findByGameCode(gameCode); + + let takeoutRewardMap = takeoutReward.reduce((map, cur) => { map.set(cur.id, cur.count); return map; }, new Map()); + let spiritIds: number[] = []; + let addCoin = 0, addScore = 0, addTech = 0, isFirstReward = true; + if (dbLayers.length == 0) isFirstReward = false; + for (const { layer, hasPass = false, layerNodes } of dbLayers) { + if (layer > dbRecord.curLayer) { + isFirstReward = false; + continue; + }; + const layerNodeOne = layerNodes.find(cur => cur.isChoose == 1); + let nodeType = layerNodeOne?.type || 0; + const detailCode = layerNodeOne?.detailCode; + + //忽略挑战关 + if (!hasPass && nodeType != ROUGE_LIKE_NODE_TYPE.CHALLENGE) { + isFirstReward = false; + continue; + } + if (nodeType == ROUGE_LIKE_NODE_TYPE.QUEST_POINT) { + const dbDetail = await RougelikeRecordDetailModel.findByCode(gameCode, detailCode) + nodeType = dbDetail?.questType || 0; + } + const layerReward = getLayerRewardOneData(type, grade, layer, nodeType); + const { takeoutReward = [], coin = 0, score = 0, tech = 0, spiritPlan } = clone(layerReward); + addCoin += coin, addScore += score, addTech += tech; + for (const { id, count } of takeoutReward) takeoutRewardMap.set(id, takeoutRewardMap.get(id) || 0 + count); + spiritIds.push(...getRandomSpirit(spiritPlan)); + } + let spiritMap = new Map(); + spiritIds.forEach((spiritId) => { + spiritMap.set(spiritId, { id: spiritId, count: (spiritMap.get(spiritId)?.count || 0) + 1 }); + }) + + takeoutReward = [...Array.from(takeoutRewardMap, ([id, count]) => ({ id, count })), ...spiritMap.values()]; + + + if (!dbRecord) return resResult(STATUS.NO_ROUGELIKE_GAME); + dbRecord = await RougelikeRecordModel.updateByGameCode(gameCode, { $set: { status, takeoutReward }, $inc: { score: addScore, coin: addCoin, techScore: addTech } }); + + let { score = 0, coin = 0, techScore = 0 } = dbRecord; + let dbScore = await RougelikeScoreModel.incScore(roleId, score); + let goods = await addItems(roleId, roleName, sid, [getRougeTechScoreObject(techScore)], ITEM_CHANGE_REASON.ROUGE_TECH_SCORE); + + let firstReward = []; + if (isFirstReward) { + const typeGradeData = gameData.rougeTypeGrade.get(type + '_' + grade); + if (!typeGradeData || !typeGradeData.id) return resResult(STATUS.NO_TYPE_GRADE); + let dbExtend = await RougelikeExtendModel.findByRoleIdAndLimitId(roleId, typeGradeData.id); + if ((dbExtend?.limitId || 0) != typeGradeData.id) { + firstReward = await addItems(roleId, roleName, sid, typeGradeData?.firstReward || [], ITEM_CHANGE_REASON.ROUGE_FIRST_REWARD); + await RougelikeExtendModel.update(roleId, typeGradeData.id, firstReward, gameCode); + } + } + + + return resResult(STATUS.SUCCESS, { + gameCode, goods, score, techScore, coin, hasReceivedTakeout, firstReward, + takeoutReward, weeklyScore: dbScore?.score || 0, takeoutRewardCnt: dbScore?.takeoutRewardCnt || 0 + }); + + } + + /** + * 选择外带奖励 + * @param msg + * @param session + */ + async takeoutReward(msg: { gameCode: string }, session: BackendSession) { + let roleId = session.get('roleId'); + let roleName = session.get('roleName'); + let sid = session.get('sid'); + const { gameCode } = msg; + let dbRecord = await RougelikeRecordModel.findByGameCode(gameCode) + if (!dbRecord) return resResult(STATUS.NO_ROUGELIKE_GAME); + let { takeoutReward, hasReceivedTakeout } = dbRecord; + if (hasReceivedTakeout) return resResult(STATUS.ROUGELIKE_TAKEOUT_HAS_RECEIVED); + + let dbScore = await RougelikeScoreModel.receiveTakeoutReward(roleId, ROUGELIKE.TAKEOUT_REWARD_CNT); + if (!dbScore) return resResult(STATUS.ROUGELIKE_TAKEOUT_CNT_NOT_ENOUGH); + + dbRecord = await RougelikeRecordModel.takeout(gameCode); + + let goods = await addItems(roleId, roleName, sid, takeoutReward, ITEM_CHANGE_REASON.ROUGE_TAKE_OUT_REWARD) + + return resResult(STATUS.SUCCESS, { gameCode, hasReceivedTakeout: dbRecord?.hasReceivedTakeout || false, takeoutRewardCnt: dbScore?.takeoutRewardCnt || 0, goods }); + } + + /** + * 选择关卡节点 + * @param msg + * @param session + */ + async chooseNode(msg: { gameCode: string, layer: number, detailCode: string }, session: BackendSession) { + let roleId = session.get('roleId'); + const { gameCode, layer, detailCode } = msg; + + const dbRecord = await RougelikeRecordModel.findByGameCode(gameCode) + if (!dbRecord) return resResult(STATUS.NO_ROUGELIKE_GAME); + if (dbRecord.status != ROUGE_LIKE_STATUS.INPROGRESS) return resResult(STATUS.ROUGELIKE_GAME_END); + const { curLayer, maxLayer, type, grade } = dbRecord; + + if (layer < curLayer || layer > maxLayer) return resResult(STATUS.NODE_NO_CHOOSE); + + let dbCurLayer = {} as RougelikeLayerType, dbPreLayer = {} as RougelikeLayerType; + let dbLayerNodes = await RougelikeLayerModel.findByGameCodeAndLayers(gameCode, [layer, layer - 1]); + + if (!dbLayerNodes) return resResult(STATUS.NODE_NO_CHOOSE); + for (let val of dbLayerNodes) { + if (val.layer == layer) { + if (val.hasPass) return resResult(STATUS.NODE_NO_CHOOSE);//当前关完成 + dbCurLayer = val; + } + // 注意过滤挑战点 + if ((val.layer || 0) == layer - 1 && layer - 1 > 0) { + let dbDetail = await RougelikeRecordDetailModel.findByGameCodeAndLayer(gameCode, layer - 1); + if (!val.hasPass && (!dbDetail || dbDetail.nodeType != ROUGE_LIKE_NODE_TYPE.CHALLENGE)) return resResult(STATUS.NODE_NO_CHOOSE);//前一关未完成 + dbPreLayer = val; + } + } + + let dbIsChoose = dbCurLayer.layerNodes.find(cur => cur.isChoose == ROUGE_LIKE_CHOOSE_REWARD.CHOOSE); + if (dbIsChoose && dbIsChoose.detailCode != detailCode) return resResult(STATUS.NODE_NO_CHOOSE); //该层已经选择过一关卡,不能再次选择其他关卡 + let dbCurLayerChooseNode: layerNode = dbCurLayer.layerNodes.find(cur => cur.detailCode == detailCode); + if (!dbCurLayerChooseNode) return resResult(STATUS.NODE_NO_CHOOSE); + if (dbPreLayer && Object.keys(dbPreLayer).length > 0) { + let dbPreLayerChooseNode = dbPreLayer.layerNodes.find(cur => cur.isChoose != 0); + if (dbCurLayerChooseNode.preNodeIndexs.indexOf(dbPreLayerChooseNode.index) == -1) return resResult(STATUS.NODE_NO_CHOOSE); + } + + return resResult(STATUS.SUCCESS, { detailCode, layer, curNode: await chooseNode(dbRecord, dbCurLayerChooseNode, layer) }) + } + + // 挑战关卡 + async checkBattle(msg: { gameCode: string, detailCode: string, warId: number, charaCodes: string[] }, session: BackendSession) { + let roleId = session.get('roleId'); + let roleName = session.get('roleName'); + + const { gameCode, detailCode, warId, charaCodes } = msg; + + const dbRecord = await RougelikeRecordModel.findByGameCode(gameCode) + if (!dbRecord) return resResult(STATUS.NO_ROUGELIKE_GAME); + if (dbRecord.status != ROUGE_LIKE_STATUS.INPROGRESS) return resResult(STATUS.ROUGELIKE_GAME_END); + + let dbDetail = await RougelikeRecordDetailModel.findByCode(gameCode, detailCode); + if (!dbDetail) return resResult(STATUS.REWARD_NO_CHOOSE); + let { status = 0, rewards, layer, nodeType, warId: detailWarId = 0 } = dbDetail; + + if (status != 0 || warId != detailWarId) return resResult(STATUS.WAR_NO_CHOOSE); + + let dicWar = gameData.war.get(detailWarId); + if (!dicWar) return resResult(STATUS.DIC_DATA_NOT_FOUND); + + const battleCode = genCode(8); // 关卡唯一值 + const dbCharas = await RougelikeCharaModel.findByCodes(gameCode, charaCodes); + if (!dbCharas || dbCharas.length == 0) return resResult(STATUS.REWARD_NO_CHOOSE); + await BattleRecordModel.updateBattleRecordByCode(battleCode, { + $set: { + roleId, roleName, battleId: warId, status: 0, warName: dicWar.gk_name, warType: dicWar.warType, + record: { + rougeOriginal: dbCharas.map(cur => { + const { charaId, cards = [], hp = 0, ap = 0, shield = 0, roundSkill = 0, apSkill = 0 } = cur; + return { charaId, cards, hp, ap, roundSkill, apSkill } + }) + } + } + }, true); + return resResult(STATUS.SUCCESS, { gameCode, battleCode }); + } + + + /** + * 结束关卡 + * @param msg + * @param session + * @returns + */ + async battleEnd(msg: { gameCode: string, detailCode: string, battleCode: string, warId: number, status: number, round: number, rougeDamage: RougeDamageInter[], isAp: boolean, isRound: boolean }, session: BackendSession) { + let roleId = session.get('roleId'); + let roleName = session.get('roleName'); + let sid = session.get('sid'); + + + let { gameCode, detailCode, battleCode, warId, status, round, rougeDamage, isAp, isRound } = msg; + let dbDetail = await RougelikeRecordDetailModel.findByCode(gameCode, detailCode); + if (!dbDetail || (dbDetail.warId || 0) != warId || warId == 0 || (dbDetail.status || 0) != 0) return resResult(STATUS.WAR_NO_CHOOSE); + let { layer, nodeType, questType = 0 } = dbDetail; + + const dbRecord = await RougelikeRecordModel.findByGameCode(gameCode) + if (!dbRecord) return resResult(STATUS.NO_ROUGELIKE_GAME); + if (dbRecord.status != ROUGE_LIKE_STATUS.INPROGRESS) return resResult(STATUS.ROUGELIKE_GAME_END); + + const dbCharas = await RougelikeCharaModel.findByCodes(gameCode, rougeDamage.map(cur => { return cur.charaCode })); + if (!dbCharas || dbCharas.length == 0 || dbCharas.length != rougeDamage.length) return resResult(STATUS.REWARD_NO_CHOOSE); + + await BattleRecordModel.findOneAndUpdate({ battleCode }, { + $set: { status, 'record.round': round, 'record.rougeDamage': rougeDamage, } + }, { new: true, upsert: true }).lean(true); + + await updateChalleng(dbRecord, roleId, sid, gameCode, layer, rougeDamage, isAp, isRound); + + const dbCharaMap = dbCharas.reduce((result, cur) => { result.set(cur.charaCode, { ...cur }); return result; }, new Map()); + + let updateCharas: RougelikeCharaPara[] = [], charas: CommonChara[] = []; + + + let recoveryHp = false; + if (status == 0 && nodeType != ROUGE_LIKE_NODE_TYPE.BOSS) { + recoveryHp = await getNoBossRecoveryHp(roleId, gameCode); + if (recoveryHp) status = 1; + } + + let hpRatio = 0; + if (status == 1) { + hpRatio = await getCharaHp(roleId, gameCode); + } + + let recoveryNum = await getBattleRecoveryNum(roleId, gameCode); + + + for (let { charaCode, hp, ap, shield } of rougeDamage) { + const chara = dbCharaMap.get(charaCode); + if (!chara) return resResult(STATUS.BATTLE_ABNORMAL) + if (chara.maxHp < hp) hp = chara.maxHp; + + if (recoveryHp) hp = chara.maxHp; + if (hpRatio > 0) hp = Math.min(Math.floor(hp * (1 + hpRatio / 100)), chara.maxHp); + + if (recoveryNum-- > 0 && hp == 0) hp = chara.maxHp; + + + + charas.push({ charaCode, charaId: chara.charaId, seqId: chara.seqId, cards: chara.cards, hp, maxHp: chara.maxHp, ap, shield, apSkill: chara.apSkill, roundSkill: chara.roundSkill }) + updateCharas.push({ gameCode, charaCode, hp, ap, shield }); + } + + let incCoin = 0; + if (status == 1) { + let { coinRatio, coinAdd } = await getAddCoin(roleId, gameCode, nodeType); + let newNodeType = nodeType; + if (questType > 0) newNodeType = questType; + const layerReward = getLayerRewardOneData(dbRecord.type, dbRecord.grade, layer, newNodeType); + incCoin = Math.floor((layerReward.coin || 0) * (1 + coinRatio / 100) + coinAdd); + await RougelikeRecordModel.updateByGameCode(gameCode, { $inc: { coin: incCoin, coinTotal: incCoin } }); + } + + // let coinReward = rewards.find(cur => cur.rewardType == 0); + // if (coinReward) coinReward.chooseNum = Math.floor(coinReward.chooseNum * (1 + coinRatio / 100) + coinAdd); + // if (coinRatio != 0 || coinAdd != 0) { + // await RougelikeRecordDetailModel.findOneAndUpdate({ gameCode, detailCode, 'rewards.rewardType': 0 }, { 'rewards.$.chooseNum': coinReward.chooseNum, }, { new: true, upsert: true }).lean(true); + // } + + await RougelikeCharaModel.bulkWriteUpdate(updateCharas); + await RougelikeRecordDetailModel.updateByCode(gameCode, detailCode, { $set: { status } }) + + + return resResult(STATUS.SUCCESS, { status, gameCode, detailCode, charas, incCoin }); + } + + // 重置 + async reRandomReward(msg: { gameCode: string, detailCode: string, rewardType: number }, session: BackendSession) { + const roleId: string = session.get('roleId'); + const { gameCode, detailCode, rewardType } = msg; + + // 检查数量 + let { canReRandom, costCoin } = await checkCanReRandomReward(roleId, gameCode, rewardType); + if (!canReRandom) return resResult(STATUS.ROUGE_TECH_NOT_UNLOCKED); + + const dbRecord = await RougelikeRecordModel.findByGameCode(gameCode) + if (!dbRecord) return resResult(STATUS.NO_ROUGELIKE_GAME); + if (dbRecord.status != ROUGE_LIKE_STATUS.INPROGRESS) return resResult(STATUS.ROUGELIKE_GAME_END); + + let dbDetail = await RougelikeRecordDetailModel.findByCode(gameCode, detailCode); + if (!dbDetail) return resResult(STATUS.REWARD_NO_CHOOSE); + + if (dbDetail.reRandRewardCnt > 0) return resResult(STATUS.ROUGE_RE_RANDOM_CNT_OVER); + + const typeGradeData = gameData.rougeTypeGrade.get(dbRecord.type + '_' + dbRecord.grade); + const nodeData = gameData.rougeNode.get(dbDetail.nodeId); + if (!typeGradeData || !nodeData) return resResult(STATUS.DIC_DATA_NOT_FOUND); + + const layerPlanData = gameData.rougeLayerPlan.get(typeGradeData.layerPlan + '_' + dbDetail.layer); + if (!layerPlanData) return resResult(STATUS.DIC_DATA_NOT_FOUND); + + let costResult = await RougelikeRecordModel.costCoin(gameCode, costCoin); + if (!costResult) return resResult(STATUS.COIN_NOT_ENOUGH); + + let replaceReward = await getLayerNodeReward(roleId, gameCode, dbRecord.authorType, dbDetail.nodeId, layerPlanData.rewardPlan, dbDetail.layer); + let { rewards } = dbDetail; + let newRewards = [...rewards.filter(reward => reward.rewardType != rewardType), ...replaceReward.rewards.filter(reward => reward.rewardType == rewardType)].sort((a, b) => a.groupIndex - b.groupIndex); + dbDetail = await RougelikeRecordDetailModel.updateByCode(gameCode, detailCode, { $set: { rewards: newRewards }, $inc: { reRandRewardCnt: 1 } }); + + return resResult(STATUS.SUCCESS, { rewards: dbDetail.rewards, reRandRewardCnt: dbDetail.reRandRewardCnt }); + } + + /** + * 选择奖励 + * @param msg + * @param session + * @returns + */ + async chooseReward(msg: { gameCode: string, detailCode: string, groupIndex: number, optionIndexs: number[] }, session: BackendSession) { + let roleId = session.get('roleId'); + let sid = session.get('sid'); + + const { gameCode, detailCode, groupIndex, optionIndexs } = msg; + + let dbDetail = await RougelikeRecordDetailModel.findByCode(gameCode, detailCode); + if (!dbDetail) return resResult(STATUS.REWARD_NO_CHOOSE); + let { status, rewards, layer, nodeType, warId = 0, challenge } = dbDetail; + + const dbRecord = await RougelikeRecordModel.findByGameCode(gameCode) + if (!dbRecord) return resResult(STATUS.NO_ROUGELIKE_GAME); + if (dbRecord.status != ROUGE_LIKE_STATUS.INPROGRESS) return resResult(STATUS.ROUGELIKE_GAME_END); + + // 检测有关卡的是否挑战成功 + if (warId != 0 && status != 1) return resResult(STATUS.REWARD_NO_CHOOSE); + + if (!rewards || rewards.length == 0) return resResult(STATUS.REWARD_NO_CHOOSE); + let { rewardType, options, groupStatus, chooseNum } = rewards.find((obj) => obj.groupIndex == groupIndex); + + if (groupStatus == ROUGE_LIKE_CHOOSE_REWARD.CHOOSE) return resResult(STATUS.REWARD_NO_CHOOSE); + + let handleAddFun = new HandleAddCard(roleId, sid, gameCode, dbDetail); + let incCoin = 0, redCoin = 0; + // //处理下试炼币 + // if (rewardType == 0) { + // incCoin = chooseNum; + // groupStatus = ROUGE_LIKE_CHOOSE_REWARD.CHOOSE; + // const result = await RougelikeRecordDetailModel.findOneAndUpdate({ gameCode, detailCode, 'rewards.groupIndex': groupIndex }, { 'rewards.$.groupStatus': groupStatus, }, { new: true, upsert: true }).lean(true); + // if (result.rewards.find((obj) => obj.groupStatus != ROUGE_LIKE_CHOOSE_REWARD.CHOOSE) == undefined) { + // await RougelikeLayerModel.updateByGameCode(gameCode, layer, { $set: { hasPass: true } }) + // } + // await RougelikeRecordModel.updateByGameCode(gameCode, { $inc: { coin: incCoin, coinTotal: incCoin } }) + // return resResult(STATUS.SUCCESS, { addCharas: await updateMaxHp(roleId, gameCode, dbRecord.type, dbRecord.grade), addCards: [], incCoin, redCoin }); + // } + + + // 特性卡可以选多次 + let passiveChooseCount = 0; + if (rewardType == ROUGE_LIKE_CARD_TYPE.PASSIVE || rewardType == ROUGE_LIKE_CARD_TYPE.CHARA) { + passiveChooseCount = options.reduce((accumulator, obj) => { + if (obj.optionStatus === ROUGE_LIKE_CHOOSE_REWARD.CHOOSE) return accumulator + 1; + return accumulator; + }, 0); + if (chooseNum - passiveChooseCount < optionIndexs.length) return resResult(STATUS.REWARD_NO_CHOOSE); + } + + if (optionIndexs.length > chooseNum) return resResult(STATUS.REWARD_NO_CHOOSE); + + let tempOptions: RewardOption[] = options.filter(opt => optionIndexs.includes(opt.optionIndex)); + if (tempOptions.length > chooseNum) return resResult(STATUS.REWARD_NO_CHOOSE); + + for (let { rewardId, passiveCardIds, optionStatus, optionIndex } of tempOptions) { + if (optionStatus != 0) return resResult(STATUS.REWARD_NO_CHOOSE); + let cardCode = genCode(8); + if (rewardType == ROUGE_LIKE_CARD_TYPE.CHARA) { + // 更新角色卡 + handleAddFun.pushChara(rewardId, await getMaxHp(roleId, gameCode, rewardId, dbRecord.type, dbRecord.grade), passiveCardIds || []); + //休整点 消耗 + if (nodeType == ROUGE_LIKE_NODE_TYPE.REST_POINT) { + let charaData = gameData.rougeChara.get(rewardId); + if (!charaData) return; + redCoin += charaData.recruitConsume || 0; + } + } else { + // 更新特性卡or圣物 + handleAddFun.pushCard(rewardId, rewardType); + } + optionStatus = ROUGE_LIKE_CHOOSE_REWARD.CHOOSE; + options.forEach((ele) => { if (ele.optionIndex == optionIndex) ele.optionStatus = optionStatus; }); + } + + if ((dbRecord.coin || 0) < redCoin) return resResult(STATUS.COIN_NOT_ENOUGH); + if (redCoin > 0) await RougelikeRecordModel.updateByGameCode(gameCode, { $inc: { coin: -redCoin } }); + + //处理特性卡组 + groupStatus = ROUGE_LIKE_CHOOSE_REWARD.CHOOSE; + if (rewardType == ROUGE_LIKE_CARD_TYPE.PASSIVE || rewardType == ROUGE_LIKE_CARD_TYPE.CHARA) { + groupStatus = ROUGE_LIKE_CHOOSE_REWARD.NOCHOOSE; + if (chooseNum - passiveChooseCount == optionIndexs.length) { + groupStatus = ROUGE_LIKE_CHOOSE_REWARD.CHOOSE; + await updateChalleng(dbRecord, roleId, sid, gameCode, layer, []); // 更新挑战进度 + } + } + rewards.forEach((ele) => { if (ele.rewardType == rewardType) ele.groupStatus = groupStatus; }); + + + // 挑战领奖 + let dbPara = {}; + if (rewards.find((obj) => obj.groupStatus != ROUGE_LIKE_CHOOSE_REWARD.CHOOSE) == undefined) { + if (nodeType == ROUGE_LIKE_NODE_TYPE.CHALLENGE) { + challenge.status = 3; + dbPara['challenge'] = challenge; + } + + await RougelikeLayerModel.updateByGameCode(gameCode, layer, { $set: { hasPass: true } }) + } + + await RougelikeRecordDetailModel.updateRewardByGroupIndex(gameCode, detailCode, groupIndex, groupStatus, options, { $set: dbPara }); + + let addResult = await handleAddFun.save(); + addResult = await handleAddFun.getHolyEffect(); + + return resResult(STATUS.SUCCESS, { ...addResult, incCoin, redCoin }); + + } + + + /** + * 商店购买 + * @param msg + * @param session + * @returns + */ + async shopBuy(msg: { gameCode: string, detailCode: string, optionIndex: number }, session: BackendSession) { + let roleId = session.get('roleId'); + let sid = session.get('sid'); + + let { gameCode, detailCode, optionIndex } = msg; + + let dbDetail = await RougelikeRecordDetailModel.findByCode(gameCode, detailCode); + if (!dbDetail) return resResult(STATUS.SHOP_NO_BUY); + + let { status = 0, shops, layer, nodeType } = dbDetail; + if (status == 1 || !shops || shops.length == 0) return resResult(STATUS.SHOP_NO_BUY); + + let shop = shops.find((obj) => obj.optionIndex == optionIndex); + if (!shop || shop.optionStatus != ROUGE_LIKE_CHOOSE_REWARD.NOCHOOSE) return resResult(STATUS.SHOP_NO_BUY); + + let dbRecord = await RougelikeRecordModel.findByGameCode(gameCode); + if (!dbRecord || (dbRecord.coin || 0) < shop.price) return resResult(STATUS.COIN_NOT_ENOUGH); + + + shop.optionStatus = ROUGE_LIKE_CHOOSE_REWARD.CHOOSE; + + await RougelikeRecordDetailModel.updateShopByCode(gameCode, detailCode, optionIndex, shop.optionStatus); + await RougelikeRecordModel.updateByGameCode(gameCode, { $set: { coin: (dbRecord.coin || 0) - shop.price } }); + + let handleAddFun = new HandleAddCard(roleId, sid, gameCode, dbDetail); + handleAddFun.pushCard(shop.rewardId, shop.rewardType); + let result = await handleAddFun.save(); + result = await handleAddFun.getHolyEffect(); + + return resResult(STATUS.SUCCESS, { curShop: shop, ...result, redCoin: -shop.price }); + + } + + /** + * 结束这一节点 + * @param msg + * @param session + * @returns + */ + async nodeEnd(msg: { gameCode: string, detailCode: string }, session: BackendSession) { + let roleId = session.get('roleId'); + const { gameCode, detailCode } = msg; + let dbDetail = await RougelikeRecordDetailModel.findByCode(gameCode, detailCode); + if (!dbDetail) return resResult(STATUS.NO_EXIT_NODE); + let { layer, nodeType, status = 0, shops, warId = 0 } = dbDetail; + if ((warId != 0 && status != 1)) { + //检测关卡是否挑战成功 + return resResult(STATUS.NODE_NO_END) + } + status = 1; + await RougelikeRecordDetailModel.updateByCode(gameCode, detailCode, { $set: { status } }); + if (nodeType != ROUGE_LIKE_NODE_TYPE.CHALLENGE) { + await RougelikeLayerModel.updateByGameCode(gameCode, layer, { $set: { hasPass: true } }); + } + + return resResult(STATUS.SUCCESS, { gameCode, detailCode, status, ...await getGame(roleId) }) + } + + + /** + * 问号点选择题 + * @param msg + * @param session + * @returns + */ + async chooseOption(msg: { gameCode: string, detailCode: string, eventOptions: number[] }, session: BackendSession) { + let roleId = session.get('roleId'); + let sid = session.get('sid'); + const { gameCode, detailCode, eventOptions } = msg; + + let dbDetail = await RougelikeRecordDetailModel.findByCode(gameCode, detailCode); + if (!dbDetail) return resResult(STATUS.NODE_NO_CHOOSE); + let { layer, nodeType, status = 0, question = {} as Quest } = dbDetail; + if (status == 1) return resResult(STATUS.NODE_NO_CHOOSE); + + let checkAfterGroup = 0, optionGroupIds: number[] = []; + let handleAddFun = new HandleAddCard(roleId, sid, gameCode, dbDetail); + for (let [index, id] of eventOptions.entries()) { + const rougeEventOptionData = gameData.rougeEventOption.get(id); + if (!rougeEventOptionData) return resResult(STATUS.NODE_NO_CHOOSE); + const { randomEventId, optionGroup, afterGroup, holyCardPlan } = rougeEventOptionData; + + if (randomEventId != (question.randomEventId || 0)) return resResult(STATUS.NODE_NO_CHOOSE); + + if (index != 0 && checkAfterGroup != optionGroup) return resResult(STATUS.NODE_NO_CHOOSE); + if (!optionGroupIds.includes(optionGroup)) optionGroupIds.push(optionGroup); + + if (!question.EventOptions) question.EventOptions = []; + question.EventOptions.push(id); + checkAfterGroup = afterGroup; + + let cardId = 0; + const rougeHolyCardPlanData = gameData.rougeHolyCardPlan.get(holyCardPlan); + if (!rougeHolyCardPlanData || rougeHolyCardPlanData.length == 0) continue; + if (rougeHolyCardPlanData.length == 1) cardId = rougeHolyCardPlanData[0].cardId; + else cardId = getRandEelmWithWeight(rougeHolyCardPlanData).dic.cardId; + + handleAddFun.pushHolyCard(cardId); + } + + status = 1; + + await RougelikeRecordDetailModel.updateByCode(gameCode, detailCode, { $set: { question, status } }) + await RougelikeLayerModel.updateByGameCode(gameCode, layer, { $set: { hasPass: true } }) + + let result = await handleAddFun.save(); + result = await handleAddFun.getHolyEffect(); + + await addSameTypeCollect(roleId, sid, gameCode, COLLECTION_TYPE.EVENT, optionGroupIds); + + return resResult(STATUS.SUCCESS, { ...result }) + } + + + /** + * 休整点恢复 + * @param msg + * @param session + * @returns + */ + async recovery(msg: { gameCode: string, detailCode: string }, session: BackendSession) { + let roleId = session.get('roleId'); + + const { gameCode, detailCode } = msg; + + const dbRecord = await RougelikeRecordModel.findByGameCode(gameCode) + if (!dbRecord) return resResult(STATUS.NO_ROUGELIKE_GAME); + if (dbRecord.status != ROUGE_LIKE_STATUS.INPROGRESS) return resResult(STATUS.ROUGELIKE_GAME_END); + + let dbDetail = await RougelikeRecordDetailModel.findByCode(gameCode, detailCode); + if (!dbDetail) return resResult(STATUS.NODE_NO_CHOOSE); + let { restPoints = [], nodeType, status, rewards } = dbDetail; + if (status == 1 || nodeType != ROUGE_LIKE_NODE_TYPE.REST_POINT) return resResult(STATUS.NODE_NO_CHOOSE); + + let restPoint = restPoints.find(cur => cur.restType == REST_POINT_TYPE.RECOVERY) || new RestPoint(); + if (restPoint.recoveryCnt && restPoint.recoveryCnt > 0) return resResult(STATUS.NO_TIME_RECOVERY); + restPoint.recoveryCnt = 1; + restPoint.restType = REST_POINT_TYPE.RECOVERY; + restPoint.recoveryCharas = []; + let dbCharas = await RougelikeCharaModel.findByGameCode(gameCode); + let updateCharas: RougelikeCharaPara[] = []; + + let hpRatio = await getRecoveryExtendHp(roleId, gameCode); + for (let { gameCode, charaCode, charaId, cards, hp, maxHp = 0, ap, shield, roundSkill, apSkill } of dbCharas) { + let beforeHp = hp; + hp = Math.floor(Math.min(hp + maxHp * ROUGELIKE.RECOVERY_RATIO / 100 + hp * hpRatio / 100, maxHp)); + updateCharas.push({ gameCode, charaCode, hp }); + restPoint.recoveryCharas.push({ charaCode, charaId, beforeHp, afterHp: hp }); + } + restPoints.push({ restType: restPoint.restType, recoveryCnt: restPoint.recoveryCnt, recoveryCharas: restPoint.recoveryCharas }); + + await RougelikeRecordDetailModel.updateByCode(gameCode, detailCode, { $set: { restPoints } }); + await RougelikeCharaModel.bulkWriteUpdate(updateCharas); + + const charas: CommonChara[] = formateCharasOrCards(dbCharas, ROUGE_LIKE_CARD_TYPE.CHARA)?.charas || []; + + return resResult(STATUS.SUCCESS, { restPoints, charas, reward: { rewards } }) + } + + /** + * 休整点强化 + * @param msg + * @param session + */ + async trainCard(msg: { gameCode: string, detailCode: string, cardCode: string }, session: BackendSession) { + let roleId = session.get('roleId'); + + const { gameCode, detailCode, cardCode } = msg; + const dbRecord = await RougelikeRecordModel.findByGameCode(gameCode) + if (!dbRecord) return resResult(STATUS.NO_ROUGELIKE_GAME); + if (dbRecord.status != ROUGE_LIKE_STATUS.INPROGRESS) return resResult(STATUS.ROUGELIKE_GAME_END); + + let dbDetail = await RougelikeRecordDetailModel.findByCode(gameCode, detailCode); + if (!dbDetail) return resResult(STATUS.NODE_NO_CHOOSE); + let { layer, nodeType, status = 0, question, restPoints = [], rewards } = dbDetail; + if (status == 1 || nodeType != ROUGE_LIKE_NODE_TYPE.REST_POINT) return resResult(STATUS.NODE_NO_CHOOSE); + + let dbCard = await RougelikeCardModel.findByCode(gameCode, cardCode); + if (!dbCard) return resResult(STATUS.NO_CARD); + let { type, cardId, charaId, lv = 0 } = dbCard; + + const passiveCardData = gameData.rougePassiveCard.get(cardId); + if (!passiveCardData) return resResult(STATUS.NO_CARD); + const passiveCardByGroupData = gameData.rougePassiveCardByGroup.get(passiveCardData.group || 0); + if (passiveCardByGroupData.length == 0 || passiveCardByGroupData.length == 1) return resResult(STATUS.HIGH_LV); + let passiveCardDataMap = passiveCardByGroupData.reduce((result, cur) => { result.set(cur.lv, cur); return result; }, new Map()); + if (!passiveCardDataMap.has(lv + 1)) return resResult(STATUS.HIGH_LV); + + const strengthConsume = passiveCardData.strengthConsume || 0; + const { lv: cardLv, id } = passiveCardDataMap.get(lv + 1); + if (lv == cardLv) return resResult(STATUS.HIGH_LV); + + let realConsume = Math.floor(strengthConsume * await getTrainCardDiscount(roleId, gameCode) / 100); + if ((dbRecord.coin || 0) < realConsume) return (STATUS.COIN_NOT_ENOUGH); + + let restPoint = restPoints.find(cur => cur.restType == REST_POINT_TYPE.TRAIN) || new RestPoint(); + restPoint.restType = REST_POINT_TYPE.TRAIN; + if (!restPoint.trainCardCnt) restPoint.trainCardCnt = 0; + restPoint.trainCardCnt += 1; + if (!restPoint.trainCards) restPoint.trainCards = []; + restPoint.trainCards.push({ cardCode, cardId: id, beforeLv: lv, afterLv: lv + 1 }); + + if (restPoints.find(cur => cur.restType == restPoint.restType) == undefined) { + restPoints.push({ restType: restPoint.restType, trainCardCnt: restPoint.trainCardCnt, trainCards: restPoint.trainCards }) + } + else restPoints.forEach(obj => { + if (obj.restType == restPoint.restType) { + obj.trainCardCnt = restPoint.trainCardCnt; + obj.trainCards = restPoint.trainCards; + } + + }) + await RougelikeRecordModel.updateByGameCode(gameCode, { $inc: { coin: -realConsume } }); + await RougelikeRecordDetailModel.updateByCode(gameCode, detailCode, { $set: { restPoints } }); + const newDbCard = await RougelikeCardModel.updateByCode(gameCode, cardCode, { $set: { cardId: id }, $inc: { lv: 1 } }); + const cards: CommonCard[] = formateCharasOrCards([newDbCard], ROUGE_LIKE_CARD_TYPE.PASSIVE)?.cards || []; + + return resResult(STATUS.SUCCESS, { restPoints, cards, reward: { rewards }, redCoin: -realConsume, }) + + } + + /** + * 选择一张技能卡 + * @param msg + * @returns + */ + async chooseSkillCard(msg: { gameCode: string, charaCode: string, skillType: number, id: number }, session: BackendSession) { + let roleId: string = session.get('roleId'); + let sid: string = session.get('sid'); + + const { gameCode, charaCode, skillType, id } = msg; + + let dbChara = await RougelikeCharaModel.findByCode(gameCode, charaCode); + if (!dbChara) return resResult(STATUS.NO_CARD); + + if (id > 0) { + const dicSkillCard = gameData.rougeSkillCard.get(id); + if (!dicSkillCard) return resResult(STATUS.DIC_DATA_NOT_FOUND); + if (dicSkillCard.skillType != skillType) return resResult(STATUS.WRONG_PARMS); + + // 检查数量 + if (!await checkCanChooseSkillCard(roleId, gameCode, id, dbChara.cards)) + return resResult(STATUS.ROUGE_PASSIVE_CARD_NOT_ENOUGH); + } + + let chara = await RougelikeCharaModel.putOnOrOffSkillCard(gameCode, charaCode, skillType, id); + if (!dbChara) return resResult(STATUS.NO_CARD); + // 更新图鉴 + await addSingleCollect(roleId, sid, gameCode, COLLECTION_TYPE.SKILL_CARD, id); + + return resResult(STATUS.SUCCESS, { + curChara: new CommonChara(chara) + }) + } + + /** + * 安装或者卸下特性卡 + * @param msg + * @param session + */ + async putOnOrOffCard(msg: { gameCode: string, charaCode: string, cards: SlotCard[] }, session: BackendSession) { + let roleId: string = session.get('roleId'); + let { gameCode, charaCode, cards } = msg; + + // 获取角色卡db数据 + let dbChara = await RougelikeCharaModel.findByCode(gameCode, charaCode); + if (!dbChara) return resResult(STATUS.NO_CARD); + if (!dbChara.cards || dbChara.cards.length == 0) return resResult(STATUS.SLOT_UNLOCK); + let dbCharaCardsMap = dbChara.cards.reduce((result, cur) => { result.set(cur.index, cur); return result; }, new Map()); + + // 获取需要安装、卸下的特性卡db数据 + let cardCodes: string[] = []; + cards.forEach((ele) => { cardCodes.push(ele.cardCode); }); + dbChara.cards.forEach((ele) => { cardCodes.push(ele.cardCode); }) + let dbCards: RougelikeCardType[] = await RougelikeCardModel.findByGameCodeAndCardCodes(gameCode, cardCodes); + if (dbCards.length == 0) return resResult(STATUS.NO_CARD); + let dbCardsMap = dbCards.reduce((result, cur) => { result.set(cur.cardCode, cur); return result; }, new Map()); + + let newCardsMap = new Map(); + for (let { index, cardCode } of cards) { + // 检测卡槽解锁 + let slot = dbCharaCardsMap.get(index) + if (!slot) return resResult(STATUS.SLOT_UNLOCK); + + //处理旧的cardCode + let oldSotCardCode = clone(slot.cardCode); + let updateObj = dbCardsMap.get(oldSotCardCode); + if (updateObj) { + updateObj.charaId = 0; + dbCardsMap.set(oldSotCardCode, updateObj); + newCardsMap.set(oldSotCardCode, updateObj); + } + + //处理新的cardCode安装 + let update = dbCardsMap.get(cardCode); + dbCharaCardsMap.set(index, { index, cardCode: cardCode, cardId: update?.cardId || 0 }); + if (update) { + if (update.type != ROUGE_LIKE_CARD_TYPE.PASSIVE) return resResult(STATUS.NO_PASSIVE); + update.charaId = dbChara.charaId; + dbCardsMap.set(cardCode, update); + newCardsMap.set(cardCode, update); + } + } + // 如果卸下之后技能卡需要的被动卡不够,需要把技能卡卸下 + let newCards = Array.from(dbCharaCardsMap.values()); + let { apSkill, roundSkill } = dbChara; + if (apSkill > 0 && !await checkCanChooseSkillCard(roleId, gameCode, apSkill, newCards)) apSkill = 0; + if (roundSkill > 0 && !await checkCanChooseSkillCard(roleId, gameCode, roundSkill, newCards)) roundSkill = 0; + + //更新角色卡db, 特性卡db + let newChara = await RougelikeCharaModel.updateByCode(gameCode, charaCode, { $set: { cards: newCards, apSkill, roundSkill } }); + await RougelikeCardModel.bulkWriteUpdate(Array.from(newCardsMap.values()).map(obj => ({ gameCode, cardCode: obj.cardCode, charaId: obj.charaId }))) + let curCards = Array.from(dbCardsMap.values()).map(obj => ({ cardCode: obj.cardCode, type: obj.type, charaId: obj.charaId, lv: obj.lv })); + + return resResult(STATUS.SUCCESS, { curCards, curChara: new CommonChara(newChara) }) + } + + + async exchangeChara(msg: { gameCode: string, oldCharaCode: string, newCharaCode: string }, session: BackendSession) { + let roleId: string = session.get('roleId'); + const { gameCode, oldCharaCode, newCharaCode } = msg; + const result = await RougelikeCharaModel.findByCodes(gameCode, [oldCharaCode, newCharaCode]); + if (result.length != 2) return (STATUS.NO_CARD); + let oldChara = {} as RougelikeCharaType, newChara = {} as RougelikeCharaType; + for (let val of result) { + if (val.charaCode == oldCharaCode) oldChara = val; + if (val.charaCode == newCharaCode) newChara = val; + } + + let temp = clone(newChara.seqId); + newChara.seqId = clone(oldChara.seqId); + oldChara.seqId = temp; + // 更新角色卡 + await RougelikeCharaModel.bulkWriteUpdate([oldChara, newChara]); + let charas = formateCharasOrCards([oldChara, newChara], ROUGE_LIKE_CARD_TYPE.CHARA).charas; + + + // // 处理新卡 + // let { charaCode, charaId, maxHp, seqId } = newChara; + // newChara = clone(oldChara); + // newChara.charaCode = charaCode; + // newChara.charaId = charaId; + // newChara.maxHp = maxHp; + + // let cardCodes = []; + // let updateArr: RougelikeCardPara[] = []; + // for (let val of newChara.cards) { + // cardCodes.push(val.cardCode); + // updateArr.push({ gameCode, cardCode: val.cardCode, charaId }); + // } + + // // 处理旧卡 + // oldChara.cards.forEach((cur) => { cur.cardCode = '', cur.cardId = 0 }); + // oldChara.ap = oldChara.apSkill = oldChara.roundSkill = 0; + // oldChara.seqId = seqId; + + // // 更新角色卡 + // await RougelikeCharaModel.bulkWriteUpdate([oldChara, newChara]); + + // let cards = formateCharasOrCards(await RougelikeCardModel.findByGameCodeAndCardCodes(gameCode, cardCodes), ROUGE_LIKE_CARD_TYPE.PASSIVE).cards; + // // 更新card + // await RougelikeCardModel.bulkWriteUpdate(updateArr); + + // let charas = formateCharasOrCards([oldChara, newChara], ROUGE_LIKE_CARD_TYPE.CHARA).charas; + + return resResult(STATUS.SUCCESS, { charas }); + } + + /** + * 解锁科技点 + * @param msg + * @param session + */ + async unlockTech(msg: { techId: number }, session: BackendSession) { + let roleId: string = session.get('roleId'); + let sid: string = session.get('sid'); + const { techId } = msg; + + let dicTech = gameData.rougeTech.get(techId); + if (!dicTech) return resResult(STATUS.DIC_DATA_NOT_FOUND); + + let techRecord = await RougelikeTechModel.findByRoleId(roleId); + let { unlockedTech = [] } = techRecord || {}; + if (unlockedTech.includes(techId)) return resResult(STATUS.ROUGE_TECH_HAS_UNLOCKED); + if (!checkPreRougeTech(techId, unlockedTech)) return resResult(STATUS.ROUGE_TECH_PRE_NOT_UNLOCKED); + + // 检查消耗 + let costResult = await handleCost(roleId, sid, dicTech.cost, ITEM_CHANGE_REASON.ROUGE_UNLOCK_TECH); + if (!costResult) return resResult(STATUS.ROLE_MATERIAL_NOT_ENOUGH); + let circleIds = gameData.rougeCircleByTech.get(techId) || []; + techRecord = await RougelikeTechModel.unlockTech(roleId, techId, circleIds); + if (!techRecord) return resResult(STATUS.ROUGE_TECH_SCORE_NOT_ENOUGH); + await updateEffectId(techRecord); + + let resultData = getCurTechData(techRecord, techId); + return resResult(STATUS.SUCCESS, { + ...resultData + }); + } + + /** + * 放置法阵 + * @param msg + * @param session + * @returns + */ + async putOnCircle(msg: { circleId: number, hid: number }, session: BackendSession) { + + let roleId: string = session.get('roleId'); + const { circleId, hid } = msg; + + let techId = gameData.rougeTechCircle.get(circleId); + if (!techId) return resResult(STATUS.DIC_DATA_NOT_FOUND); + + let dicTech = gameData.rougeTech.get(techId); + if (!dicTech) return resResult(STATUS.DIC_DATA_NOT_FOUND); + + let techRecord = await RougelikeTechModel.findByRoleId(roleId); + if (!techRecord) return resResult(STATUS.ROUGE_CIRCLE_NOT_UNLOCK); + let { unlockedTech = [] } = techRecord; + if (!unlockedTech.includes(techId)) return resResult(STATUS.ROUGE_CIRCLE_NOT_UNLOCK); + + let ce = 0; + if (hid != 0) { + let hero = await HeroModel.findByHidAndRole(hid, roleId, 'ce'); + if (!hero) return resResult(STATUS.HERO_NOT_FIND); + ce = hero.ce || 0; + } + + techRecord = await RougelikeTechModel.putOnCircle(roleId, circleId, hid, ce); + if (!techRecord) return resResult(STATUS.ROUGE_CIRCLE_NOT_UNLOCK); + await updateEffectId(techRecord); + + let resultData = getCurTechData(techRecord, techId); + return resResult(STATUS.SUCCESS, { + ...resultData + }); + } + + /** + * 领取图鉴奖励 + * @param msg + * @param session + * @returns + */ + async receiveCollectionReward(msg: { type: number, id: number }, session: BackendSession) { + let roleId: string = session.get('roleId'); + let roleName: string = session.get('roleName'); + let sid: string = session.get('sid'); + let { type, id } = msg; + + let dic: DicRougePassiveCollect | DicRougeHolyCard | DicRougeSkillCard | DicRougeOptionGroup; + let num = 1; + if (type == COLLECTION_TYPE.PASSIVE_CARD_SUM) { + dic = gameData.rougePassiceCollect.get(id); + num = dic?.num || 0; + } else if (type == COLLECTION_TYPE.HOLY_CARD) { + dic = gameData.rougeHolyCard.get(id); + } else if (type == COLLECTION_TYPE.SKILL_CARD) { + dic = gameData.rougeSkillCard.get(id); + } else if (type == COLLECTION_TYPE.EVENT) { + dic = gameData.rougeOptionGroup.get(id); + } + if (!dic) return resResult(STATUS.DIC_DATA_NOT_FOUND); + let collect = await RougelikeCollectionModel.findByRoleAndId(roleId, type, id); + if (!collect) return resResult(STATUS.ROUGE_COLLECT_NOT_ENOUGH); + if (collect.received.includes(id)) return resResult(STATUS.ROUGE_COLLECT_HAS_RECEIVED); + + collect = await RougelikeCollectionModel.receive(roleId, type, id, num); + if (!collect) return resResult(STATUS.ROUGE_COLLECT_NOT_ENOUGH); + let goods = await addItems(roleId, roleName, sid, dic.collectReward, ITEM_CHANGE_REASON.RECEIVE_COLLECT_REWARD); + + return resResult(STATUS.SUCCESS, { + goods, curCollection: new CollectionReturnParam(collect) + }); + } + + /** + * 领取积分奖励 + * @param msg + * @param session + * @returns + */ + async receiveScore(msg: { index: number }, session: BackendSession) { + let roleId: string = session.get('roleId'); + let sid: string = session.get('sid'); + let roleName: string = session.get('roleName'); + let { index } = msg; + let dicScore = gameData.rougeScoreReward.get(index); + if (!dicScore) return resResult(STATUS.DIC_DATA_NOT_FOUND); + + let scoreData = await RougelikeScoreModel.findByRoleId(roleId); + if (!scoreData || scoreData.score < dicScore.score) return resResult(STATUS.ROUGE_SCORE_NOT_ENOUGH); + if (scoreData.received.includes(index)) return resResult(STATUS.ROUGE_SCORE_HAS_RECEIVED); + + scoreData = await RougelikeScoreModel.receive(roleId, dicScore.score, index); + if (!scoreData) return resResult(STATUS.ROUGE_SCORE_NOT_ENOUGH); + + let goods = await addItems(roleId, roleName, sid, dicScore.reward, ITEM_CHANGE_REASON.RECEIVE_ROUGE_SCORE_REWARD); + return resResult(STATUS.SUCCESS, { + receivedScore: scoreData.received, + goods + }); + } + + /** + * debug接口,清空科技树 + * @param msg + * @param session + * @returns + */ + async debugClearTech(msg: {}, session: BackendSession) { + let roleId: string = session.get('roleId'); + await RougelikeTechModel.clearTech(roleId); + return resResult(STATUS.SUCCESS); + } + + async debugAddCard(msg: { type: number, id: number }, session: BackendSession) { + let { type, id } = msg; + + let roleId: string = session.get('roleId'); + let sid: string = session.get('sid'); + const dbRecord = await RougelikeRecordModel.findByRoleIdAndStatus(roleId, ROUGE_LIKE_STATUS.SUCCESS); + if (!dbRecord) { + return resResult(STATUS.NO_ROUGELIKE_GAME); + } + + let handleAddFun = new HandleAddCard(roleId, sid, dbRecord.gameCode); + if (type == ROUGE_LIKE_CARD_TYPE.CHARA) { + handleAddFun.pushChara(id, await getMaxHp(roleId, dbRecord?.gameCode || '', id, dbRecord.type, dbRecord.grade), []); + } else if (type == ROUGE_LIKE_CARD_TYPE.HOLY) { + handleAddFun.pushHolyCard(id); + } else if (type == ROUGE_LIKE_CARD_TYPE.PASSIVE) { + handleAddFun.pushPassiveCard(id); + } else { + return resResult(STATUS.WRONG_PARMS); + } + let result = await handleAddFun.save(); + result = await handleAddFun.getHolyEffect(); + return resResult(STATUS.SUCCESS, result); + } + + // debug接口 + async debugAddCollection(msg: { type: number, id: number }, session: BackendSession) { + let { type, id } = msg; + let roleId: string = session.get('roleId'); + let sid: string = session.get('sid'); + const dbRecord = await RougelikeRecordModel.findByRoleIdAndStatus(roleId, ROUGE_LIKE_STATUS.SUCCESS); + if (!dbRecord) { + return resResult(STATUS.NO_ROUGELIKE_GAME); + } + await addSingleCollect(roleId, sid, dbRecord.gameCode, type, id); + + return resResult(STATUS.SUCCESS); + } + + async debugAddScore(msg: { score: number }, session: BackendSession) { + let { score } = msg; + let roleId: string = session.get('roleId'); + let result = await RougelikeScoreModel.incScore(roleId, score); + return resResult(STATUS.SUCCESS, { weeklyScore: result.score }) + } + + async debugRepaireScoreReward() { + await repaireSendScoreReward(); + return resResult(STATUS.SUCCESS); + } + /** + * debug添加试炼通关 + * @param msg + * @param session + * @returns + */ + async debugAddLimitId(msg: { id: number }, session: BackendSession) { + const { id } = msg; + const roleId: string = session.get('roleId'); + const typeGradeByIdData = gameData.rougeTypeGradeById.get(id); + if (typeGradeByIdData) { + // for (let i = 3; i <= 42; i++) { + await RougelikeExtendModel.update(roleId, id, [], genCode(8)); + + // } + } + return resResult(STATUS.SUCCESS); + } +} \ No newline at end of file diff --git a/game-server/app/services/battle/rougeCollectService.ts b/game-server/app/services/battle/rougeCollectService.ts new file mode 100644 index 000000000..5fc804de7 --- /dev/null +++ b/game-server/app/services/battle/rougeCollectService.ts @@ -0,0 +1,184 @@ +import { RougelikeRecordDetailType } from '../../db/RougelikeRecordDetail'; +import { COLLECTION_TYPE, PUSH_ROUTE, ROUGE_LIKE_CARD_TYPE } from '../../consts'; +import { genCode } from '../../pubUtils/util'; +import { Card, RougelikeCharaModel, RougelikeCharaPara, RougelikeCharaType } from '../../db/RougelikeChara'; +import { RougelikeCardPara, RougelikeCardModel } from '../../db/RougelikeCard'; +import { CommonCard, CommonChara } from '../../pubUtils/interface'; +import { RougelikeCollectionModel } from '../../db/RougelikeCollection'; +import { sendMessageToUserWithSuc } from '../pushService'; +import { gameData } from '../../pubUtils/data'; +import { clone } from 'underscore'; +import { RougeEffect, getSlotUnlockPoint } from './rougeEffectService'; + +export class HandleAddCard { + roleId: string; + sid: string; + gameCode: string; + getLayer: number = 0; + getWay: number = 0; + addCharas: RougelikeCharaPara[] = []; // 需要更新的角色 + addPassiveCards: RougelikeCardPara[] = []; // 需要更新的特性卡 + addHolyCards: RougelikeCardPara[] = []; // 需要更新的圣物 + addCoin: number = 0; // 需要增加的试炼币 + + constructor(roleId: string, sid: string, gameCode: string, recordDetail?: RougelikeRecordDetailType) { + this.roleId = roleId; + this.sid = sid; + this.gameCode = gameCode; + if (recordDetail) { + this.getLayer = recordDetail.layer; + this.getWay = recordDetail.nodeType; + } + } + + private getCommonParam() { + let { roleId, gameCode, getLayer, getWay } = this; + return { roleId, gameCode, getLayer, getWay }; + } + + public pushChara(id: number, maxHp: number, passiveCardIds: number[]) { + let cards: Card[] = []; + for (let index = 0; index < passiveCardIds.length; index++) { + let cardId = passiveCardIds[index]; + let cardCode = this.pushPassiveCard(cardId, id); + cards.push({ index, cardCode, cardId }); + } + let charaCode = genCode(8); + this.addCharas.push({ ...this.getCommonParam(), cards, charaCode, charaId: id, maxHp, hp: maxHp, ap: 0, shield: 0, roundSkill: 0, apSkill: 0 }); + return charaCode; + } + + public pushCard(id: number, rewardType: ROUGE_LIKE_CARD_TYPE, charaId: number = 0) { + if (rewardType == ROUGE_LIKE_CARD_TYPE.PASSIVE) { + return this.pushPassiveCard(id, charaId); + } else if (rewardType == ROUGE_LIKE_CARD_TYPE.HOLY) { + return this.pushHolyCard(id); + } + } + + public pushPassiveCard(id: number, charaId: number = 0) { + let cardCode = genCode(8); + this.addPassiveCards.push({ + ...this.getCommonParam(), cardCode, cardId: id, type: ROUGE_LIKE_CARD_TYPE.PASSIVE, lv: gameData.rougePassiveCard.get(id)?.lv || 0, charaId + }); + return cardCode + } + + public pushHolyCards(ids: number[]) { + for (let id of ids) this.pushHolyCard(id); + } + + public pushHolyCard(id: number) { + let cardCode = genCode(8); + this.addHolyCards.push({ + ...this.getCommonParam(), cardCode, cardId: id, type: ROUGE_LIKE_CARD_TYPE.HOLY, useCount: this.getHolyUseCount(id) + }); + return cardCode + } + + private getHolyUseCount(holyId: number) { + const holyCardData = gameData.rougeHolyCard.get(holyId); + return holyCardData?.useCount || 0; + } + + public async save() { + let result: { addCharas?: CommonChara[], addCards?: CommonCard[] } = {}; + if (this.addCharas.length > 0) { + let updateParams = this.addCharas || []; + let resultArrs = await RougelikeCharaModel.createCharas(updateParams); + this.addCharas = resultArrs; + result.addCharas = resultArrs.map(param => new CommonChara(param)); + } + if (this.addPassiveCards.length > 0 || this.addHolyCards.length > 0) { + let updateParams = [...(this.addPassiveCards || []), ...(this.addHolyCards || [])]; + // await RougelikeCardModel.bulkWriteUpdate(updateParams); + updateParams.map(async param => { + const { gameCode, cardCode } = param; + await RougelikeCardModel.updateByCode(gameCode, cardCode, { $set: param }) + }); + result.addCards = updateParams.map(param => new CommonCard(param)); + } + let collections: { type: number, id: number, addNum?: number }[] = []; + for (let { cardId, type } of result.addCards || []) { + if (type == ROUGE_LIKE_CARD_TYPE.PASSIVE) { + collections.push({ type: COLLECTION_TYPE.PASSIVE_CARD, id: cardId }); + } + if (type == ROUGE_LIKE_CARD_TYPE.HOLY) collections.push({ type: COLLECTION_TYPE.HOLY_CARD, id: cardId }); + } + if (collections.length > 0) await addCollection(this.roleId, this.sid, this.gameCode, collections); + + if (this.addCharas.length > 0) { + result.addCharas = await this.getCharasByHolyEffect(); + } + + return result; + } + + // 处理获得角色卡时拥有圣物效果 + public async getCharasByHolyEffect() { + let result = await getSlotUnlockPoint(this.roleId, this.gameCode, this.addCharas || []); + this.addCharas = result.dbCharas; + if (result.isUpdate) { + await RougelikeCharaModel.bulkWriteUpdate(this.addCharas || []); + } + return this.addCharas.map(param => new CommonChara(param)); + } + + // 处理圣物效果 + public async getHolyEffect() { + let result: { addCharas?: CommonChara[], addCards?: CommonCard[] } = {}; + let charasMap = (this.addCharas || []).reduce((result, cur) => { result.set(cur.charaCode, cur); return result; }, new Map()); + let cardsMap = [...(this.addPassiveCards || []), ...(this.addHolyCards || [])].reduce((result, cur) => { result.set(cur.cardCode, cur); return result; }, new Map()); + if ((this.addHolyCards || []).length > 0) { + let rougeEffect = new RougeEffect(this.roleId, this.gameCode); + let holyIds = clone(this.addHolyCards.map(cur => { return { cardCode: cur.cardCode, cardId: cur.cardId, useCount: cur.useCount } })); + + let { charas, cards } = await rougeEffect.getEffectImmediate(holyIds); + if (charas && charas.size > 0) { + await RougelikeCharaModel.bulkWriteUpdate([...charas.values()]); + charasMap = new Map([...charasMap, ...charas]) + } + if (cards && Object.entries(cards).length > 0) { + cardsMap = new Map([...cardsMap, ...cards]) + } + } + result.addCharas = [...charasMap.values()].map(param => new CommonChara(param)); + result.addCards = [...cardsMap.values()].map(param => new CommonCard(param)); + + return result; + } +} + +export function formateCharasOrCards(params: RougelikeCharaPara[] | RougelikeCardPara[], type: number) { + let result: { charas?: CommonChara[], cards?: CommonCard[] } = {}; + if (!params || params.length == 0) return result; + const updateParams = params || []; + if (type == ROUGE_LIKE_CARD_TYPE.CHARA) result.charas = updateParams.map(param => new CommonChara(param)); + else result.cards = updateParams.map(param => new CommonCard(param)); + return result; +} + +export async function addCollection(roleId: string, sid: string, gameCode: string, arr: { type: number, id: number, addNum?: number }[]) { + let collections: { type: number, id: number, num: number }[] = [], passiveCnt = 0; + for (let { type, id, addNum = 1 } of arr) { + if (type == COLLECTION_TYPE.PASSIVE_CARD_SUM) continue; + let collection = await RougelikeCollectionModel.addRec(roleId, type, id, gameCode, addNum); + if (!collection || collection.num > 1) continue; + if (collection.num == 1) passiveCnt++; + collections.push({ type, id, num: collection.num }); + } + if (passiveCnt > 0) { + let collection = await RougelikeCollectionModel.addRec(roleId, COLLECTION_TYPE.PASSIVE_CARD_SUM, 0, gameCode, passiveCnt); + collections.push({ type: COLLECTION_TYPE.PASSIVE_CARD, id: 0, num: collection.num }); + } + await sendMessageToUserWithSuc(roleId, PUSH_ROUTE.ROUGE_COLLECT_UPDATE, { collections }, sid); + return collections; +} + +export async function addSingleCollect(roleId: string, sid: string, gameCode: string, type: number, id: number) { + return await addCollection(roleId, sid, gameCode, [{ type, id }]); +} + +export async function addSameTypeCollect(roleId: string, sid: string, gameCode: string, type: number, ids: number[]) { + return await addCollection(roleId, sid, gameCode, ids.map(id => ({ type, id }))); +} \ No newline at end of file diff --git a/game-server/app/services/battle/rougeEffectService.ts b/game-server/app/services/battle/rougeEffectService.ts new file mode 100644 index 000000000..70c7a7bc8 --- /dev/null +++ b/game-server/app/services/battle/rougeEffectService.ts @@ -0,0 +1,536 @@ +import { ABI_TYPE } from "../../consts/constModules/abilityConst"; +import { ROUGELIKE_SKILLTYPE, ROUGE_EFFECT_TYPE, ROUGE_EFFECT_TYPE_KIND, ROUGE_LIKE_CARD_TYPE, ROUGE_SLOT_LIMIT } from "../../consts"; +import { RougelikeCardModel, RougelikeCardPara, RougelikeCardType } from "../../db/RougelikeCard"; +import { Card, RougelikeCharaModel, RougelikeCharaPara, RougelikeCharaType } from "../../db/RougelikeChara"; +import { RougelikeRecordModel } from "../../db/RougelikeRecord"; +import { gameData, getRougeEffectTypeKind } from "../../pubUtils/data"; +import { DicRougePassiveCardPlan } from "../../pubUtils/dictionary/DicRougePassiveCardPlan"; +import { getRandEelm } from "../../pubUtils/util"; +import { RougelikeTechModel } from "../../db/RougelikeTech"; +import { getAuthorTypeCardNum } from "./rougeService"; +import * as util from 'util'; + + + +export class holyId { + cardCode: string; + cardId: number; + useCount: number; +} + + +export class RougeEffect { + roleId: string; + gameCode: string; + newEffect: { effectType: number, effectParam: number[], cardCode?: string }[] = []; + holyMap = new Map(); + updateHolyMap = new Map(); + updateCharaMap = new Map(); + updateCardMap = new Map(); + dbCharas: RougelikeCharaType[] = []; + dbCards: RougelikeCardType[] = []; + + constructor(roleId: string, gameCode: string) { + this.roleId = roleId || ''; + this.gameCode = gameCode || ''; + + } + + /** + * 根据类型获取effectId + * @param effectTypes + * @param holyIds + * @returns + */ + public async getEffectData(effectTypes: number[], holyIds?: holyId[]) { + let kinds = getRougeEffectTypeKind(effectTypes); + if (kinds.includes(ROUGE_EFFECT_TYPE_KIND.HOLY)) { + if (!holyIds || holyIds.length == 0) { + const dbCards = await RougelikeCardModel.findByGameCodeAndType(this.gameCode, ROUGE_LIKE_CARD_TYPE.HOLY); + holyIds = dbCards.map((cur) => { return { cardCode: cur.cardCode, cardId: cur.cardId, useCount: cur.useCount || 0 } }); + } + if (!holyIds || holyIds.length == 0) return { newEffect: this.newEffect, holyMap: this.holyMap }; + + for (const { cardCode, cardId, useCount } of holyIds) { + let effectIds = gameData.rougeHolyCard.get(cardId)?.effectId || []; + if (effectIds.length == 0) continue; + + for (const effectId of effectIds) { + const effectDataOne = gameData.rougeEffect.get(effectId); + if (!effectDataOne) continue; + const effectParam = effectDataOne.effectParam || []; + for (let effectType of effectTypes) { + if (effectType != effectDataOne.effectType || 0) continue; + this.newEffect.push({ effectType, effectParam, cardCode }); + this.holyMap.set(cardCode, { cardCode, cardId, useCount }) + } + } + } + } + + if (kinds.includes(ROUGE_EFFECT_TYPE_KIND.TECH)) { + let tech = await RougelikeTechModel.findByRoleId(this.roleId, 'effectIds'); + for (let effectId of (tech?.effectIds || [])) { + const effectDataOne = gameData.rougeEffect.get(effectId); + if (!effectDataOne) continue; + for (let effectType of effectTypes) { + if (effectType != effectDataOne.effectType || 0) continue; + this.newEffect.push({ effectType, effectParam: effectDataOne.effectParam || [] }); + } + } + } + + return { newEffect: this.newEffect, holyMap: this.holyMap } + } + + /* ** + * 获取圣物时生效 + * @param gameCode + */ + public async getEffectImmediate(holyIds?: holyId[]) { + let result: { charas?: Map, cards?: Map } = {}; + this.dbCharas = await RougelikeCharaModel.findByGameCode(this.gameCode); + this.dbCards = await RougelikeCardModel.findByGameCode(this.gameCode); + + await this.getEffectData([ + ROUGE_EFFECT_TYPE.HOLY_CHARA_SLOT_UNLOCK_ALL, //2002 + ROUGE_EFFECT_TYPE.HOLY_CHARA_SLOT_UNLOCK_RAND, //2003 + ROUGE_EFFECT_TYPE.HOLY_PASSIVE_UPDATE_RAND, //2006 + ROUGE_EFFECT_TYPE.HOLY_UPDATE_PASSIVE_BY_LV, //2012 + ROUGE_EFFECT_TYPE.HOLY_REPAIRE_HOLY, //2015 + ], holyIds) + + await this.getCharaSlot(); + + await this.getRandCharaSlot(); + + await this.getRandomCardLv() + + await this.getPassiveLv(); + + await this.getRecoveryHoly(); + + result = { charas: this.updateCharaMap, cards: this.updateCardMap }; + + return result; + } + + + // 获得该圣物时,所有学员立刻解锁X个特性槽 2002 + private async getCharaSlot() { + if (this.newEffect.length == 0 || this.dbCharas.length == 0) return; + for (const { effectParam, effectType } of this.newEffect) { + if (effectType != ROUGE_EFFECT_TYPE.HOLY_CHARA_SLOT_UNLOCK_ALL) continue; + if (effectParam.length == 0) continue; + for (let val of this.dbCharas) { + let { charaCode, cards = [] } = val; + let unlockNum = effectParam[0] || 0; + for (let i = 0; i < unlockNum; i++) { + unlockNum = effectParam[0] || 0; + if (cards.length >= ROUGE_SLOT_LIMIT) continue; + for (let index = 0; index < ROUGE_SLOT_LIMIT; index++) { + if (cards.find(cur => cur.index == index) != undefined || unlockNum == 0) continue; + cards.push({ index, cardCode: '', cardId: 0 }); + this.updateCharaMap.set(charaCode, val); + unlockNum--; + } + } + } + } + } + + // 获得该圣物时,随机解锁X个学员的Y个特性槽 2003 + private async getRandCharaSlot() { + if (this.newEffect.length == 0 || this.dbCharas.length == 0) return; + for (const { effectParam, effectType } of this.newEffect) { + if (effectType != ROUGE_EFFECT_TYPE.HOLY_CHARA_SLOT_UNLOCK_RAND) continue; + if (effectParam.length == 0) continue; + const randomNum = effectParam[0] || 0; + let unlockNum = effectParam[1] || 0; + let charas = getRandEelm(this.dbCharas.filter(cur => cur.cards.length < ROUGE_SLOT_LIMIT), randomNum); + for (let val of charas) { + unlockNum = effectParam[1] || 0; + let { charaCode, cards = [] } = val; + for (let index = 0; index < ROUGE_SLOT_LIMIT; index++) { + if (cards.find(cur => cur.index == index) != undefined || unlockNum == 0) continue; + cards.push({ index, cardCode: '', cardId: 0 }); + this.updateCharaMap.set(charaCode, val); + unlockNum--; + } + } + } + } + + // 随机升级X个已装备的特性 2006 + private async getRandomCardLv() { + let cards: RougelikeCardType[] = []; + if (this.newEffect.length == 0 || this.dbCards.length == 0) return cards; + for (const { effectParam, effectType } of this.newEffect) { + if (effectType != ROUGE_EFFECT_TYPE.HOLY_PASSIVE_UPDATE_RAND) continue; + if (effectParam.length == 0) continue; + const randomNum = effectParam[0] || 0; + let random = this.dbCards.filter(cur => cur.type == ROUGE_LIKE_CARD_TYPE.PASSIVE && cur.charaId != 0 && cur.lv < (gameData.rougePassiveCard.get(cur.cardId)?.lv || 0)) + let cards = getRandEelm(random, randomNum); + cards.forEach(cur => { + cur.lv += 1; + this.updateCardMap.set(cur.cardCode, cur); + }); + } + } + + // 获得该圣物时立即升级所有X星特性卡 2012 + private async getPassiveLv() { + if (this.newEffect.length == 0) return; + for (const { effectParam, effectType } of this.newEffect) { + if (effectType != ROUGE_EFFECT_TYPE.HOLY_UPDATE_PASSIVE_BY_LV) continue; + if (effectParam.length == 0) continue; + const level = effectParam[0] || 0; + for (let val of this.dbCards) { + let { lv, cardId, cardCode } = val; + const passiveCardData = gameData.rougePassiveCard.get(cardId); + if (level != passiveCardData?.quality || 0 || lv >= passiveCardData?.lv || 0) continue; + lv += 1; + this.updateCardMap.set(cardCode, val); + } + } + } + + // 获得该圣物时,随机修复X个已损毁的圣物 2015 + private async getRecoveryHoly() { + if (this.newEffect.length == 0) return; + for (const { effectParam, effectType } of this.newEffect) { + if (effectType != ROUGE_EFFECT_TYPE.HOLY_REPAIRE_HOLY) continue; + if (effectParam.length == 0) continue; + const num = effectParam[0] || 0; + let canRandomCards: RougelikeCardType[] = [] + this.dbCards.forEach(cur => { + const { cardCode, cardId, useCount = 0, type } = cur; + const holyCardData = gameData.rougeHolyCard.get(cardId); + let tempUseCount = holyCardData?.useCount || 0; + if (tempUseCount > 0 && useCount < tempUseCount && type == ROUGE_LIKE_CARD_TYPE.HOLY) canRandomCards.push(cur); + }) + + let randomCards = getRandEelm(canRandomCards, num); + for (let val of randomCards) { + let { cardCode, cardId } = val; + val.useCount += 1; + // if (this.holyMap.has(cardCode)) this.holyMap.set(cardCode, { cardCode, cardId, useCount }); + this.updateCardMap.set(cardCode, val) + } + } + } + + + + // 和圣物相关maxhp + public async getEffectMaxHp() { + let addRatio = 0; + await this.getEffectData([ + ROUGE_EFFECT_TYPE.HOLY_CHARA_MAIN_ATTR_UP_BY_COIN, // 2005 + ROUGE_EFFECT_TYPE.HOLY_CHARA_MAIN_ATTR_UP, // 2020 + ROUGE_EFFECT_TYPE.TECH_CHARA_MAIN_ATTR_UP, // 3001 + ]) + + addRatio = await this.getMaxHpByCoin(); + + addRatio += await this.getMaxHpByBase(); + + return addRatio; + } + + // 每有X个试炼币,全员基础属性id提高Y 2005 + private async getMaxHpByCoin() { + let addRatio = 0; + const dbRecord = await RougelikeRecordModel.findByGameCode(this.gameCode); + let coinTotal = dbRecord?.coin || 0; + if (this.newEffect.length == 0) return addRatio; + for (const { effectParam, effectType } of this.newEffect) { + if (effectType != ROUGE_EFFECT_TYPE.HOLY_CHARA_MAIN_ATTR_UP_BY_COIN) continue; + if (effectParam.length == 0) continue; + const count = effectParam[0] || 0; + const id = effectParam[1] || 0; + const value = effectParam[2] || 0; + if (count == 0 || id != ABI_TYPE.ABI_HP || value == 0) continue; + addRatio += Math.floor(coinTotal / count * value) + } + + return addRatio; + } + + // 基础属性Id&num 2020 + private async getMaxHpByBase() { + let addRatio = 0; + if (this.newEffect.length == 0) return addRatio; + for (const { effectParam, effectType } of this.newEffect) { + if (effectType != ROUGE_EFFECT_TYPE.HOLY_CHARA_MAIN_ATTR_UP && effectType != ROUGE_EFFECT_TYPE.TECH_CHARA_MAIN_ATTR_UP) continue; + if (effectParam.length == 0) continue; + const id = effectParam[0] || 0; + const value = effectParam[1] || 0; + if (id != ABI_TYPE.ABI_HP || value == 0) continue; + addRatio += value; + } + return addRatio; + } +} + + +// 每场战斗结束后,学员恢复血量上限X%的生命 2001 +export async function getCharaHp(roleId: string, gameCode: string) { + let hpRatio = 0; + let rougeEffect = new RougeEffect(roleId, gameCode); + + let { newEffect, holyMap } = await rougeEffect.getEffectData([ + ROUGE_EFFECT_TYPE.HOLY_CHARA_HP_RECOVERY_UP,// 2001 + ]); + if (newEffect.length == 0) return hpRatio; + for (const { effectType, effectParam } of newEffect) { + if (effectParam.length == 0) continue; + hpRatio += (effectParam[0] || 0); + } + return hpRatio; +} + + +// 战斗胜利后,获得的试炼币增加X 2004 +export async function getAddCoin(roleId: string, gameCode: string, nodeType: number) { + let coinRatio = 0, coinAdd = 0; + let rougeEffect = new RougeEffect(roleId, gameCode); + let { newEffect, holyMap } = await rougeEffect.getEffectData([ + ROUGE_EFFECT_TYPE.HOLY_COIN_UP, //2004 + ROUGE_EFFECT_TYPE.TECH_COIN_UP_BY_NODE_TYPE, //3007 + ]); + if (newEffect.length == 0) return { coinRatio, coinAdd }; + for (const { effectType, effectParam } of newEffect) { + if (effectParam.length == 0) continue; + if (effectType == ROUGE_EFFECT_TYPE.HOLY_COIN_UP) { + const type = effectParam[0] || 0; + const value = effectParam[1] || 0; + if (type == 1) coinAdd += value; + else if (type == 2) coinRatio += value; + } + if (effectType == ROUGE_EFFECT_TYPE.TECH_COIN_UP_BY_NODE_TYPE) { + let [targetNodeType = 0, value = 0] = effectParam; + if (targetNodeType == nodeType) coinRatio += value; + } + + } + return { coinRatio, coinAdd }; +} + + + +// 获得圣物后,X流派特性卡的权重增加Y 2007 +export async function getAddPassiveWeight(roleId: string, gameCode: string, authorType: number) { + let addPassiveWeight = 0; + let rougeEffect = new RougeEffect(roleId, gameCode); + let { newEffect, holyMap } = await rougeEffect.getEffectData([ + ROUGE_EFFECT_TYPE.HOLY_PASSIVE_WEIGHT_UP_BY_AUTHOR,//2007 + ]); + if (newEffect.length == 0) return addPassiveWeight; + for (const { effectParam } of newEffect) { + if (effectParam.length == 0) continue; + const type = effectParam[0] || 0; + const value = effectParam[1] || 0; + if (type != authorType) continue; + addPassiveWeight += value; + } + return addPassiveWeight; +} + +// 非boss战斗失败视为胜利,并且满血复活 2009 +export async function getNoBossRecoveryHp(roleId: string, gameCode: string) { + let rougeEffect = new RougeEffect(roleId, gameCode); + let { newEffect, holyMap } = await rougeEffect.getEffectData([ + ROUGE_EFFECT_TYPE.HOLY_REVIVE_ALL,//2009 + ]); + if (newEffect.length == 0) return false; + return true; // 拿到true 将所有学员更新和hp=maxHp +} + +// 战斗胜利后若有学员死亡,则满血复活X名死亡学员 2010 +export async function getBattleRecoveryNum(roleId: string, gameCode: string) { + let recoveryNum = 0; + let rougeEffect = new RougeEffect(roleId, gameCode); + + let { newEffect, holyMap } = await rougeEffect.getEffectData([ + ROUGE_EFFECT_TYPE.HOLY_REVIVE_CHARA_RAND,//2010 + ]); + if (newEffect.length == 0) return recoveryNum; + + for (const { effectParam } of newEffect) { + if (effectParam.length == 0) continue; + recoveryNum += (effectParam[0] || 0) + } + return recoveryNum; +} + +// 试炼商店中所有商品X折出售 2011 +export async function getShopDiscount(roleId: string, gameCode: string) { + let discount = 100; + let rougeEffect = new RougeEffect(roleId, gameCode); + + let { newEffect, holyMap } = await rougeEffect.getEffectData([ + ROUGE_EFFECT_TYPE.HOLY_SHOP_DISCOUNT,//2011 + ]); + if (newEffect.length == 0) return discount; + for (const { effectParam } of newEffect) { + if (effectParam.length == 0) continue; + const tempDiscount = effectParam[0] || 0; + discount *= (tempDiscount / 100); + } + return Math.floor(discount); +} + + +// 下次选择特性卡时必定出现X星特性卡 2013 +export async function getChooseQualityPassives(roleId: string, gameCode: string, passiveCards: DicRougePassiveCardPlan[]) { + let targetPassives: DicRougePassiveCardPlan[] = []; + let rougeEffect = new RougeEffect(roleId, gameCode); + let { newEffect, holyMap } = await rougeEffect.getEffectData([ + ROUGE_EFFECT_TYPE.HOLY_PASSIVE_CHOOSE_FIX,//2013 + ]); + if (newEffect.length == 0) return targetPassives; + for (const { effectParam } of newEffect) { + if (effectParam.length == 0) continue; + const level = effectParam[0] || 0; + for (let val of passiveCards) { + const { cardId } = val; + const passiveCardData = gameData.rougePassiveCard.get(cardId); + if (level != passiveCardData?.lv || 0) continue; + targetPassives.push(val); + } + } + return targetPassives; +} + +// 下次选择特性卡时可多选X张特性卡 2014 +export async function getAddChoosePassive(roleId: string, gameCode: string) { + let addChooseNum = 0; + let rougeEffect = new RougeEffect(roleId, gameCode); + let { newEffect, holyMap } = await rougeEffect.getEffectData([ + ROUGE_EFFECT_TYPE.HOLY_PASSIVE_CHOOSE_NUM_UP,//2014 + ]); + for (const { effectParam } of newEffect) { + if (effectParam.length == 0) continue; + const num = effectParam[0] || 0; + addChooseNum += num; + } + return addChooseNum +} + +// 获得该圣物后,所有角色解锁X号位置的特性槽 2023 +export async function getSlotUnlockPoint(roleId: string, gameCode: string, dbCharas: RougelikeCharaPara[]) { + let isUpdate = false; + let rougeEffect = new RougeEffect(roleId, gameCode); + let { newEffect, holyMap } = await rougeEffect.getEffectData([ + ROUGE_EFFECT_TYPE.HOLY_CHARA_SLOT_UNLOCK_POINT,//2023 + ]); + for (const { effectParam } of newEffect) { + if (effectParam.length == 0) continue; + const index = effectParam[0] || 0; + for (let { cards = [] } of dbCharas) { + if (cards.length == 0) { + cards.push({ index, cardCode: '', cardId: 0 }); + isUpdate = true; + continue; + } + if (cards.find(cur => cur.index == index) == undefined) { + isUpdate = true + cards.push({ index, cardCode: '', cardId: 0 }); + } + } + } + + return { isUpdate, dbCharas }; +} + + +// 休整点额外恢复X%的生命 2017 3006 +export async function getRecoveryExtendHp(roleId: string, gameCode: string) { + let hpRatio = 0; + let rougeEffect = new RougeEffect(roleId, gameCode); + let { newEffect, holyMap } = await rougeEffect.getEffectData([ + ROUGE_EFFECT_TYPE.HOLY_RECOVERY_POINT_UP, // 2017 + ROUGE_EFFECT_TYPE.TECH_RECOVERY_POINT_UP, // 3006 + ]); + if (newEffect.length == 0) return hpRatio; + for (const { effectType, effectParam } of newEffect) { + if (effectParam.length == 0) continue; + hpRatio += (effectParam[0] || 0); + } + return hpRatio; +} + +// 休整点特训价格X折 2018 3009 +export async function getTrainCardDiscount(roleId: string, gameCode: string) { + let discount = 100; + let rougeEffect = new RougeEffect(roleId, gameCode); + + let { newEffect, holyMap } = await rougeEffect.getEffectData([ + ROUGE_EFFECT_TYPE.HOLY_TRAIN_POINT_DISCOUNT, // 2018 + ROUGE_EFFECT_TYPE.TECH_TRAIN_POINT_DISCOUNT, // 3009 + ]); + if (newEffect.length == 0) return discount; + for (const { effectParam } of newEffect) { + if (effectParam.length == 0) continue; + const tempDiscount = effectParam[0] || 0; + discount *= (tempDiscount / 100); + } + return Math.floor(discount); +} + +// 初始获得试炼币&圣物 3003 3005 +export async function getEffectWhenGameStart(roleId: string, gameCode: string, authorType: number) { + let rougeEffect = new RougeEffect(roleId, gameCode); + + let addCoin = 0, cardIds: number[] = []; + let { newEffect } = await rougeEffect.getEffectData([ + ROUGE_EFFECT_TYPE.TECH_INIT_HOLY_BY_AUTHOR, + ROUGE_EFFECT_TYPE.TECH_INIT_COIN, + ]); + if (newEffect.length == 0) return { addCoin, cardIds }; + for (const { effectType, effectParam } of newEffect) { + if (effectParam.length == 0) continue; + if (effectType == ROUGE_EFFECT_TYPE.TECH_INIT_HOLY_BY_AUTHOR) { + for (let cardId of effectParam) { + let dicCard = gameData.rougeHolyCard.get(cardId); + if (!dicCard || dicCard.authorType != authorType) continue; + cardIds.push(cardId); + } + } + if (effectType == ROUGE_EFFECT_TYPE.TECH_INIT_COIN) addCoin += effectParam[0]; + } + return { addCoin, cardIds }; +} + +// 是否可以选择技能卡 3004 +export async function checkCanChooseSkillCard(roleId: string, gameCode: string, skillId: number, cards: Card[]) { + let rougeEffect = new RougeEffect(roleId, gameCode); + let { newEffect } = await rougeEffect.getEffectData([ + ROUGE_EFFECT_TYPE.TECH_CAN_CHOOSE_SKILL_CARD, // 3004 + ]); + let dicSkillCard = gameData.rougeSkillCard.get(skillId); + if (!dicSkillCard) return false; + let { authorType, skillType } = dicSkillCard; + let num = getAuthorTypeCardNum(authorType, cards); + + let curParam = newEffect.find(({ effectParam }) => { + return effectParam[1] == skillType; + }); + if (!curParam || num < curParam.effectParam[0]) return false; + return true; +} + +// 是否可以重置 +export async function checkCanReRandomReward(roleId: string, gameCode: string, rewardType: number) { + let rougeEffect = new RougeEffect(roleId, gameCode); + let { newEffect } = await rougeEffect.getEffectData([ + ROUGE_EFFECT_TYPE.TECH_PASSIVE_RANDOM_AGAIN, // 3008 + ]); + + let curParam = newEffect.find(({ effectParam }) => { + return effectParam[0] == rewardType; + }); + if (!curParam) return { canReRandom: false, costCoin: 0 } + return { canReRandom: true, costCoin: curParam.effectParam[1] || 0 }; +} \ No newline at end of file diff --git a/game-server/app/services/battle/rougeService.ts b/game-server/app/services/battle/rougeService.ts new file mode 100644 index 000000000..30a7b4c29 --- /dev/null +++ b/game-server/app/services/battle/rougeService.ts @@ -0,0 +1,958 @@ +import { clone, result } from "underscore"; +import { ROUGE_CHARA_INITIAL, ROUGE_CHARA_TYPE, ROUGE_EFFECT_TYPE, ROUGE_LIKE_CARD_TYPE, ROUGE_LIKE_CHOOSE_REWARD, ROUGE_LIKE_NODE_TYPE, ROUGE_LIKE_STATUS, SHOP_REFRESH_TYPE } from "../../consts"; +import { Card, RougelikeCharaModel, RougelikeCharaType } from "../../db/RougelikeChara"; +import { RougelikeLayerModel, RougelikeLayerType } from "../../db/RougelikeLayer"; +import { RougelikeRecordModel, RougelikeRecordType } from "../../db/RougelikeRecord"; +import { gameData } from "../../pubUtils/data"; +import { ROUGELIKE } from "../../pubUtils/dicParam"; +import { genCode, getRandEelm, getRandEelmWithWeight, getRandEelmWithWeightAndNum, getRandValueByMinMax } from "../../pubUtils/util"; +import { RougelikeCardModel, RougelikeCardType } from "../../db/RougelikeCard"; +import RougelikeRecordDetail, { RougelikeRecordDetailModel, RougelikeRecordDetailPara, RougelikeRecordDetailType } from "../../db/RougelikeRecordDetail"; +import { CollectionReturnParam, CommonCard, CommonChara, CommonNode, CommonReward, RewardInter, layerNode } from "../../pubUtils/interface"; +import { DicRougeQuestionMarkPlan } from "../../pubUtils/dictionary/DicRougeQuestionMarkPlan"; +import { DicRougeRandomEventPlan } from "../../pubUtils/dictionary/DicRougeRandomEventPlan"; +import * as util from 'util'; +import { RougelikeCollectionModel, } from "../../db/RougelikeCollection"; +import { RougelikeScoreModel } from "../../db/RougelikeScore"; +import { getTechData } from "./rougeTechService"; +import { getZeroPointOfTimeD } from "../../pubUtils/timeUtil"; +import { sendMailByContent } from "../mailService"; +import { DicRougeCharaCardPlan } from "../../pubUtils/DicRougeCharaCardPlan"; +import { MAIL_TYPE, PUSH_ROUTE } from "../../consts"; +import { sendMessageToUserWithSuc } from "../pushService"; +import { RougeEffect, getAddChoosePassive, getAddPassiveWeight, getChooseQualityPassives, getShopDiscount } from "./rougeEffectService"; +import { formateCharasOrCards } from "./rougeCollectService"; +import { errlogger } from "../../util/logger"; +import { RougelikeExtendModel } from "../../db/RougelikeExtend"; + +export async function getRougeData(roleId: string) { + + let isPlaying = true, gameCode = ''; + const dbRecord = await RougelikeRecordModel.findByRoleIdAndStatus(roleId, ROUGE_LIKE_STATUS.SUCCESS); + if (!dbRecord) isPlaying = false; + else gameCode = dbRecord.gameCode; + + let dbScore = await RougelikeScoreModel.findByRoleId(roleId); + let techData = await getTechData(roleId); + + let dbCollections = await RougelikeCollectionModel.findByRoleId(roleId); + let collections = dbCollections.map((obj) => new CollectionReturnParam(obj)); + + const dbExtends = await RougelikeExtendModel.findByRoleId(roleId); + const limitIds = dbExtends.map(cur => cur.limitId); + + return { isPlaying, gameCode, weeklyScore: dbScore?.score || 0, receivedScore: dbScore?.received || [], ...techData, collections, limitIds } +} + +/* +/** + * 获取初始三名角色卡 + * @param + * @returns + */ +export function getInitCharaCard() { + let canRandomCharas = gameData.rougeCharaByInitial.get(ROUGE_CHARA_INITIAL.CAN); + if (!canRandomCharas || canRandomCharas.length < ROUGELIKE.INIT_RANDOM_CHARA_COUNT) { + console.error("getInitChara--配置表中能初始随机的角色卡不足, canRandomCharas=%s", canRandomCharas); + return; + } + + let randomData = getRandEelm(canRandomCharas, ROUGELIKE.INIT_RANDOM_CHARA_COUNT) + + return randomData; +} + +/** + * 获取大地图生成数据 + * @param layerPlan + * @param layerCount + */ +export function getMap(layerPlan: number, layerCount: number) { + let retLayer = getLayerNodeRandom(layerPlan, layerCount); + if (!retLayer) return []; + return getLayerNodeLineRandom(retLayer) || []; + +} +export function getLayerNodeRandom(layerPlan: number, layerCount: number) { + if (!layerPlan || !layerCount) return; + + const layerPlanDatas = gameData.rougeLayerPlanByPlanId.get(layerPlan); + if (!layerPlanDatas || layerPlanDatas.length != layerCount) return console.error("getMap--获取配置层数不一致, layerPlan=%s, layerCount=%s", layerPlan, layerCount); + + let retLayer = new Map(); + + //获取可随机到的节点 + for (let data of layerPlanDatas) { + let layerNodeNumPlanDatas = gameData.rougeLayerNodeNumPlan.get(data.nodeNumPlan); + if (!layerNodeNumPlanDatas) return console.error("getMap--rougeLayerNodeNumPlan配置错误, planId=%s", data.nodeNumPlan); + let nodeNum = 0; + if (layerNodeNumPlanDatas.length == 1) nodeNum = 1; + else nodeNum = getRandEelmWithWeight(layerNodeNumPlanDatas).dic.nodeNum; + + let layerNodePlans = gameData.rougeLayerNodePlan.get(data.nodePlan); + if (!layerNodePlans || layerNodePlans.length == 0) return console.error("getMap--rougeLayerNodePlan配置错误, planId=%s", data.nodePlan); + + let randomNodes: CommonNode['layerNodes'] = [], tempIndex = 0; + if (layerNodePlans.length > nodeNum) { + randomNodes = getRandEelmWithWeightAndNum(layerNodePlans, nodeNum).map((cur) => { + let nodeId = cur.dic.nodeId; + let nodeData = gameData.rougeNode.get(nodeId); + if (!nodeData) errlogger.error(`nodePlane ${data.nodePlan} 's nodeId ${nodeId} not found`); + return { detailCode: genCode(8), index: tempIndex++, nodeId, preNodeIndexs: [], type: nodeData.nodeType, isChoose: 0 }; + }); + } else { + randomNodes = layerNodePlans.map((cur) => { + let nodeId = cur.nodeId; + let nodeData = gameData.rougeNode.get(nodeId); + return { detailCode: genCode(8), index: tempIndex++, nodeId: cur.nodeId, preNodeIndexs: [] as number[], type: nodeData.nodeType, isChoose: 0 }; + }); + } + + retLayer.set(data.layerIndex, { layer: data.layerIndex, layerNodes: randomNodes }); + } + // console.log('-x-x--x-x-x-x-x-x-x-x-x- retLayer', util.inspect(retLayer, { depth: null })); + return retLayer; +} + +/** + * 随机节点连线 + * @param retLayer + * @returns + */ +export function getLayerNodeLineRandom(retLayer: Map) { + for (let [key, value] of retLayer) { + let preLayer = retLayer.get(key - 1); + let curLayer = retLayer.get(key); + if (!preLayer || !curLayer) continue; + let tempPreNodes = preLayer.layerNodes; // 前一层节点数据 + let tempCurNodes = curLayer.layerNodes; // 当前层节点数据 + let indexMap = new Map(); //记录下前一层有那些节点与当前层是否连线 + + //当前层首节点 + tempCurNodes[0].preNodeIndexs.push(tempPreNodes[0].index); + indexMap.set(tempPreNodes[0].index, { dx: 0, index: tempCurNodes[0].index }); + + //当前层尾节点 + if (!(tempCurNodes.length == 1 && tempPreNodes.length == 1)) { + tempCurNodes[tempCurNodes.length - 1].preNodeIndexs.push(tempPreNodes[tempPreNodes.length - 1].index); + indexMap.set(tempPreNodes[tempPreNodes.length - 1].index, { dx: tempCurNodes.length - 1, index: tempCurNodes[tempCurNodes.length - 1].index }); + } + + for (let i = 0; i < tempCurNodes.length - 1; i++) { + let minIndex = 0, maxIndex = 0, start = 0; + if (i != 0) start = minIndex = maxIndex = Math.max(...tempCurNodes[i - 1].preNodeIndexs); + if (tempPreNodes[start + 1]) maxIndex = tempPreNodes[start + 1].index; + if (tempPreNodes[start + 2]) maxIndex = tempPreNodes[start + 2].index; + + let randomIndex = minIndex; + if (minIndex < maxIndex) randomIndex = getRandValueByMinMax(minIndex, maxIndex + 1, 0); + + if (tempCurNodes[i].preNodeIndexs.indexOf(randomIndex) != -1) continue; + tempCurNodes[i].preNodeIndexs.push(randomIndex); + if (indexMap.get(randomIndex) && indexMap.get(randomIndex).dx < i) continue; + indexMap.set(randomIndex, { dx: i, index: tempCurNodes[i].index }); + } + + //处理前一层有节点未连接情况 + for (let i = 1; i < tempPreNodes.length - 1; i++) { + if (indexMap.get(tempPreNodes[i].index)) continue; + + let minDx = 0, maxDx = 0; + let tempMap = new Map(); + + if (tempPreNodes[i - 1] && indexMap.get(tempPreNodes[i - 1].index)) { + minDx = maxDx = indexMap.get(tempPreNodes[i - 1].index).dx + tempMap.set(minDx, indexMap.get(tempPreNodes[i - 1].index).index); + } + if (tempPreNodes[i + 1] && indexMap.get(tempPreNodes[i + 1].index)) { + maxDx = indexMap.get(tempPreNodes[i + 1].index).dx + tempMap.set(maxDx, indexMap.get(tempPreNodes[i + 1].index).index); + } + + let randomDx = minDx; + if (minDx < maxDx) randomDx = getRandValueByMinMax(minDx, maxDx + 1, 0); + + tempCurNodes[randomDx].preNodeIndexs.push(tempPreNodes[i].index); + if (indexMap.get(tempPreNodes[i].index) && indexMap.get(tempPreNodes[i].index).dx < randomDx) continue; + indexMap.set(tempPreNodes[i].index, { dx: randomDx, index: tempMap.get(randomDx) }); + } + } + + // console.log('-x-x--x-x-x-x-x-x-x-x-x- [...retLayer.values()]', util.inspect([...retLayer.values()], { depth: null })); + + return [...retLayer.values()]; +} + +/** + * 选择节点 + * @param dbRecord + * @param layerChooseNode + * @returns + */ +export async function chooseNode(dbRecord: RougelikeRecordType, layerChooseNode: layerNode, layer: number) { + + const { roleId, gameCode, type, grade, curLayer, authorType } = dbRecord; + + const { detailCode, nodeId, } = layerChooseNode + let nodeType = layerChooseNode.type; + + const typeGradeData = gameData.rougeTypeGrade.get(type + '_' + grade); + const nodeData = gameData.rougeNode.get(nodeId); + if (!typeGradeData || !nodeData) return; + + const layerPlanData = gameData.rougeLayerPlan.get(typeGradeData.layerPlan + '_' + layer); + // console.log("-x--x-x-x-x- nodeData", nodeData) + // console.log("-x--x-x-x-x- typeGradeData", typeGradeData) + // console.log("-x--x-x-x-x- layerPlanData", layerPlanData) + + + if (!layerPlanData) return; + + + let isReward = false, isShop = false; + let warId, reward = {} as CommonReward, shops: RougelikeRecordDetailType['shops'] = [], + challenge = {} as RougelikeRecordDetailType['challenge'], question = {} as RougelikeRecordDetail['question'], restPoints: RougelikeRecordDetail['restPoints'] = []; + + + const dbDetail = await RougelikeRecordDetailModel.findByCode(gameCode, detailCode); + let status = 0; + if (dbDetail) status = dbDetail.status || 0; + + let dbPara = { roleId, layer, nodeId, nodeType, status } as RougelikeRecordDetailPara; + + //普通关、精英关、boss关 + if (nodeType == ROUGE_LIKE_NODE_TYPE.ORDINARY || nodeType == ROUGE_LIKE_NODE_TYPE.ELITE || nodeType == ROUGE_LIKE_NODE_TYPE.BOSS) { + isReward = true; + warId = dbPara.warId = nodeData.param; + } + + //挑战关 + else if (nodeType == ROUGE_LIKE_NODE_TYPE.CHALLENGE) { + let getChallengeData = getChallenge(typeGradeData.challengePlan); + if (getChallengeData) { + challenge = { challengeId: getChallengeData.challengeId, status: 1, progress: 0 } as RougelikeRecordDetailType['challenge']; + dbPara.challenge = challenge; + } + // isReward = true; + } + + //商店 + else if (nodeType == ROUGE_LIKE_NODE_TYPE.SHOP) { + isShop = true; + } + + //休整点 + else if (nodeType == ROUGE_LIKE_NODE_TYPE.REST_POINT) { + isReward = true; + if (dbDetail && dbDetail.restPoints) restPoints = dbDetail.restPoints || restPoints; + else dbPara.restPoints = restPoints; + } + + //问号点 + else if (nodeType == ROUGE_LIKE_NODE_TYPE.QUEST_POINT) { + if (dbDetail) { + question = dbDetail.question || {} as RougelikeRecordDetail['question']; + warId = dbDetail.warId; + } + else { + const questionMarkPLanData = gameData.rougeQuestionMarkPlan.get(nodeData.param); + if (!questionMarkPLanData) return; + + let randomData = {} as DicRougeQuestionMarkPlan; + if (questionMarkPLanData.length == 1) randomData = questionMarkPLanData[0]; + else randomData = getRandEelmWithWeight(questionMarkPLanData).dic; + + dbPara.questType = randomData.nodeType; + if (randomData.nodeType == ROUGE_LIKE_NODE_TYPE.ORDINARY || randomData.nodeType == ROUGE_LIKE_NODE_TYPE.ELITE) { + isReward = true; + warId = dbPara.warId = 101110101//randomData.param; + } + else if (randomData.nodeType == ROUGE_LIKE_NODE_TYPE.SHOP) { + isShop = true + } + else if (randomData.nodeType == ROUGE_LIKE_NODE_TYPE.EVENT) { + let random = {} as DicRougeRandomEventPlan; + const randomEventPlanData = gameData.rougeRandomEventPlan.get(typeGradeData.randomEventPlan); + if (!randomEventPlanData) return; + if (randomEventPlanData.length == 1) random = randomEventPlanData[0]; + else random = getRandEelmWithWeight(randomEventPlanData).dic; + question.randomEventId = random.randomEventId; + question.EventOptions = []; + dbPara.question = question; + } + } + } + + if ((!dbDetail || !dbDetail.shops || dbDetail.shops.length == 0) && isShop) { + shops = await getLayerShopReward(roleId, gameCode, authorType, nodeId, layerPlanData.shopPlan); + dbPara.shops = shops; + } + if (dbDetail && dbDetail.shops) shops = dbDetail.shops || shops; + + if ((!dbDetail || !dbDetail.rewards || dbDetail.rewards.length == 0) && isReward) { + let result = await getLayerNodeReward(roleId, gameCode, authorType, nodeId, layerPlanData.rewardPlan, layer, dbPara.questType); + if (result) { + reward = result; + dbPara.rewards = result.rewards; + } + } + if (dbDetail && dbDetail.rewards) { + let tempType = (dbDetail?.questType || 0) > 0 ? dbDetail?.questType : nodeType + const layerRewardData = gameData.rougeLayerRewardPlan.get(layerPlanData.rewardPlan + '_' + tempType); + if (!layerRewardData) return; + let { coin, score, tech } = layerRewardData; + reward = { rewards: dbDetail.rewards || [], score: score || 0, techScore: tech || 0, takeoutReward: layerPlanData.takeoutReward || [] }; + } + + if (!dbDetail) { + // console.log('-x-x--x-x-x-x-x-x-x-x-x- dbPara', util.inspect(dbPara, { depth: null })); + await RougelikeRecordDetailModel.updateByCode(gameCode, detailCode, { $set: dbPara }); + await RougelikeRecordModel.updateByGameCode(gameCode, { $set: { curLayer: layer } }) + await RougelikeLayerModel.updateByGameCodeAndLayer(gameCode, layer, detailCode, ROUGE_LIKE_CHOOSE_REWARD.CHOOSE) + } + + let curNode = { detailCode, nodeId, nodeType, status, warId, reward, shops, challenge, question, restPoints, } + // console.log('-x-x--x-x-x-x-x-x-x-x-x- curNode', util.inspect(curNode, { depth: null })); + return curNode; +} + + +/** + * 获取当前层当前节点奖励 + * @param gameCode + * @param detailCode + * @param nodeId 关卡id + * @param rewardPlan 赠送奖励id + * @returns + */ +export async function getLayerNodeReward(roleId: string, gameCode: string, type: number, nodeId: number, rewardPlan: number, layer: number, nodeType?: number) { + const nodeData = gameData.rougeNode.get(nodeId); + if (!nodeData) return; + if (!nodeType) nodeType = nodeData?.nodeType || 0; + + const layerRewardData = gameData.rougeLayerRewardPlan.get(rewardPlan + '_' + nodeType); + if (!layerRewardData) return; + let { charaPlan, charaRandomNum, charaChooseNum, + passiveCardPlan, charaPassivePlan, passiveCardRandomNum, passiveCardChooseNum, + holyCardPlan, holyCardRandomNum, holyCardChooseNum, + coin, score, tech } = layerRewardData; + + let dbRougelikeCards = await RougelikeCardModel.findByGameCodeAndType(gameCode, ROUGE_LIKE_CARD_TYPE.PASSIVE); + + let rewards: RougelikeRecordDetailType['rewards'] = []; + + let charaCards = getCharaCardPlan(charaPlan, charaRandomNum); + if (charaCards && charaCards.length > 0) { + let tempOptions = [], index = 0; + for (let ele of charaCards) { + tempOptions.push({ + optionIndex: index++, rewardId: ele.cardId, optionStatus: ROUGE_LIKE_CHOOSE_REWARD.NOCHOOSE, + passiveCardIds: await getSelfPassiveCards(ele.cardId, charaPassivePlan, type, dbRougelikeCards, gameCode, roleId) + }) + } + rewards.push({ + groupIndex: rewards.length + 1, + rewardType: ROUGE_LIKE_CARD_TYPE.CHARA, + options: tempOptions, + groupStatus: charaChooseNum > 0 ? ROUGE_LIKE_CHOOSE_REWARD.NOCHOOSE : ROUGE_LIKE_CHOOSE_REWARD.CHOOSE, + chooseNum: charaChooseNum, + }); + } + + let passiveCards = await getPassiveCardPlan(passiveCardPlan, passiveCardRandomNum, type, dbRougelikeCards, gameCode, roleId); + if (passiveCards && passiveCards.length > 0) { + let chooseNum = await getPassiveCardChooseNum(passiveCardChooseNum, passiveCardRandomNum, gameCode, layer, roleId); + rewards.push({ + groupIndex: rewards.length + 1, + rewardType: ROUGE_LIKE_CARD_TYPE.PASSIVE, + options: passiveCards.map((ele, index) => { return { optionIndex: index++, rewardId: ele.cardId, optionStatus: ROUGE_LIKE_CHOOSE_REWARD.NOCHOOSE, weightRecord: ele.weightRecord } }), + groupStatus: chooseNum > 0 ? ROUGE_LIKE_CHOOSE_REWARD.NOCHOOSE : ROUGE_LIKE_CHOOSE_REWARD.CHOOSE, + chooseNum + }); + } + + let holyCards = await getHolyCardPlan(holyCardPlan, holyCardRandomNum, dbRougelikeCards, gameCode, roleId); + if (holyCards && holyCards.length > 0) { + rewards.push({ + groupIndex: rewards.length + 1, + rewardType: ROUGE_LIKE_CARD_TYPE.HOLY, + options: holyCards.map((ele, index) => { return { optionIndex: index++, rewardId: ele.cardId, optionStatus: ROUGE_LIKE_CHOOSE_REWARD.NOCHOOSE, weightRecord: ele.weightRecord } }), + groupStatus: holyCardChooseNum > 0 ? ROUGE_LIKE_CHOOSE_REWARD.NOCHOOSE : ROUGE_LIKE_CHOOSE_REWARD.CHOOSE, + chooseNum: holyCardChooseNum, + }); + } + + // rewards.push({ groupIndex: rewards.length + 1, rewardType: 0, groupStatus: (coin || 0) > 0 ? ROUGE_LIKE_CHOOSE_REWARD.NOCHOOSE : ROUGE_LIKE_CHOOSE_REWARD.CHOOSE, chooseNum: coin || 0 }) + + return { rewards, score, techScore: tech }; +} + +// 处理挑战类型中 接下来X次选择特性卡时,可选择的卡片数量少1 +export async function getPassiveCardChooseNum(passiveCardChooseNum: number, passiveCardRandomNum: number, gameCode: string, layer: number, roleId: string) { + let chooseNum = passiveCardChooseNum; + let dbDetails = await RougelikeRecordDetailModel.findByGameCodeAndLtLayer(gameCode, layer); + if (dbDetails.length == 0) return chooseNum; + + for (let { challenge } of dbDetails) { + if (challenge && Object.entries(challenge).length != 0 && challenge.status == 1) { + let { challengeId } = challenge; + const rougeChallengeData = gameData.rougeChallenge.get(challengeId); + if (!rougeChallengeData) return chooseNum; + for (let effectId of (rougeChallengeData.effectId || [])) { + const rougeEffectTypeData = gameData.rougeEffect.get(effectId); + if (rougeEffectTypeData.effectType != ROUGE_EFFECT_TYPE.CHALLENGE_PASSIVE_CARD_REDUCE) continue; + chooseNum -= (rougeEffectTypeData.effectParam[1] || 0); + } + } + } + chooseNum += await getAddChoosePassive(roleId, gameCode); + + if (chooseNum < 0) chooseNum = 0; + if (chooseNum > passiveCardRandomNum) chooseNum = passiveCardRandomNum; + + return chooseNum; +} + +/** + * 获取高级角色卡自带特性 + * @param charaId + * @param passiveCardPlan + * @param passiveCardRandomNum + * @param type + * @param dbRougelikeCards + * @returns + */ +export async function getSelfPassiveCards(charaId: number, passiveCardPlan: number, type: number, dbRougelikeCards: RougelikeCardType[], gameCode: string, roleId: string) { + let result: number[] = []; + let charaData = gameData.rougeChara.get(charaId); + if (!charaData) return result; + if (charaData.charaType != ROUGE_CHARA_TYPE.HIGH) return result; + let passiveCards = await getPassiveCardPlan(passiveCardPlan, charaData.initCardCnt, type, dbRougelikeCards, gameCode, roleId); + if (passiveCards && passiveCards.length > 0) result.push(...passiveCards.map((ele) => { return ele.cardId }),); + + return result; +} + +/** + * 获取当前层当前节点商店数据 + * @param gameCode + * @param detailCode + * @param nodeId + * @param shopPlan + * @returns + */ +export async function getLayerShopReward(roleId: string, gameCode: string, type: number, nodeId: number, shopPlan: number) { + let shops: RougelikeRecordDetailType['shops'] = []; + let shopPlanData = gameData.rougeShopPlan.get(shopPlan); + // let nodeData = gameData.rougeNode.get(nodeId); + + if (!shopPlanData) return shops; + + + let dbRougelikeCards = await RougelikeCardModel.findByGameCodeAndType(gameCode, ROUGE_LIKE_CARD_TYPE.PASSIVE); + + let passiveCards = await getPassiveCardPlan(shopPlanData.passivecardPlanId, shopPlanData.passiveCardRandomNum, type || 0, dbRougelikeCards, gameCode, roleId); + let index = 0, discount = await getShopDiscount(roleId, gameCode); + if (passiveCards && passiveCards.length > 0) { + for (let ele of passiveCards) { + let price = gameData.rougePassiveCard.get(ele.cardId)?.price || 0 + shops.push({ + optionIndex: shops.length + index, + rewardType: ROUGE_LIKE_CARD_TYPE.PASSIVE, + rewardId: ele.cardId, + optionStatus: ROUGE_LIKE_CHOOSE_REWARD.NOCHOOSE, + price, + discountPrice: Math.floor(price * discount / 100), + }) + index++; + } + } + + let holyCards = await getHolyCardPlan(shopPlanData?.holyCardPlanId, shopPlanData?.holyCardRandomNum, dbRougelikeCards, gameCode, roleId); + if (holyCards && holyCards.length > 0) { + for (let ele of holyCards) { + let price = gameData.rougeHolyCard.get(ele.cardId)?.purchasePrice || 0; + shops.push({ + optionIndex: shops.length + index, + rewardType: ROUGE_LIKE_CARD_TYPE.HOLY, + rewardId: ele.cardId, optionStatus: ROUGE_LIKE_CHOOSE_REWARD.NOCHOOSE, + price, + discountPrice: Math.floor(price * discount / 100), + }) + index++; + } + } + + return shops; +} + + + +/** + * 检测配置数据是否满足随机数量 + * @param planId + * @param randomNum + * @returns + */ +export function checkRandomLimit(planId: number, randomNum: number, rewardType: number) { + let cards: DicRougeCharaCardPlan[] = []; + if (!planId || planId == 0 || !randomNum || randomNum == 0) return cards; + + let cardPlanDatas = gameData.rougeCharaCardPlan.get(planId); + if (rewardType == ROUGE_LIKE_CARD_TYPE.PASSIVE) cardPlanDatas = gameData.rougePassiveCardPlan.get(planId); + else if (rewardType == ROUGE_LIKE_CARD_TYPE.HOLY) cardPlanDatas = gameData.rougeHolyCardPlan.get(planId); + + if (!cardPlanDatas) return cards; + else if (cardPlanDatas.length < randomNum) { + console.error("checkRandomLimit可随机的角色卡数量少于需要数量, planId=%s, randomNum=%s", planId, randomNum); + return cardPlanDatas; + } + else if (cardPlanDatas.length >= randomNum) return cardPlanDatas; + + return cards; +} + +/** + * 获取角色卡随机 + * @param planId + * @param charaRandomNum + * @returns + */ +export function getCharaCardPlan(planId: number, charaRandomNum: number) { + let cards = checkRandomLimit(planId, charaRandomNum, ROUGE_LIKE_CARD_TYPE.CHARA); + if (cards.length <= charaRandomNum) return cards; + let randResult = getRandEelmWithWeightAndNum(cards, charaRandomNum); + return randResult.map(cur => cur.dic); +} + + +/** + * 获取特性卡随机 + * @param passiveCardPlan + * @param passiveCardRandomNum + */ +export async function getPassiveCardPlan(passiveCardPlan: number, passiveCardRandomNum: number, type: number, dbRougelikeCards: RougelikeCardType[], gameCode: string, roleId: string) { + let cards = checkRandomLimit(passiveCardPlan, passiveCardRandomNum, ROUGE_LIKE_CARD_TYPE.PASSIVE); + if (cards.length <= passiveCardRandomNum) return cards; + + // 计算变化权重 + let lableMap = new Map(); //统计lable数量 + if (dbRougelikeCards && dbRougelikeCards.length > ROUGELIKE.PASSIVE_LABLE_NUM) { + for (let { cardId } of dbRougelikeCards) { + if (!cardId) continue; + + let passiveCardData = gameData.rougePassiveCard.get(cardId); + if (!passiveCardData || !passiveCardData.passiveLabel || passiveCardData.passiveLabel.length == 0) continue; + + for (let val of passiveCardData.passiveLabel) { + if (!lableMap.get(val)) { + lableMap.set(val, 1); + continue; + } + lableMap.set(val, lableMap.get(val) + 1); + } + } + } + + let newCards = []; + let cardsMap = await getCardCount(gameCode, ROUGE_LIKE_CARD_TYPE.PASSIVE); + const { chooseCardsMap, noChooseCardsMap } = await getIsChooseCard(gameCode); + for (let obj of cards) { + let weightRecord: { originalWight?: number, passiveRedWight?: number, passiveLableNum?: number, authorAddWeight?: number, passiveLableNumAddWeight?: number, finalWeight?: number } = {}; + if (!obj) continue; + let { cardId, weight } = obj; + if (!cardId || !weight) continue; + + let passiveCardData = gameData.rougePassiveCard.get(cardId); + if (!passiveCardData) continue; + const getLimit = cardsMap.get(cardId) || 0; + if (getLimit >= (passiveCardData?.getLimit || 0)) continue; //处理限制获取数量 + + weightRecord.originalWight = weight; + + if (chooseCardsMap.has(cardId)) { + weight = Math.floor(weight * (1 - ROUGELIKE.SELECT_PASSIVECARD_WEIGHT / 100)); + weightRecord.passiveRedWight = Math.floor(weight * ROUGELIKE.SELECT_PASSIVECARD_WEIGHT / 100); + } + else if (noChooseCardsMap.has(cardId)) { + weight = Math.floor(weight * (1 - ROUGELIKE.RANDOM_PASSIVECARD_WEIGHT / 100)); + weightRecord.passiveRedWight = Math.floor(weight * ROUGELIKE.RANDOM_PASSIVECARD_WEIGHT / 100); + } + + + + weight += await getAddPassiveWeight(roleId, gameCode, type); + if ((passiveCardData?.authorType || 0) == type) weight += ROUGELIKE.AUTHOR_ADD_RANDOM; + + weightRecord.authorAddWeight = ROUGELIKE.AUTHOR_ADD_RANDOM; + + let labelNum = lableMap.get(cardId) || 0; + if (labelNum >= ROUGELIKE.PASSIVE_LABLE_NUM) { + weight += ROUGELIKE.PASSIVE_LABLE_ADD_RANDOM * (Math.ceil(labelNum / ROUGELIKE.PASSIVE_LABLE_NUM)); + weightRecord.passiveLableNum = labelNum; + weightRecord.passiveLableNumAddWeight = ROUGELIKE.PASSIVE_LABLE_ADD_RANDOM * (Math.ceil(labelNum / ROUGELIKE.PASSIVE_LABLE_NUM)); + } + + // if (!passiveCardData.passiveLabel || passiveCardData.passiveLabel.length == 0) continue; + // for (let val of passiveCardData.passiveLabel) { + // let labelNum = lableMap.get(val) || 0; + // if (labelNum < ROUGELIKE.PASSIVE_LABLE_NUM || ROUGELIKE.PASSIVE_LABLE_NUM == 0) continue; + + // weight += ROUGELIKE.PASSIVE_LABLE_ADD_RANDOM * (Math.ceil(labelNum / ROUGELIKE.PASSIVE_LABLE_NUM)); + // } + weightRecord.finalWeight = weight; + + newCards.push({ ...obj, weight, weightRecord }); + } + + let targetPassives = await getChooseQualityPassives(roleId, gameCode, newCards); + let result = []; + if (passiveCardRandomNum >= 1 && targetPassives.length > 0) result.push(getRandEelmWithWeight(targetPassives).dic); + + let randResult = getRandEelmWithWeightAndNum(newCards, passiveCardRandomNum - result.length); + + return [...result, ...randResult.map(cur => cur.dic)] +} + +export async function getIsChooseCard(gameCode: string) { + const dbDetails = await RougelikeRecordDetailModel.findByGameCode(gameCode); + let chooseCardsMap = new Map(); + let noChooseCardsMap = new Map(); + for (const { rewards } of dbDetails) { + if (!rewards || rewards.length == 0) continue; + for (const { options } of rewards) { + if (!options || options.length == 0) continue; + for (const { rewardId, optionStatus } of options) { + if (optionStatus != 0) { + chooseCardsMap.set(rewardId, rewardId); + continue; + } + noChooseCardsMap.set(rewardId, rewardId); + } + } + } + return { chooseCardsMap, noChooseCardsMap }; +} + + +export async function getCardCount(gameCode: string, type: number) { + const dbCards: RougelikeCardType[] = await RougelikeCardModel.findByGameCodeAndType(gameCode, type); + let cardsMap = new Map(); + dbCards.forEach((cur) => { cardsMap.set(cur.cardId, (cardsMap.get(cur.cardId) || 0) + 1); }) + return cardsMap; +} + +/** + * 获取圣物随机 + * @param planId + * @param holyCardPlan + */ +export async function getHolyCardPlan(holyCardPlan: number, holyCardRandomNum: number, dbRougelikeCards: RougelikeCardType[], gameCode: string, roleId: string) { + + let cards = checkRandomLimit(holyCardPlan, holyCardRandomNum, ROUGE_LIKE_CARD_TYPE.HOLY); + if (cards.length <= holyCardRandomNum) return cards; + + let lableMap = new Map();//统计lable数量 + if (dbRougelikeCards && dbRougelikeCards.length > ROUGELIKE.HOLY_LABLE_NUM) { + for (let { cardId } of dbRougelikeCards) { + if (!cardId) continue; + + let passiveCardData = gameData.rougePassiveCard.get(cardId); + if (!passiveCardData || !passiveCardData.holyLabel || passiveCardData.holyLabel.length == 0) continue; + + for (let val of passiveCardData.holyLabel) { + if (!lableMap.get(val)) { + lableMap.set(val, 1); + continue; + } + lableMap.set(val, lableMap.get(val) + 1); + } + } + } + // 计算变化权重 + let newCards = []; + let cardsMap = await getCardCount(gameCode, ROUGE_LIKE_CARD_TYPE.HOLY); + const { chooseCardsMap, noChooseCardsMap } = await getIsChooseCard(gameCode); + for (let obj of cards) { + let weightRecord: { + originalWight?: number, passiveRedWight?: number, holyRedWight?: number, authorAddWeight?: number, + passiveLableNum?: number, passiveLableNumAddWeight?: number, holyLableNum?: number, holyLableNumAddWeight?: number, + finalWeight?: number + } = {}; + + if (!obj) continue; + let { cardId, weight } = obj; + if (!cardId || !weight) continue; + + let holyCardData = gameData.rougeHolyCard.get(cardId); + if (!holyCardData) continue; + const getLimit = cardsMap.get(cardId) || 0; + if (getLimit >= (holyCardData?.getLimit || 0)) continue; //处理限制获取数量 + + weightRecord.originalWight = weight; + + if (chooseCardsMap.has(cardId)) { + weight = Math.floor(weight * (1 - ROUGELIKE.SELECT_HOLLYCARD_WEIGHT / 100)); + weightRecord.holyRedWight = Math.floor(weight * ROUGELIKE.SELECT_HOLLYCARD_WEIGHT / 100); + } + else if (noChooseCardsMap.has(cardId)) { + weight = Math.floor(weight * (1 - ROUGELIKE.RANDOM_HOLLYCARD_WEIGHT / 100)); + weightRecord.holyRedWight = Math.floor(weight * ROUGELIKE.RANDOM_HOLLYCARD_WEIGHT / 100); + } + if (!holyCardData.label) { + newCards.push({ ...obj }); + continue; + }; + + let labelNum = lableMap.get(holyCardData.label) || 0; + if (labelNum < ROUGELIKE.HOLY_LABLE_NUM || ROUGELIKE.HOLY_LABLE_NUM == 0) { + newCards.push({ ...obj }); + continue; + }; + + weight += ROUGELIKE.HOLY_LABLE_ADD_RANDOM * (Math.ceil(labelNum / ROUGELIKE.HOLY_LABLE_NUM)); + + weightRecord.holyLableNum = labelNum; + weightRecord.holyLableNumAddWeight = ROUGELIKE.HOLY_LABLE_ADD_RANDOM * (Math.ceil(labelNum / ROUGELIKE.HOLY_LABLE_NUM)); + weightRecord.finalWeight = weight; + + newCards.push({ ...obj, weight, weightRecord }); + } + + let randResult = getRandEelmWithWeightAndNum(newCards, holyCardRandomNum); + return randResult.map(cur => cur.dic); +} + + +/** + * 获取挑战关卡数据 + * @param planId + * @returns + */ +export function getChallenge(planId: number) { + const randomChallenge = getChallengePlan(planId); + if (!randomChallenge) return; + + const rougeChallengeData = gameData.rougeChallenge.get(randomChallenge.challengeId); + if (!rougeChallengeData) return; + + return rougeChallengeData; +} + +/** + * 获取挑战关随机 + * @param planId + * @returns + */ +export function getChallengePlan(planId: number) { + const challengePlanData = gameData.rougeChallengePlan.get(planId); + if (!challengePlanData) return; + if (challengePlanData.length == 1) return challengePlanData[0]; + + return getRandEelmWithWeight(challengePlanData).dic; +} + + +export async function updateChalleng(dbRecord: RougelikeRecordType, roleId: string, sid: string, gameCode: string, curLayer: number, rougeDamage, isAp?: boolean, isRound?: boolean) { + let len = rougeDamage.length; + const minHp = rougeDamage.reduce((min, cur) => { return Math.min(min, cur.hp); }, Infinity); + + let challenges: { challengeId: number, status: number, progress: number, detailCode: string }[] = []; + const { authorType, type, grade } = dbRecord; + let dbDetails = await RougelikeRecordDetailModel.findByGameCodeAndLtLayer(gameCode, curLayer); + if (dbDetails.length == 0) return true; + + let updateChallengs: RougelikeRecordDetailPara[] = []; + for (let { detailCode, challenge, rewards = [], nodeId, layer } of dbDetails) { + if (challenge && Object.entries(challenge).length != 0 && challenge.status == 1) { + let { challengeId } = challenge; + + const rougeChallengeData = gameData.rougeChallenge.get(challengeId); + if (!rougeChallengeData) return true; + for (let effectId of (rougeChallengeData.effectId || [])) { + const rougeEffectTypeData = gameData.rougeEffect.get(effectId); + if (len == 0) { + //接下来X次选择特性卡时,可选择的卡片数量少1 + if (rougeEffectTypeData.effectType != ROUGE_EFFECT_TYPE.CHALLENGE_PASSIVE_CARD_REDUCE) continue; + } else { + if (rougeEffectTypeData.effectType == ROUGE_EFFECT_TYPE.CHALLENGE_PASSIVE_CARD_REDUCE) continue; + if (rougeEffectTypeData.effectType == ROUGE_EFFECT_TYPE.CHALLENGE_CHARA_NO_AP_SKILL && isAp) continue; + if (rougeEffectTypeData.effectType == ROUGE_EFFECT_TYPE.CHALLENGE_CHARA_NO_ROUND_SKILL && isRound) continue; + if (rougeEffectTypeData.effectType == ROUGE_EFFECT_TYPE.CHALLENGE_CHARA_HP_LIMIT && (rougeEffectTypeData.effectParam[1] || 0) > minHp) continue; + if (rougeEffectTypeData.effectType == ROUGE_EFFECT_TYPE.CHALLENGE_CHARA_NUM_LIMIT && (rougeEffectTypeData.effectParam[1] || 0) != len) continue;//接下来X场战斗,每场战斗只能上阵2名学员 + } + + challenge.progress += 1; + + + if (challenge.progress == rougeChallengeData.condition) { + challenge.status = 2; + + //处理在挑战进度完成时再随机奖励 + const typeGradeData = gameData.rougeTypeGrade.get(type + '_' + grade); + if (!typeGradeData) continue; + const layerPlanData = gameData.rougeLayerPlan.get(typeGradeData.layerPlan + '_' + layer); + if (!layerPlanData) continue; + let result = await getLayerNodeReward(roleId, gameCode, authorType, nodeId, layerPlanData.rewardPlan, layer); + rewards = result.rewards; + + }; + } + challenges.push({ challengeId, status: challenge.status, progress: challenge.progress, detailCode }); + updateChallengs.push({ gameCode, detailCode, challenge, status: 1, rewards }); + } + } + + await RougelikeRecordDetailModel.bulkWriteUpdate(updateChallengs); + + await sendMessageToUserWithSuc(roleId, PUSH_ROUTE.ROUGE_CHALLENGE_UPDATE, { challenges }, sid); + + return true; +} + +export function getLayerRewardOneData(type: number, grade: number, layer: number, nodeType: number) { + let result: { takeoutReward?: RewardInter[], coin?: number, score?: number, tech?: number, spiritPlan?: number } = {}; + const typeGradeData = gameData.rougeTypeGrade.get(type + '_' + grade); + if (!typeGradeData) return result; + const layerPlanData = gameData.rougeLayerPlan.get(typeGradeData.layerPlan + '_' + layer); + if (!layerPlanData) return result; + + const layerRewardData = gameData.rougeLayerRewardPlan.get(layerPlanData.rewardPlan + '_' + nodeType); + if (!layerRewardData) return result; + + return { ...layerRewardData, takeoutReward: layerPlanData.takeoutReward, spiritPlan: layerPlanData.spiritPlan }; +} + +export function getRandomSpirit(spiritPlan: number) { + let spiritId: number[] = []; + const spiritPlanData = gameData.spiritPlan.get(spiritPlan); + if (ROUGELIKE.SPIRIT_RANDOM_NUM == 0 || !spiritPlanData || spiritPlanData.length == 0) return spiritId; + let random = getRandEelmWithWeightAndNum(spiritPlanData, ROUGELIKE.SPIRIT_RANDOM_NUM); + spiritId = random.map(cur => { return cur.dic.spiritId }); + + return spiritId; +} + +/** + * 获取 + * @param authorType + * @param cards + * @returns + */ +export function getAuthorTypeCardNum(authorType: number, cards: Card[]) { + return cards.filter(card => { + let dicCard = card.cardId == 0 ? null : gameData.rougePassiveCard.get(card.cardId); + if (!dicCard) return false; + return dicCard.authorType == authorType; + }).length; +} + +export async function repaireSendScoreReward() { + let maxNum = gameData.rougeScoreNum.num || 0; + let refTime = getZeroPointOfTimeD(Date.now() - 86400000, SHOP_REFRESH_TYPE.WEEKLY); + let allRewards = await RougelikeScoreModel.findByReceiveNum(refTime, maxNum); + let _ids: string[] = []; + for (let { roleId, received, _id, score } of allRewards) { + let goods: RewardInter[] = []; + for (let [index, { reward, score: targetScore }] of gameData.rougeScoreReward) { + if (score >= targetScore && !received.includes(index)) goods.push(...reward); + } + await sendMailByContent(MAIL_TYPE.ROUGE_SCORE_REPAIRE, roleId, { goods }); + _ids.push(_id); + } + await RougelikeScoreModel.receiveAll(_ids, maxNum + 1); +} + +/** + * 获取最大血量 + * @param charaId + * @param type + * @param grade + * @returns + */ +export async function getMaxHp(roleId: string, gameCode: string, charaId: number, type: number, grade: number,) { + let maxHp = 0; + const charaData = gameData.rougeChara.get(charaId); + if (!charaData || !charaData.heroId) return maxHp; + const heroData = gameData.hero.get(charaData.heroId); + // console.log("x-x-x-x--x-xx- heroData", heroData); + if (!heroData || !heroData.hp) return maxHp; + + const typeGradeData = gameData.rougeTypeGrade.get(type + '_' + grade); + // console.log("x-x-x-x--x-xx- typeGradeData", typeGradeData); + + if (!typeGradeData || !typeGradeData.heroValue) return maxHp; + + let rougeEffect = new RougeEffect(roleId, gameCode); + const holyMaxHp = await rougeEffect.getEffectMaxHp(); + + + maxHp = heroData.hp * typeGradeData.heroValue / 10000 * (1 + holyMaxHp / 100); + + return Math.floor(maxHp); +} + +export async function updateMaxHp(roleId: string, gameCode: string, type: number, grade: number) { + let dbCharas = await RougelikeCharaModel.findByGameCode(gameCode); + if (dbCharas.length == 0) return []; + + let result: RougelikeCharaType[] = []; + for (let val of dbCharas) { + let tempMaxHp = await getMaxHp(roleId, gameCode, val.charaId, type, grade); + if (tempMaxHp == val.maxHp) continue; + val.maxHp = tempMaxHp; + result.push(val); + } + await RougelikeCharaModel.bulkWriteUpdate(result); + let { charas } = formateCharasOrCards(result, ROUGE_LIKE_CARD_TYPE.CHARA) + return charas || []; +} + + +// 获取当前层之前所有未完成挑战关 +export async function getPreCurLayerChallengs(gameCode: string, layer: number) { + let challenges: { challengeId: number, status: number, progress: number, detailCode: string, reward: CommonReward }[] = []; + let dbDetails = await RougelikeRecordDetailModel.findByGameCodeAndLtLayer(gameCode, layer); + if (dbDetails.length == 0) return challenges; + for (let { detailCode, challenge, rewards } of dbDetails) { + if (!challenge) continue; + const { challengeId, status, progress } = challenge; + if (status == 3) continue; + challenges.push({ challengeId, status, progress, detailCode, reward: { rewards } }); + } + + return challenges; +} + +export async function getGame(roleId: string) { + let isPlaying = true, nodes: RougelikeLayerType[] = [], hasPass = false, curNode = {}; + const dbRecord = await RougelikeRecordModel.findByRoleIdAndStatus(roleId, ROUGE_LIKE_STATUS.SUCCESS); + if (!dbRecord) { + isPlaying = false; + return { isPlaying }; + } + const { gameCode, grade, type, authorType = 0, curLayer = 0, maxLayer = 0, coin = 0, score = 0, techScore = 0, coinTotal = 0 } = dbRecord; + + const dbNodes = await RougelikeLayerModel.findByGameCode(gameCode); + let dbCurLayerChooseNode = {} as layerNode; + if (dbNodes) nodes = dbNodes.map((obj) => { + const { layer, layerNodes, hasPass: dbHasPass = false } = obj; + if (layer == curLayer) { + hasPass = dbHasPass; + dbCurLayerChooseNode = layerNodes.find(cur => cur.isChoose == ROUGE_LIKE_CHOOSE_REWARD.CHOOSE); + } + return { layer, layerNodes } as RougelikeLayerType + }) + + const charas: CommonChara[] = formateCharasOrCards(await RougelikeCharaModel.findByGameCode(gameCode), ROUGE_LIKE_CARD_TYPE.CHARA)?.charas || []; + const cards: CommonCard[] = formateCharasOrCards(await RougelikeCardModel.findByGameCode(gameCode), ROUGE_LIKE_CARD_TYPE.PASSIVE | ROUGE_LIKE_CARD_TYPE.HOLY)?.cards || []; + + console.log("x-x-x-x-x-x-x-x- dbCurLayerChooseNode", dbCurLayerChooseNode) + if (Object.entries(dbCurLayerChooseNode).length != 0) curNode = await chooseNode(dbRecord, dbCurLayerChooseNode, curLayer) + + return { + isPlaying, gameCode, grade, type, authorType, + curLayer, hasPass, maxLayer, coin, coinTotal, score, techScore, nodes: nodes || [], charas, cards, curNode, + preChallengs: await getPreCurLayerChallengs(gameCode, curLayer) + }; +} \ No newline at end of file diff --git a/game-server/app/services/battle/rougeTechService.ts b/game-server/app/services/battle/rougeTechService.ts new file mode 100644 index 000000000..be9bdaea5 --- /dev/null +++ b/game-server/app/services/battle/rougeTechService.ts @@ -0,0 +1,121 @@ +import { Circle, RougelikeTechModel, RougelikeTechType } from '../../db/RougelikeTech'; +import { gameData } from '../../pubUtils/data'; +import { HeroModel } from '../../db/Hero'; +import { compareNumberArray } from '../../pubUtils/util'; + +/** + * 首页获得的科技树数据 + * @param techData + * @returns + */ +export async function getTechData(roleId: string) { + let techData = await RougelikeTechModel.findByRoleId(roleId); + if(!techData) return { techTrees: [], sumTechScore: 0 }; + let { unlockedTech = [], circles = [] } = techData; + circles = await calCircleCe(roleId, unlockedTech, circles); + let techTrees = unlockedTech.map(techId => getSingleTechData(techId, circles)); + return { + techTrees + } +} + +/** + * 从首页重新进入,重新计算他的战力 + * @param roleId + * @param circles + * @returns + */ +async function calCircleCe(roleId: string, unlockedTech: number[], circles: Circle[]) { + let hids: number[] = circles.map(circle => circle.hid).filter(hid => hid > 0); + if(hids.length <= 0) return circles + let heroes = await HeroModel.findByHidRange(hids, roleId); + let newCircle = circles.map(circle => { + if(circle.hid == 0) return circle; + let hero = heroes.find(cur => cur.hid == circle.hid); + return { ...circle, ce: hero?.ce||0 } + }); + let effectIds = getTechEffectIds(unlockedTech, circles) + await RougelikeTechModel.updateCircle(roleId, newCircle, effectIds); + return newCircle; +} + +export async function updateEffectId(techData: RougelikeTechType) { + let effectIds = getTechEffectIdsByData(techData); + if(!compareNumberArray(effectIds, techData.effectIds||[])) { + await RougelikeTechModel.updateEffectId(techData.roleId, effectIds); + } +} + +/** + * 处理后单个科技点的数据 + * @param techData + * @param techId + * @returns + */ +export function getCurTechData(techData: RougelikeTechType, techId: number) { + if(!techData || !techId) return { curTechTree: { techId, circles: [] } } + let { circles = [] } = techData; + return { + curTechTree: getSingleTechData(techId, circles) + } +} + +/** + * 获取单片科技树数据 + * @param techId + * @param circles + * @returns + */ +function getSingleTechData(techId: number, circles: Circle[]) { + let result: { circleId: number, hid: number, ce: number }[] = []; + for(let { techId: curTechId, hid, circleId, ce } of circles) { + if(curTechId == techId) result.push({ hid, circleId, ce }); + } + return { techId, circles: result }; +} + +/** + * 检查前置科技点是否解锁 + * @param techId + * @param unlockedTech + * @returns + */ +export function checkPreRougeTech(techId: number, unlockedTech: number[]) { + let dicTech = gameData.rougeTech.get(techId); + let preTechId = dicTech?.preTechId||[]; + for(let techId of preTechId) { + if(!unlockedTech.includes(techId)) return false; + } + return true; +} + +/** + * 获取科技树带来的type加成 + * @param roleId + * @returns [{ type: number, param: number[] }] + */ +export function getTechEffectIdsByData(techData: RougelikeTechType) { + if(!techData) return []; + return getTechEffectIds(techData.unlockedTech, techData.circles); +} + +export function getTechEffectIds(unlockedTech: number[], circles: Circle[]) { + let result: number[] = []; + let techMap = new Map(); + for(let techId of unlockedTech) { + techMap.set(techId, 0); + } + for(let { techId, ce } of circles) { + let oldCe = techMap.get(techId)||0; + techMap.set(techId, oldCe + ce); + } + for(let [techId, ce] of techMap) { + let levelDatas = gameData.rougeTechLevel.get(techId)||[]; + let effectIds: number[] = []; + for(let { techEffectIds, ce: targetCe } of levelDatas) { + if(ce >= targetCe) effectIds = techEffectIds; + } + result.push(...effectIds); + } + return result; +} \ No newline at end of file diff --git a/game-server/app/services/checkParam.ts b/game-server/app/services/checkParam.ts index 2a15837b7..c94eb0813 100644 --- a/game-server/app/services/checkParam.ts +++ b/game-server/app/services/checkParam.ts @@ -866,6 +866,167 @@ export function checkRouteParam(route: string, msg: any) { if (!checkNaturalNumbers(msg.id)) return false; break; } + + case "battle.rougeHandler.getData": + break; + case "battle.rougeHandler.getGame": + break; + + case "battle.rougeHandler.getInitCharaCard": + { + let { type, grade } = msg + if (!checkNaturalNumbers(type, grade)) return false; + break; + } + + case "battle.rougeHandler.startGame": + { + let { gameCode, authorType } = msg; + if (!checkNaturalStrings(gameCode)) return false; + if (!checkNaturalNumbers(authorType)) return false; + break; + } + + case "battle.rougeHandler.gameEnd": + { + let { gameCode } = msg; + if (!checkNaturalStrings(gameCode)) return false; + break; + } + + case "battle.rougeHandler.chooseNode": + { + let { gameCode, layer, detailCode } = msg; + if (!checkNaturalStrings(gameCode, detailCode)) return false; + if (!checkNaturalNumbers(layer)) return false; + break; + } + + case "battle.rougeHandler.checkBattle": + { + let { gameCode, detailCode, warId, charaCodes } = msg; + if (!checkNaturalStrings(gameCode, detailCode)) return false; + if (!checkNaturalNumbers(warId)) return false; + if (!checkIsDuplicateStrings(charaCodes)) return false; + break; + } + + case "battle.rougeHandler.battleEnd": + { + let { gameCode, detailCode, battleCode, warId, status, round, rougeDamage, isAp, isRound } = msg; + if (!checkNaturalStrings(gameCode, detailCode, battleCode)) return false; + if (!checkNaturalNumbers(warId, round, status)) return false; + if (!checkBooleanIfExist(isAp, isRound)) return false; + if (!isArray(rougeDamage) || rougeDamage.length == 0) return false; + let charaCodes: string[] = []; + for (let { charaCode } of rougeDamage) { + if (!charaCode) return false; + charaCodes.push(charaCode); + } + if (!checkIsDuplicateStrings(charaCodes)) return false; + break; + } + + case "battle.rougeHandler.chooseReward": + { + let { gameCode, detailCode, groupIndex, optionIndexs } = msg; + if (!checkNaturalStrings(gameCode, detailCode)) return false; + if (!checkNaturalNumbers(groupIndex)) return false; + if (!checkIsDuplicateNumbers(optionIndexs)) return false; + break; + } + case "battle.rougeHandler.reRandomReward": + { + let { gameCode, detailCode, rewardType } = msg; + if (!checkNaturalStrings(gameCode, detailCode)) return false; + if (!checkNaturalNumbers(rewardType)) return false; + break; + } + case "battle.rougeHandler.shopBuy": + { + let { gameCode, detailCode, optionIndex } = msg; + if (!checkNaturalStrings(gameCode, detailCode)) return false; + if (!checkNaturalNumbers(optionIndex)) return false; + break; + } + + case "battle.rougeHandler.chooseOption": + { + let { gameCode, detailCode, eventOptions } = msg; + if (!checkNaturalStrings(gameCode, detailCode)) return false; + if (!checkIsDuplicateNumbers(eventOptions)) return false; + break; + } + + case "battle.rougeHandler.recovery": + { + let { gameCode, detailCode } = msg; + if (!checkNaturalStrings(gameCode, detailCode)) return false; + break; + } + + case "battle.rougeHandler.trainCard": + { + let { gameCode, detailCode, cardCode } = msg; + if (!checkNaturalStrings(gameCode, detailCode, cardCode)) return false; + break; + } + case "battle.rougeHandler.nodeEnd": + { + let { gameCode, detailCode, } = msg; + if (!checkNaturalStrings(gameCode, detailCode)) return false; + break; + } + + case "battle.rougeHandler.putOnOrOffCard": + { + let { gameCode, charaCode, cards } = msg; + if (!checkNaturalStrings(gameCode, charaCode)) return false; + let cardCodes: string[] = [], indexs: number[] = []; + for (let { index, cardCode } of cards) { + indexs.push(index); + if (cardCode) cardCodes.push(cardCode); + } + if (!checkIsDuplicateNumbers(indexs)) return false; + if (!checkIsDuplicateStrings(cardCodes)) return false; + + break; + } + + case "battle.rougeHandler.exchangeChara": + { + let { gameCode, oldCharaCode, newCharaCode } = msg; + if (!checkNaturalStrings(gameCode, oldCharaCode, newCharaCode)) return false; + break; + } + + case "battle.rougeHandler.unlockTech": + { + if (!checkNaturalNumbers(msg.techId)) return false; + break; + } + + case "battle.rougeHandler.putOnCircle": + { + if (!checkNaturalNumbers(msg.circleId, msg.hid)) return false; + break; + } + case "battle.rougeHandler.chooseSkillCard": + { + if (!checkNaturalStrings(msg.gameCode, msg.charaCode)) return false; + if (!checkNaturalNumbers(msg.skillType, msg.id)) return false; + break; + } + case "battle.rougeHandler.receiveCollectionReward": + { + if (!checkNaturalNumbers(msg.type, msg.id)) return false; + break; + } + case "battle.rougeHandler.receiveScore": + { + if (!checkNaturalNumbers(msg.index)) return false; + break; + } case "chat.chatHandler.sendGroupMessage": { let { channel, type, content, targetRoleId, targetMsgCode } = msg; @@ -2223,11 +2384,17 @@ export function checkRouteParam(route: string, msg: any) { case "activity.bindPhoneHandler.debugSetGiftCodeStatus": case 'activity.rebateHandler.debugSetRebate': case 'activity.newHeroGKHandler.debugResetGK': - + case 'battle.rougeHandler.debugClearTech': + case "battle.rougeHandler.debugAddCard": + case "battle.rougeHandler.debugAddScore": + case "battle.rougeHandler.debugRepaireScoreReward": + case "battle.rougeHandler.debugAddCollection": { if (msg.magicWord !== DEBUG_MAGIC_WORD || !isDevelopEnv()) return false; break; } + case "battle.rougeHandler.debugAddLimitId": + case "comBattle.comBattleHandler.getTeams": case "comBattle.comBattleHandler.teammateReady": case "comBattle.comBattleHandler.battleEnd": @@ -2363,4 +2530,28 @@ function checkCombo(combo: { groupId: number, levelList: number[] }[]) { } } return true; +} + +function checkIsDuplicateNumbers(array: number[]) { + const seen = new Set(); + for (const item of array) { + if (!isNumber(item)) return false; + if (seen.has(item)) { + return false; // 发现重复元素 + } + seen.add(item); + } + return true; // 没有重复元素 +} + +function checkIsDuplicateStrings(array: string[]) { + const seen = new Set(); + for (const item of array) { + if (!isString(item)) return false; + if (seen.has(item)) { + return false; // 发现重复元素 + } + seen.add(item); + } + return true; // 没有重复元素 } \ No newline at end of file diff --git a/game-server/app/services/connectorService.ts b/game-server/app/services/connectorService.ts index 54b738667..9c3c7ad9f 100644 --- a/game-server/app/services/connectorService.ts +++ b/game-server/app/services/connectorService.ts @@ -54,6 +54,7 @@ import { LinkModel } from '../db/Link'; import { getHiddenData } from './memoryCache/hiddenData'; import { AuthorBookModel } from '../db/AuthorBook'; import { gameData } from '../pubUtils/data'; +import { getRougeData } from './battle/rougeService'; /** * init: 初始的时候是否推送 true-推 false-不推 @@ -89,6 +90,7 @@ const modules = [ { id: 26, type: 'survey', init: false, refresh: true, guild: false }, { id: 27, type: 'ladder', init: false, refresh: true, guild: false }, { id: 28, type: 'hiddenData', init: true, refresh: true, guild: false }, + { id: 29, type: 'rouge', init: true, refresh: true, guild: false }, ] export async function pushData(hasInit: boolean, role: RoleType, session: FrontendOrBackendSession, pushType: 'entry' | 'refresh' = 'entry') { @@ -229,6 +231,8 @@ export async function getModuleData(type: string, data: { role: RoleType, sessio return await getLadderData(role.roleId, false); case 'hiddenData': return getHiddenData(); + case 'rouge': + return await getRougeData(role.roleId); default: return null; } diff --git a/game-server/app/services/guildService.ts b/game-server/app/services/guildService.ts index c6f0a289f..f61fb44c1 100644 --- a/game-server/app/services/guildService.ts +++ b/game-server/app/services/guildService.ts @@ -31,6 +31,7 @@ import { pick } from "underscore"; import { memberJoinGuildToLeague } from "./gvg/gvgTeamService"; import { isToday } from '../pubUtils/timeUtil'; import moment = require("moment"); +import { repaireSendScoreReward } from "./battle/rougeService"; export async function getMyGuildInfo(roleId: string, sid: string, userGuild: UserGuildType, guild: GuildType, serverId: number, session: FrontendOrBackendSession) { @@ -433,6 +434,10 @@ export async function settleGuildWeekly() { await initSingleRank(REDIS_KEY.GUILD_ACTIVE_RANK); await initSingleRank(REDIS_KEY.GUILD_LV_RANK); let curSeasonNum = await CounterModel.getCounter(COUNTER.PVP_SEASON_NUM); + + // 发送肉鸽奖励 + await repaireSendScoreReward(); + console.log('————— settleGuildWeekly结束 —————'); } diff --git a/game-server/app/services/role/rewardService.ts b/game-server/app/services/role/rewardService.ts index d9a3e814c..3ce977d60 100644 --- a/game-server/app/services/role/rewardService.ts +++ b/game-server/app/services/role/rewardService.ts @@ -622,6 +622,10 @@ export function checkVoucherId(id: number) { return id == voucher || id == voucherCoin; } +export function getRougeTechScoreObject(count: number) { + return { id: CURRENCY_BY_TYPE.get(CURRENCY_TYPE.ROUGE_TECH)||0, count }; +} + /** * 返回 解锁头像/相框 * @param conditions 解锁条件 diff --git a/game-server/test/rouge.test.ts b/game-server/test/rouge.test.ts new file mode 100644 index 000000000..5f6fc7781 --- /dev/null +++ b/game-server/test/rouge.test.ts @@ -0,0 +1,178 @@ +import { Client } from './Client'; +import 'mocha'; +import { PinusWSClient } from 'pinus-robot-plugin'; +import { expect } from 'chai'; +import { checkBattleGoods, checkDisplayItems, checkSuccessResponse, checkTimeStamp, checkWarJson } from './CheckPatten'; +import { DEBUG_MAGIC_WORD } from '../app/consts'; +import { getRandSingleEelm } from './pureUtil'; +import * as util from 'util'; + + +const NORMAIL_BATTLEID = 101; +const DUNGEON_BATTLEID = 5001; + +describe('稷下学宫测试', function () { + let pinusClient: PinusWSClient; + let roleInfo; + + before(function (done) { + const c = new Client(); + const timer = setInterval(() => { + if (c.client) { + pinusClient = c.client; + roleInfo = c.roleInfo; + clearInterval(timer); + done(); + } + }, 500); + }); + + after(function (done) { + pinusClient.disconnect(); + // disconnect 后等待 500ms,供服务器清理环境、退出频道等 + setTimeout(() => { + done(); + }, 500); + }); + + + + // it('getData', function (done) { + + // pinusClient.request('battle.rougeHandler.getData', {}, (res) => { + // console.log("res:", res) + + // done(); + // }); + // }); + + // it('getGame', function (done) { + + // pinusClient.request('battle.rougeHandler.getGame', {}, (res) => { + // console.log('-x-x--x-x-x-x-x-x-x-x-x- res', util.inspect(res, { depth: null })); + + // done(); + // }); + // }); + + it('getInitCharaCard', function (done) { + + pinusClient.request('battle.rougeHandler.getInitCharaCard', { type: 2, grade: 1 }, (res) => { + console.log('-x-x--x-x-x-x-x-x-x-x-x- res', util.inspect(res, { depth: null })); + done(); + }); + }); + // it('startGame', function (done) { + + // pinusClient.request('battle.rougeHandler.startGame', { gameCode: 'MkSLT1HY', authorType: 1 }, (res) => { + + // done(); + // }); + // }); + + + // it('chooseNode', function (done) { + + // pinusClient.request('battle.rougeHandler.chooseNode', { gameCode: '4EPoEyML', layer: 2, detailCode: 'gREeb6Ku' }, (res) => { + // console.log('-x-x--x-x-x-x-x-x-x-x-x- res', util.inspect(res, { depth: null })); + // done(); + // }); + // }); + + // it('gameEnd', function (done) { + + // pinusClient.request('battle.rougeHandler.gameEnd', { gameCode: 'voe64495' }, (res) => { + // console.log('-x-x--x-x-x-x-x-x-x-x-x- res', util.inspect(res, { depth: null })); + // done(); + // }); + // }); + + // it('shopBuy', function (done) { + + // pinusClient.request('battle.rougeHandler.shopBuy', { gameCode: '5b8ioYN3', detailCode: '6ZhZYDXk', optionIndex: 1 }, (res) => { + // console.log('-x-x--x-x-x-x-x-x-x-x-x- res', util.inspect(res, { depth: null })); + // done(); + // }); + // }); + + + // it('chooseReward', function (done) { + + // pinusClient.request('battle.rougeHandler.chooseReward', { gameCode: '5b8ioYN3', detailCode: 'Jv5JEneT', groupIndex: 1, optionIndexs: [0] }, (res) => { + // console.log('-x-x--x-x-x-x-x-x-x-x-x- res', util.inspect(res, { depth: null })); + // done(); + // }); + // }); + + + // it('checkBattle', function (done) { + + // pinusClient.request('battle.rougeHandler.checkBattle', { gameCode: '4EPoEyML', detailCode: 'gREeb6Ku' ,warId:107, charaCodes:['D41jpqe6']}, (res) => { + // console.log('-x-x--x-x-x-x-x-x-x-x-x- res', util.inspect(res, { depth: null })); + // done(); + // }); + // }); + + + // it('battleEnd', function (done) { + // pinusClient.request('battle.rougeHandler.battleEnd', { gameCode: '5b8ioYN3', detailCode: 'pEu6Wetd', warId: 102, battleCode: 'R3FobvR2', status: 1, round: 5, rougeDamage: [{ charaCode: 'WaAhKQu6',hp:1, ap:1, shield:1 }] }, (res) => { + // console.log('-x-x--x-x-x-x-x-x-x-x-x- res', util.inspect(res, { depth: null })); + // done(); + // }); + // }); + + + // it('nodeEnd', function (done) { + // pinusClient.request('battle.rougeHandler.nodeEnd', { gameCode: 'MkSLT1HY', detailCode: 'fve9s7ej' }, (res) => { + // console.log('-x-x--x-x-x-x-x-x-x-x-x- res', util.inspect(res, { depth: null })); + // done();`` + // }); + // }); + + + // it('chooseOption', function (done) { + // pinusClient.request('battle.rougeHandler.chooseOption', { gameCode: '4EPoEyML', detailCode: 'gREeb6Ku', eventOptions:[1,4,10, 13] }, (res) => { + // console.log('-x-x--x-x-x-x-x-x-x-x-x- res', util.inspect(res, { depth: null })); + // done(); + // }); + // }); + + + // it('trainCard', function (done) { + // pinusClient.request('battle.rougeHandler.trainCard', { gameCode: '4EPoEyML', detailCode: 'gREeb6Ku', cardCode:'GB4AtwlA' }, (res) => { + // console.log('-x-x--x-x-x-x-x-x-x-x-x- res', util.inspect(res, { depth: null })); + // done(); + // }); + // }); + + // it('recovery', function (done) { + // pinusClient.request('battle.rougeHandler.recovery', { gameCode: '4EPoEyML', detailCode: 'gREeb6Ku' }, (res) => { + // console.log('-x-x--x-x-x-x-x-x-x-x-x- res', util.inspect(res, { depth: null })); + // done(); + // }); + // }); + + // index: NumberInt("0"), + // cardCode: "ShNTcBGa", + // cardId: NumberInt("10003") + + // it('putOnOrOffCard', function (done) { + // pinusClient.request('battle.rougeHandler.putOnOrOffCard', { gameCode: '4EPoEyML', charaCode: 'GLYk8Q1C', cards: [{ index: 0, cardCode: "", }] }, (res) => { + // console.log('-x-x--x-x-x-x-x-x-x-x-x- res', util.inspect(res, { depth: null })); + // done(); + // }); + // }); + + + + // for (let id = 20001; id <= 20034; id++) { + // it('debugAddCard', function (done) { + // pinusClient.request('battle.rougeHandler.debugAddCard', { tye: 3, id }, (res) => { + // console.log('-x-x--x-x-x-x-x-x-x-x-x- res', util.inspect(res, { depth: null })); + // done(); + // }); + // }); + // } + + +}); diff --git a/shared/consts/constModules/chatConst.ts b/shared/consts/constModules/chatConst.ts index 11fdb4db6..200171b33 100644 --- a/shared/consts/constModules/chatConst.ts +++ b/shared/consts/constModules/chatConst.ts @@ -29,8 +29,8 @@ export const CHANNEL_PREFIX = { LEAGUE: 'league', // 联军 } -export const getChannelType = function(prefix: string) { - switch(prefix) { +export const getChannelType = function (prefix: string) { + switch (prefix) { case CHANNEL_PREFIX.SYS: return 1; case CHANNEL_PREFIX.WORLD: @@ -48,8 +48,8 @@ export const getChannelType = function(prefix: string) { } } -export const getSdkChannelId = function(prefix: string) { - switch(prefix) { +export const getSdkChannelId = function (prefix: string) { + switch (prefix) { case CHANNEL_PREFIX.WORLD: return 1; case CHANNEL_PREFIX.GUILD: @@ -194,7 +194,7 @@ export const PUSH_ROUTE = { LEAGUE_DISSMISS: 'onLeagueDismiss', // 当联军解散 LEAGUE_ABDICATE: 'onLeagueAbdicate', // 当被转让盟主 LEAGUE_ITEM_UPDATE: 'onLeagueItemUpdate', - LEAGUE_TECH_CHANGE : 'onGVGTechChange', // 千机阁科技变更 + LEAGUE_TECH_CHANGE: 'onGVGTechChange', // 千机阁科技变更 LEAGUE_TECH_UNLOCK: 'onGVGTechUnlock', // 千机阁科技解锁 LEAGUE_TECH_ACITVE: 'onGVGTechActive', // 千机阁科技激活 LEAGUE_TECH_ROLLBACK: 'onGVGTechRollback', // 千机阁科技回退 @@ -212,4 +212,7 @@ export const PUSH_ROUTE = { GVG_NOTICE_UPDATE: 'onGVGNoticeUpdate', // 管理信息更新 PUBLIC_ACCOUNT_GIFT: 'onPublicAccountGift', // 公众号发送 GVG_REC_ADD: 'onGVGRecAdd', // 动态更新 + ROUGE_COLLECT_UPDATE: 'onRougeCollectUpdate', // 更新图鉴 + ROUGE_CHALLENGE_UPDATE: 'onRougeChallengeUpdate', //更新学宫挑战进度 + } \ No newline at end of file diff --git a/shared/consts/constModules/itemConst.ts b/shared/consts/constModules/itemConst.ts index 845e9eb99..3d567a0e2 100644 --- a/shared/consts/constModules/itemConst.ts +++ b/shared/consts/constModules/itemConst.ts @@ -180,6 +180,7 @@ export const CURRENCY_TYPE = { KING_EXP: 'kingExp', VOUCHER: 'voucher', VOUCHER_COIN: 'voucherCoin', + ROUGE_TECH: 'rougeTech', } const currencyArr = [ @@ -197,7 +198,8 @@ const currencyArr = [ { "gid": 72021, "name": "天机骰子", "type": CURRENCY_TYPE.SPECIAL_DICE }, { "gid": 72030, "name": "主公经验", "type": CURRENCY_TYPE.KING_EXP }, { "gid": 81000, "name": "英杰券", "type": CURRENCY_TYPE.VOUCHER}, - { "gid": 81001, "name": "英杰币", "type": CURRENCY_TYPE.VOUCHER_COIN} + { "gid": 81001, "name": "英杰币", "type": CURRENCY_TYPE.VOUCHER_COIN}, + { "gid": 40022, "name": "科技点", "type": CURRENCY_TYPE.ROUGE_TECH }, ]; export const CURRENCY = new Map(); diff --git a/shared/consts/constModules/mailConst.ts b/shared/consts/constModules/mailConst.ts index 642250c82..ff047216b 100644 --- a/shared/consts/constModules/mailConst.ts +++ b/shared/consts/constModules/mailConst.ts @@ -76,6 +76,7 @@ export enum MAIL_TYPE { ARTIFACT_OVER = 46, // 宝物数量超过 GVG_BATTLE_PLAYER_SETTLE_RANK_REWARD = 47, // 激战期个人占领排行榜奖励 REPAIRE_SIGN_IN = 48, // 高级签到补发奖励 + ROUGE_SCORE_REPAIRE = 49, // 补发肉鸽每周奖励 }; export const SEND_NAME = '系统'; diff --git a/shared/consts/constModules/rougeConst.ts b/shared/consts/constModules/rougeConst.ts new file mode 100644 index 000000000..684c98509 --- /dev/null +++ b/shared/consts/constModules/rougeConst.ts @@ -0,0 +1,127 @@ +// 肉鸽相关 + +export enum ROUGE_LIKE_STATUS { + CHOOSECHARA = 0,//选角色卡 + INPROGRESS = 1, // 进行中 + SUCCESS = 2, // 达成 +} +export enum ROUGE_CHARA_INITIAL { + NOT = 0, // 不能被随机 + CAN = 1, // 能被随机 +} +export enum ROUGE_CHARA_TYPE { + ORDINARY = 1, // 普通 + HIGH = 2, // 高级 +} + +export enum ROUGE_LIKE_CARD_TYPE { + CHARA = 1, //角色卡 + PASSIVE = 2, //特性卡 + HOLY = 3, //圣物 + // SKILL = 4, //技能卡 + // PASSON = 5, //传人卡 + // EVENT = 6, //事件 + + // // COIN = 4, //试炼币 + +} + +export enum COLLECTION_TYPE { + PASSIVE_CARD_SUM = 0, + PASSIVE_CARD = 1, + HOLY_CARD = 2, + SKILL_CARD = 3, + EVENT = 4, +} + +export enum ROUGE_LIKE_DETAIL_STATUS { + CHOOSE = 1, //已选择 + GET = 2, //已获得 + GET_REWARD = 3, //已领奖 +} + +export enum ROUGE_LIKE_CHOOSE_REWARD { + NOCHOOSE = 0, //未选择 + CHOOSE = 1, //选择 +} + +export enum ROUGE_LIKE_NODE_STATUS { + FAIL = 0, // 失败 + SUCCESS = 1, //成功 +} + +export enum ROUGE_LIKE_NODE_TYPE { + ORDINARY = 1, // 普通关 + ELITE = 2, // 精英关 + CHALLENGE = 3, // 挑战关 + SHOP = 4, // 试炼商店 + REST_POINT = 5, // 休整点 + QUEST_POINT = 6, // 问号点 + BOSS = 7, // boss关 + + EVENT = 8, //事件 +} + +export enum REST_POINT_TYPE { + RECOVERY = 1, //恢复 + RECURIT = 2, //招募 + TRAIN = 3, //强化 +} + +export enum ROUGELIKE_SKILLTYPE { + AP = 1, //怒气 + ROUND = 2, //回合 +} + +export enum ROUGE_EFFECT_TYPE { + CHALLENGE_ENEMY_MAIN_ATTR_UP = 1001, // 接下来X场战斗,敌军属性id提高num + CHALLENGE_ENEMY_SUB_ATTR_UP = 1002, // 接下来X场战斗,敌军属性id提高num + CHALLENGE_CHARA_MAIN_ATTR_DOWN = 1003, // 接下来X场战斗,我军学员属性id降低num + CHALLENGE_CHARA_SUB_ATTR_DOWN = 1004, // 接下来X场战斗,我军学员属性id降低num + CHALLENGE_CHARA_HP_LIMIT = 1005, // 接下来X场战斗,战斗结束后我军学员生命不低于num + CHALLENGE_CHARA_NO_AP_SKILL = 1006, // 接下来X场战斗,战斗过程中我军学员无法使用怒气技 + CHALLENGE_CHARA_NO_ROUND_SKILL = 1007, // 接下来X场战斗,战斗过程中我军学员无法使用回合技 + CHALLENGE_PASSIVE_CARD_REDUCE = 1008, // 接下来X次选择特性卡时,可选择的卡片数量少1 + CHALLENGE_CHARA_NUM_LIMIT = 1009, // 接下来X场战斗,每场战斗只能上阵2名学员 + HOLY_CHARA_HP_RECOVERY_UP = 2001, // 每场战斗结束后,学员恢复血量上限X%的生命 + HOLY_CHARA_SLOT_UNLOCK_ALL = 2002, // 获得该圣物时,所有学员立刻解锁X个特性槽 + HOLY_CHARA_SLOT_UNLOCK_RAND = 2003, // 获得该圣物时,随机解锁X个学员的Y个特性槽 + HOLY_COIN_UP = 2004, // 战斗胜利后,获得的试炼币增加X + HOLY_CHARA_MAIN_ATTR_UP_BY_COIN = 2005, // 每累积X个试炼币,全员基础属性id提高Y + HOLY_PASSIVE_UPDATE_RAND = 2006, // 随机升级X个已装备的特性 + HOLY_PASSIVE_WEIGHT_UP_BY_AUTHOR = 2007, // 获得圣物时,X流派特性卡的权重增加Y + HOLY_ENEMY_MAIN_ATTR_DOWN = 2008, // 进入战斗后,所有敌军扣减X的某基础属性id + HOLY_REVIVE_ALL = 2009, // 非首领敌人战斗失败视为胜利,并且满血复活 + HOLY_REVIVE_CHARA_RAND = 2010, // 战斗胜利后若有学员死亡,则满血复活X名死亡学员 + HOLY_SHOP_DISCOUNT = 2011, // 试炼商店中所有商品X折出售 + HOLY_UPDATE_PASSIVE_BY_LV = 2012, // 获得该圣物时立即升级所有X星特性卡 + HOLY_PASSIVE_CHOOSE_FIX = 2013, // 下次选择特性卡时必定出现X星特性卡 + HOLY_PASSIVE_CHOOSE_NUM_UP = 2014, // 下次选择特性卡时可多选X张特性卡 + HOLY_REPAIRE_HOLY = 2015, // 获得该圣物后,随机修复X个已损毁的圣物 + // HOLY_RESET_PASSIVE = 2016, // 获得该圣物后,随机重置X个已装配的特性卡 + HOLY_RECOVERY_POINT_UP = 2017, // 休整点额外恢复X%的生命 + HOLY_TRAIN_POINT_DISCOUNT = 2018, // 休整点特训价格X折 + HOLY_CHARA_SUB_ATTR_UP_BY_COIN = 2019, // 每累积X个试炼币,全员次级属性id提高Y + HOLY_CHARA_MAIN_ATTR_UP = 2020, // 基础属性提升 + HOLY_CHARA_SUB_ATTR_UP = 2021, // 次级属性提升 + HOLY_CHARA_ATTR_UP_BY_ROUND = 2022, // 每场战斗第X回合后,全员属性id提高Y + HOLY_CHARA_SLOT_UNLOCK_POINT = 2023, // 获得该圣物后,所有角色解锁X号位置的特性槽 + + TECH_CHARA_MAIN_ATTR_UP = 3001, // 基础属性提升 + TECH_CHARA_SUB_ATTR_UP = 3002, // 次级属性提升 + TECH_INIT_HOLY_BY_AUTHOR = 3003, // 选择百家流派后获得1个流派专属圣物X(X圣物池) + TECH_CAN_CHOOSE_SKILL_CARD = 3004, // 装备X个同百家流派特性的角色可额外选择流派专属Y(技能类型) + TECH_INIT_COIN = 3005, // 初始获得X个试炼币 + TECH_RECOVERY_POINT_UP = 3006, // 休整点恢复额外恢复血量上限X%的生命 + TECH_COIN_UP_BY_NODE_TYPE = 3007, // 某些nodeType后获得的试炼币增加X% + TECH_PASSIVE_RANDOM_AGAIN = 3008, // 选择特性卡时可消耗X试炼币重置Y次 + TECH_TRAIN_POINT_DISCOUNT = 3009, // 休整点特训价格降低X% + TECH_BOSS_ANGER_MAX = 3010, // 挑战boss关前所有角色怒气值充满 + TECH_BOSS_HP_MAX = 3011, // 挑战boss关前所有角色生命恢复至100% +} + +export enum ROUGE_EFFECT_TYPE_KIND { + CHALLENGE = 1, // 挑战 + HOLY = 2, // 圣物特效 + TECH = 3, // 法阵特性 +} \ No newline at end of file diff --git a/shared/consts/constModules/sysConst.ts b/shared/consts/constModules/sysConst.ts index 0fd83bd2b..44b24a6ad 100644 --- a/shared/consts/constModules/sysConst.ts +++ b/shared/consts/constModules/sysConst.ts @@ -32,6 +32,8 @@ export const CHECT_BATTLE_TYPE_HIDE = 202; // 隐藏武将 export const ITID_STONE_LIMIT = 6; //玉石一键合成等级限制 +export const ROUGE_SLOT_LIMIT = 5;//rouge卡槽数量 + export enum TIME_OUTPUT_TYPE { DATE = 1, STAMP_10 = 2, @@ -64,6 +66,7 @@ export const COUNTER = { HIDDEN_DATA: { name: 'hiddendata', def: 1 }, ARTIFACT_ID: { name: 'artid', def: 1 }, GVG_CONFIG: { name: 'gvg', def: 1 }, + ROUGE_CHARA: { name: 'rougeChara', def: 1 }, }; export const DEFAULT_HEROES = [19, 53,]; @@ -654,6 +657,39 @@ export const FILENAME = { DIC_AUTHORS_BOOK_SUB: 'dic_zyz_authorsBookSub', DIC_AUTHORS_GOODID: 'dic_zyz_authorsGoodId', DIC_BOSS_RANK_ACTIVE_POINT: 'dic_zyz_bossRank_activePoint', + + // DIC_ROUGE_TYPE: "dic_rougeType", 暂时用不到 + DIC_ROUGE_AUTHOR_TYPE: "dic_rougeAuthorType", + DIC_ROUGE_TYPE_GRADE: "dic_rougeType_grade", + DIC_ROUGE_LAYER_PLAN: "dic_rougeLayer_plan", + DIC_SPIRIT_PLAN: "dic_spiritPlan", + DIC_ROUGE_LAYER_NODE_NUM_PLAN: "dic_rougeLayer_nodeNumPlan", + DIC_ROUGE_LAYER_NODE_PLAN: "dic_rougeLayer_nodePlan", + DIC_ROUGE_NODE: "dic_rougeNode", + DIC_ROUGE_LAYER_REWARD_PLAN: "dic_rougeLayer_rewardPlan", + DIC_ROUGE_SHOP_PLAN: "dic_rougeShopPlan", + DIC_ROUGE_CHARA: "dic_rougeChara", + DIC_ROUGE_PASSIVE_CARD: "dic_rougePassiveCard", + DIC_ROUGE_PASSIVE_COLLECT: "dic_rougePassiveCollect", + DIC_ROUGE_SKILL_CARD: "dic_rougeSkillCard", + DIC_ROUGE_HOLY_CARD: "dic_rougeHolyCard", + DIC_ROUGE_CHARA_CARD_PLAN: "dic_rougeChara_cardPlan", + DIC_ROUGE_PASSIVE_CARD_PLAN: "dic_rougePassive_cardPlan", + DIC_ROUGE_HOLY_CARD_PLAN: "dic_rougeHoly_cardPlan", + DIC_ROUGE_CHALLANGE: "dic_rougeChallenge", + DIC_ROUGE_CHALLANGE_PLAN: "dic_rougeChallengePlan", + DIC_ROUGE_QUESTION_MARK_PLAN: "dic_rougeQuestionMarkPlan", + DIC_ROUGE_RANDOM_EVENT_PLAN: "dic_rougeRandomEventPlan", + DIC_ROUGE_EVENT_OPTION: "dic_rougeEventOption", + DIC_ROUGE_OPTION_GROUP: "dic_rougeOptionGroup", + DIC_GK_ROUGE: "dic_zyz_gk_rouge", + DIC_ROUGE_SCORE_REWARD: "dic_rougeScoreReward", + DIC_ROUGE_EFFECT: "dic_rougeEffect", + DIC_ROUGE_EFFECT_TYPE: "dic_rougeEffectType", + + DIC_ROUGE_TECH: "dic_rougeTech", + DIC_ROUGE_TECH_CIRCLE: "dic_rougeTechCircle", + DIC_ROUGE_TECH_LEVEL: "dic_rougeTechLevel", } export const WAR_RELATE_TABLES = [ @@ -679,6 +715,7 @@ export const WAR_RELATE_TABLES = [ FILENAME.DIC_GK_BRANCH_ELITE, FILENAME.DIC_GK_GVG_VESTIGE, FILENAME.DIC_GK_GVGBATTLE, + FILENAME.DIC_GK_ROUGE, ] // 装备栏强化类型 @@ -1211,6 +1248,12 @@ export enum ITEM_CHANGE_REASON { QIXI_REWARD = 195, // 七夕活动奖励 MID_AUTUMN_REWARD = 196, // 中秋活动奖励 AUTHOR_GACHA_REWARD = 197, // 百家争鸣祈灵奖励 + ROUGE_TAKE_OUT_REWARD = 198, // 肉鸽外带奖励 + ROUGE_TECH_SCORE = 199, // 肉鸽科技点结算 + ROUGE_UNLOCK_TECH = 200, // 肉鸽解锁科技点 + ROUGE_FIRST_REWARD = 201, // 肉鸽首通奖励 + RECEIVE_COLLECT_REWARD = 202, // 领取图鉴奖励 + RECEIVE_ROUGE_SCORE_REWARD = 203, // 领取积分奖励 } export enum TA_EVENT { diff --git a/shared/consts/index.ts b/shared/consts/index.ts index 7a4f56bee..03616cd48 100644 --- a/shared/consts/index.ts +++ b/shared/consts/index.ts @@ -11,5 +11,6 @@ export * from './constModules/httpConst'; export * from './constModules/auctionConst'; export * from './constModules/mailConst'; export * from './constModules/gvgConst'; +export * from './constModules/rougeConst'; export * from './statusCode'; export * from './dataName'; \ No newline at end of file diff --git a/shared/consts/statusCode.ts b/shared/consts/statusCode.ts index 245b97481..21d0d3bfb 100644 --- a/shared/consts/statusCode.ts +++ b/shared/consts/statusCode.ts @@ -21,13 +21,13 @@ export const STATUS = { DUPLICATE_ACCESS: { code: 16, simStr: '随机请求参数重复' }, ADDRESS_ERR: { code: 17, simStr: '您的版本已停止支持,请前往应用商店下载最新安装包' }, GLOBAL_ERR: { code: 1003, simStr: '刷新服务器数据错误,请尝试重新登录或联系客服' }, - UPDATE_INFO_ERR: {code: 1004, simStr: '热更新配置错误'}, - DEBUG_FUNCTION_ERR: {code: 1005, simStr: '功能逻辑已改,debug接口不再提供'}, - DEVELOP_ONLY: {code: 1006, simStr: '只有测试环境才可以使用该接口'}, - PACKAGE_NOT_FOUND: {code: 1007, simStr: '您的版本未被支持,请前往应用商店重新下载或联系客服解决'}, - REGION_NOT_FOUND: {code: 1008, simStr: '未找到此版本对应区服'}, - PACKAGE_CREATE_FAILED: {code: 1009, simStr: '创建子包失败'}, - PACKAGE_UPDATE_FAILED: {code: 1010, simStr: '更新子包失败'}, + UPDATE_INFO_ERR: { code: 1004, simStr: '热更新配置错误' }, + DEBUG_FUNCTION_ERR: { code: 1005, simStr: '功能逻辑已改,debug接口不再提供' }, + DEVELOP_ONLY: { code: 1006, simStr: '只有测试环境才可以使用该接口' }, + PACKAGE_NOT_FOUND: { code: 1007, simStr: '您的版本未被支持,请前往应用商店重新下载或联系客服解决' }, + REGION_NOT_FOUND: { code: 1008, simStr: '未找到此版本对应区服' }, + PACKAGE_CREATE_FAILED: { code: 1009, simStr: '创建子包失败' }, + PACKAGE_UPDATE_FAILED: { code: 1010, simStr: '更新子包失败' }, // http请求 REQUEST_TIME_OUT: { code: 2000, simStr: '请求超时' }, @@ -69,10 +69,10 @@ export const STATUS = { BATTLE_END_WRONG_TYPE: { code: 20008, simStr: '此类型无法使用通用结算' }, BATTLE_GOLD_NOT_ENOUGH: { code: 20009, simStr: '元宝不足' }, BATTLE_REGRET_MAX: { code: 20010, simStr: '悔棋步数达上限' }, - BATTLE_NOT_FOUND: { code: 20011, simStr: '未找到对应关卡'}, - BATTLE_RPL_UPDATE_ERR: { code: 20012, simStr: '录像状态更新失败'}, - BATTLE_RPL_NOT_SUPPORT: { code: 20013, simStr: '暂不支持保存此类战斗的录像'}, - BATTLE_CHECK_REC_SAVE_ERR: { code: 20014, simStr: '战斗检测记录保存错误'}, + BATTLE_NOT_FOUND: { code: 20011, simStr: '未找到对应关卡' }, + BATTLE_RPL_UPDATE_ERR: { code: 20012, simStr: '录像状态更新失败' }, + BATTLE_RPL_NOT_SUPPORT: { code: 20013, simStr: '暂不支持保存此类战斗的录像' }, + BATTLE_CHECK_REC_SAVE_ERR: { code: 20014, simStr: '战斗检测记录保存错误' }, // 主线 20100 - 20199 BATTLE_INFO_VALIDATE_ERR: { code: 20101, simStr: '关卡信息不同' }, @@ -165,7 +165,7 @@ export const STATUS = { COM_BATTLE_HEROES_ERR: { code: 20629, simStr: '阵容异常' }, COM_BATTLE_SET_FRD_ERR: { code: 20630, simStr: '设置情谊助战异常' }, COM_BATTLE_BLACKLIST: { code: 20633, simStr: '队伍中存在黑名单玩家' }, - COM_BATTLE_BE_KICKED: { code: 20634, simStr: '您已被队伍踢出,无法加入'}, + COM_BATTLE_BE_KICKED: { code: 20634, simStr: '您已被队伍踢出,无法加入' }, COM_BATTLE_CREATE_CE_LIMIT: { code: 20635, simStr: '你的战力不足,不可设置该级别限制' }, COM_BATTLE_TEAM_NOT_DEFAULT: { code: 20636, simStr: '队伍已过期' }, COM_BATTLE_IS_RUNNING: { code: 20637, simStr: '您有队伍正在进行中' }, @@ -301,8 +301,8 @@ export const STATUS = { LADDER_SWEEP_TIMES_OVER: { code: 21209, simStr: '连战次数过多' }, // GVG相关 - GVG_HAS_NO_AUTH: { code: 21300, simStr: '您的权限不足' }, - GVG_NOT_TEAM_PERIOD: { code: 21301, simStr: '您只能在组建期进行该操作' }, + GVG_HAS_NO_AUTH: { code: 21300, simStr: '您的权限不足' }, + GVG_NOT_TEAM_PERIOD: { code: 21301, simStr: '您只能在组建期进行该操作' }, GVG_TEAM_SERVER_TYPE_ERR: { code: 21302, simStr: '单服玩法不需要联军' }, GVG_LEAGUE_HAS_EXIST: { code: 21303, simStr: '联军已存在' }, GVG_NO_SERVER_TYPE: { code: 21304, simStr: '开服8天后逐鹿中原开启' }, @@ -316,7 +316,7 @@ export const STATUS = { GUILD_HAS_QUIT: { code: 31312, simStr: '军团已经退出联军了' }, GVG_CANNOT_QUIT_OTHER_GUILD: { code: 31313, simStr: '只能主动退出自己的军团' }, LEAGUE_CODE_ERR: { code: 31314, simStr: '不能解散其他联军' }, - GVG_HE_HAS_NO_AUTH: { code: 21300, simStr: '对方权限不足' }, + GVG_HE_HAS_NO_AUTH: { code: 21300, simStr: '对方权限不足' }, LEAGUE_NAME_DUP: { code: 21301, simStr: '联军名重复' }, GVG_HAS_CHOOSE_JOB: { code: 21302, simStr: '已经选择过职能' }, GVG_NOT_PREPARE_PERIOD: { code: 21303, simStr: '您只能在准备期进行该操作' }, @@ -388,7 +388,7 @@ export const STATUS = { GVG_BATTLE_IS_MOVING: { code: 21403, simStr: '编队正在移动中' }, GVG_BATTLE_IS_NOT_IN_CITY: { code: 21404, simStr: '编队不在这个城池中' }, GVG_TEAM_ATTACKING: { code: 21405, simStr: '您的编队正在攻击冷却中' }, - GVG_TEAM_DEFENSEING: { code: 21406, simStr: '该玩家正在与其他玩家战斗' }, + GVG_TEAM_DEFENSEING: { code: 21406, simStr: '该玩家正在与其他玩家战斗' }, GVG_BATTLEREC_NOT_FOUND: { code: 21407, simStr: '未找到该记录' }, GVG_AREA_NOT_IN_CITY: { code: 21408, simStr: '选择区域不在这座城池中' }, GVG_TEAM_NOT_FOUND: { code: 21409, simStr: '未找到这个队伍' }, @@ -408,7 +408,7 @@ export const STATUS = { GVG_BATTLE_TEAM_HAS_SELLTED: { code: 21423, simStr: '该编队已驻守据点了' }, GVG_BATTLE_TEAM_LOCK_ENTERY_CITY: { code: 21424, simStr: '正在有玩家挑战您,请稍后切换城池' }, GVG_POINT_TYPE_ERR: { code: 21425, simStr: '该积分点不可驻守' }, - GVG_ROBOT_DEFENSEING: { code: 21426, simStr: '该守卫正在与其他玩家战斗' }, + GVG_ROBOT_DEFENSEING: { code: 21426, simStr: '该守卫正在与其他玩家战斗' }, GVG_TARGET_CITY_HAS_SET: { code: 21427, simStr: '这个城池已设为目标' }, GVG_TARGET_CITY_CNT_MAX: { code: 21428, simStr: '目标城池数量已达上限' }, @@ -527,7 +527,7 @@ export const STATUS = { ARTIFACT_TYPE_SAME: { code: 30547, simStr: '该宝物已经是该形态了' }, ARTIFACT_HAS_NO_STRENGTH: { code: 30548, simStr: '选择的宝物未强化过无法重铸' }, ARTIFACT_CANNOT_DECOMPOSE: { code: 30549, simStr: '选择的宝物不可分解' }, - + //全局养成30600-30699 ROLE_REACH_MAX_TITLE_LEVEL: { code: 30600, simStr: '玩家已达到最高的爵位' }, ROLE_TERAPH_NOT_STRENGTHEN: { code: 30601, simStr: '材料不足或玩家神像不能强化' }, @@ -610,7 +610,7 @@ export const STATUS = { GIFT_CODE_CHANNEL_ERR: { code: 31206, simStr: '礼包码在您的渠道不生效' }, GIFT_TYPE_ERR: { code: 31207, simStr: '该礼包码不可在此界面使用' }, // 邮件相关 31301-31400 - MAIL_HAS_RECEIVE: { code: 31301, simStr: '邮件已领取'}, + MAIL_HAS_RECEIVE: { code: 31301, simStr: '邮件已领取' }, EQUIP_IS_OVER: { code: 31302, simStr: '装备已超过上限,无法领取' }, // 道具相关 ITEM_CANNOT_RECEIVE_NO_GUILD: { code: 31401, simStr: '您没有加入军团,不可使用该道具' }, @@ -660,7 +660,7 @@ export const STATUS = { ACTIVITY_ITEM_CANNOT_RECEIVE: { code: 50036, simStr: '无可领取物品' }, ACTIVITY_POP_UP_MUST_BUY: { code: 50037, simStr: '该礼包必须购买' }, DAILY_COIN_BOX_NOT_FOUND: { code: 50038, simStr: '未找到该宝箱' }, - DAILY_COIN_BOX_CANNOT_RECEIVE: {code: 50013, simStr: '该宝箱不可领取' }, + DAILY_COIN_BOX_CANNOT_RECEIVE: { code: 50013, simStr: '该宝箱不可领取' }, ACTIVITY_GROUP_SHOP_BUY_CNT_MAX: { code: 50039, simStr: '购买次数超过最大值' }, ACTIVITY_GROUP_SHOP_ITEM_NOT_FOUND: { code: 50040, simStr: '未找到该商品' }, @@ -763,7 +763,46 @@ export const STATUS = { ORDER_CANNOT_BUY: { code: 70016, simStr: '该礼包不可购买' }, VOUCHER_NOT_ENOUGH: { code: 70017, simStr: '代金券不足' }, ORDER_STATUS_ERROR: { code: 70018, simStr: '订单状态错误' }, - PAY_NOT_OPEN: { code: 70019, simStr: '支付功能暂未开启' } + PAY_NOT_OPEN: { code: 70019, simStr: '支付功能暂未开启' }, + + // 稷下学宫 相关状态 80000 - 89999 + SHOP_NO_BUY: { code: 80001, simStr: '商店不可购买' }, + COIN_NOT_ENOUGH: { code: 80002, simStr: '试炼币不足' }, + REWARD_NO_CHOOSE: { code: 80003, simStr: '奖励不可选择' }, + NO_CARD: { code: 80004, simStr: '卡不存在' }, + SLOT_UNLOCK: { code: 80005, simStr: '卡槽未解锁' }, + NO_PASSIVE: { code: 80006, simStr: '非特性卡不能安装' }, + + ROUGELIKE_GAME_PLAYING: { code: 80007, simStr: '有一场试炼正在进行中' }, + + NO_TYPE_GRADE: { code: 80008, simStr: '不存在这样的试炼' }, + LIMIT_LV: { code: 80008, simStr: '未达到等级限制' }, + NO_ROUGELIKE_GAME: { code: 80009, simStr: '该场游戏无效' }, + ROUGELIKE_GAME_END: { code: 80010, simStr: '该场游戏已结束' }, + NODE_NO_CHOOSE: { code: 80011, simStr: '该节点不可选择' }, + NO_AUTHOR_TYPE: { code: 80012, simStr: '流派不存在' }, + TYPE_UNLOCK: { code: 80013, simStr: '试炼未解锁' }, + WAR_NO_CHOOSE: { code: 80014, simStr: '该关卡不可选择' }, + NO_EXIT_NODE: { code: 80015, simStr: '该节点不存在' }, + NODE_NO_END: { code: 80016, simStr: '该节点不能直接完成' }, + HIGH_LV: { code: 80017, simStr: '已达到最高等级, 无法强化等级' }, + BATTLE_ABNORMAL: { code: 80018, simStr: '战斗异常' }, + NO_TIME_RECOVERY: { code: 80019, simStr: '没有回复次数' }, + ROUGE_PASSIVE_CARD_NOT_ENOUGH: { code: 80020, simStr: '装备的特性卡不足' }, + ROUGELIKE_TAKEOUT_HAS_RECEIVED: { code: 80021, simStr: '外带奖励已领取' }, + ROUGELIKE_TAKEOUT_CNT_NOT_ENOUGH: { code: 80022, simStr: '本周外带次数不足' }, + BATTLE_ABNORMAL_CHARA: { code: 80023, simStr: '上阵学员数量异常' }, + ROUGE_RE_RANDOM_CNT_OVER: { code: 80024, simStr: '已重新随机过' }, + + ROUGE_TECH_SCORE_NOT_ENOUGH: { code: 80101, simStr: '科技点不足' }, + ROUGE_TECH_HAS_UNLOCKED: { code: 80102, simStr: '科技点已解锁' }, + ROUGE_TECH_PRE_NOT_UNLOCKED: { code: 80103, simStr: '前置节点未解锁' }, + ROUGE_CIRCLE_NOT_UNLOCK: { code: 80104, simStr: '对应科技点未解锁' }, + ROUGE_COLLECT_HAS_RECEIVED: { code: 80105, simStr: '该图鉴奖励已领取' }, + ROUGE_SCORE_NOT_ENOUGH: { code: 80106, simStr: '积分不足' }, + ROUGE_SCORE_HAS_RECEIVED: { code: 80107, simStr: '已领取' }, + ROUGE_COLLECT_NOT_ENOUGH: { code: 80108, simStr: '该图鉴条件未达成' }, + ROUGE_TECH_NOT_UNLOCKED: { code: 80109, simStr: '对应科技点未解锁' }, } export const PAY_37_CALLBACK_CODE = { diff --git a/shared/db/BattleRecord.ts b/shared/db/BattleRecord.ts index 4303d400d..914322c33 100644 --- a/shared/db/BattleRecord.ts +++ b/shared/db/BattleRecord.ts @@ -1,6 +1,7 @@ import BaseModel from './BaseModel'; import { index, getModelForClass, prop, DocumentType } from '@typegoose/typegoose'; import { LineupParam } from '../domain/rank'; +import { Card } from './RougelikeChara'; /** * 战斗记录接口 @@ -17,6 +18,31 @@ class DamageRecord { underDamage: number; } +class RougeCharaRecord { + @prop({ required: false, default: '' }) + charaCode?: string; // 角色卡id + @prop({ required: false, default: 0 }) + charaId?: number; // 角色卡id + @prop({ required: false, type: Card, default: [] }) + cards?: Card[]; + @prop({ required: false, default: 0 }) + hp?: number; // 当前hp + @prop({ required: false, default: 0 }) + ap?: number; // 当前怒气 + @prop({ required: false, default: 0 }) + roundSkill?: number; // 玩家选择的回合技能卡 + @prop({ required: false, default: 0 }) + apSkill?: number; // 玩家选择的怒气技能卡 + @prop({ required: false, default: 0 }) + shield?: number + @prop({ required: false }) + damage?: number; + @prop({ required: false }) + heal?: number; + @prop({ required: false }) + underDamage?: number; +} + class Record { @prop({ required: true, type: Number }) heroes?: Array; // 武将id @@ -29,11 +55,11 @@ class Record { @prop({ required: false }) pos?: number; // pvp位置 @prop({ required: false }) - trainId?:number; + trainId?: number; @prop({ required: false }) - trainLv?:number; + trainLv?: number; @prop({ required: false }) - hid?:number; + hid?: number; @prop({ required: false }) guildCode?: string; @prop({ required: false }) @@ -53,6 +79,11 @@ class Record { damageRecord?: DamageRecord[]; @prop({ required: false }) round?: number; + + @prop({ required: false, type: RougeCharaRecord }) + rougeOriginal?: RougeCharaRecord[]; + @prop({ required: false, type: RougeCharaRecord }) + rougeDamage?: RougeCharaRecord[]; } @index({ roleId: 1, battleId: 1 }) @@ -107,13 +138,14 @@ export default class BattleRecord extends BaseModel { return result; } + public static async deleteAccount(roleId: string) { let result = await BattleRecordModel.deleteMany({ roleId }); return result || {}; } public static async incBossDamage(battleCode: string, damage: number, bossHp: number) { - if(bossHp < 0) { // 最后一击,被扣到负了 + if (bossHp < 0) { // 最后一击,被扣到负了 damage += bossHp; } let result: BattleRecordType = await BattleRecordModel.findOneAndUpdate({ battleCode }, { $inc: { 'record.bossDamage': damage } }, { new: true }).lean(); diff --git a/shared/db/Counter.ts b/shared/db/Counter.ts index 0b0733309..33bb05180 100644 --- a/shared/db/Counter.ts +++ b/shared/db/Counter.ts @@ -22,6 +22,15 @@ export default class Counter extends BaseModel { return counter?.seq; } + public static async getNewCounterNum(param:{name: string, def: number}, inc = 1) { + let {name, def:defaultVal} = param; + let counter: CounterType = await CounterModel.findOneAndUpdate({ name }, { $inc: { seq: inc } }, { new: true, upsert: true }).lean(); + if(!counter || (counter&&counter.seq == 1) && defaultVal != 1) { + counter = await CounterModel.findOneAndUpdate({ name }, { $set: { seq: defaultVal } }, { new: true, upsert: true }).lean(); + } + return counter?.seq; + } + public static async getCounter(param:{name: string, def: number}, lean = true) { let {name} = param; let counter: CounterType = await CounterModel.findOne({ name }).lean(lean); diff --git a/shared/db/RougelikeCard.ts b/shared/db/RougelikeCard.ts new file mode 100644 index 000000000..da1d17e6c --- /dev/null +++ b/shared/db/RougelikeCard.ts @@ -0,0 +1,89 @@ +import BaseModel from './BaseModel'; +import { getModelForClass, prop, DocumentType, index } from '@typegoose/typegoose'; + + + +/** + * 每场获得的圣物&特性卡 + */ +@index({ roleId: 1 }) +@index({ gameCode: 1 }) +@index({ gameCode: 1, cardCode: 1 }) +@index({ gameCode: 1, type: 1 }) + + +export default class RougelikeCard extends BaseModel { + @prop({ required: true }) + roleId: string; // 角色id + + @prop({ required: true, default: '' }) + gameCode: string; // 场次唯一code + + @prop({ required: true, default: '' }) + cardCode: string; // 卡唯一code + + @prop({ required: true, default: 0 }) + cardId: number; // 卡id + + @prop({ required: true, default: 0 }) + type: number; // 卡类型 + + @prop({ required: true, default: 0 }) + charaId: number; // 装备在哪个角色上,没有装备为0 + + @prop({ required: true, default: 0 }) + lv: number; // 特性卡的等级 + + @prop({ required: true, default: 0 }) + getLayer: number; // 在哪一层获得的 + + @prop({ required: true, default: 0 }) + getWay: number; // 在做什么的时候获得的 + + @prop({ required: true, default: 0 }) + useCount?: number // 可使用次数 + + + public static async updateByCode(gameCode: string, cardCode: string, params: { $set?: RougelikeCardPara, $inc?: { lv?: number } }, lean = true) { + const result: RougelikeCardType = await RougelikeCardModel.findOneAndUpdate({ gameCode, cardCode }, params, { new: true, upsert: true }).lean(lean); + return result; + } + + public static async findByGameCode(gameCode: string, lean = true) { + const result: RougelikeCardType[] = await RougelikeCardModel.find({ gameCode }).lean(lean); + return result; + } + + public static async findByCode(gameCode: string, cardCode: string, lean = true) { + const result: RougelikeCardType = await RougelikeCardModel.findOne({ gameCode, cardCode }).lean(lean); + return result; + } + + public static async findByGameCodeAndType(gameCode: string, type: number, lean = true) { + const result: RougelikeCardType[] = await RougelikeCardModel.find({ gameCode, type: { $eq: type }, }).lean(lean); + return result; + + } + + public static async findByGameCodeAndCardCodes(gameCode: string, cardCodes: string[], lean = true) { + const result: RougelikeCardType[] = await RougelikeCardModel.find({ gameCode, cardCode: { $in: cardCodes } }).lean(lean); + return result; + } + + // public static async bulkWriteUpdate(updateArr: { gameCode: string, cardCode: string, charaId: number }[]) { + // if (updateArr.length == 0) return; + // await RougelikeCardModel.bulkWrite(updateArr.map(({ gameCode, cardCode, charaId }) => { + // return { updateOne: { filter: { gameCode, cardCode }, update: { $set: { charaId } }, upsert: true } } + // })) + // } + public static async bulkWriteUpdate(updateArr: RougelikeCardPara[]) { + if (updateArr.length == 0) return; + await RougelikeCardModel.bulkWrite(updateArr.map((param) => { + const { gameCode, cardCode } = param + return { updateOne: { filter: { gameCode, cardCode }, update: { $set: { ...param } }, upsert: true } } + })) + } +}; +export const RougelikeCardModel = getModelForClass(RougelikeCard); +export interface RougelikeCardType extends Pick, keyof RougelikeCard> { }; +export type RougelikeCardPara = Partial; // 将所有字段变成可选项 \ No newline at end of file diff --git a/shared/db/RougelikeChara.ts b/shared/db/RougelikeChara.ts new file mode 100644 index 000000000..f4f0b910c --- /dev/null +++ b/shared/db/RougelikeChara.ts @@ -0,0 +1,126 @@ +import { COUNTER, ROUGELIKE_SKILLTYPE } from '../consts'; +import BaseModel from './BaseModel'; +import { getModelForClass, prop, DocumentType, index } from '@typegoose/typegoose'; +import { CounterModel } from './Counter'; + + +export class Card { + @prop({ required: false }) + index: number; // 卡槽,没有那个index表示没有解锁 + @prop({ required: false }) + cardCode: string; //卡唯一code,为空串表示没安装 + @prop({ required: false }) + cardId: number; // 当为0的时候表示没有装入卡片 +} + +/** + * 每场获得角色(普通角色和高级角色) + */ +@index({ roleId: 1 }) +@index({ gameCode: 1 }) +@index({ gameCode: 1, charaCode: 1 }) + +export default class RougelikeChara extends BaseModel { + @prop({ required: true }) + roleId: string; // 角色id + + @prop({ required: true, default: '' }) + gameCode: string; // 场次唯一code + + @prop({ required: true, default: 0 }) + seqId: number; // 角色卡排序 + + @prop({ required: true, default: '' }) + charaCode: string; // 角色卡唯一id + + @prop({ required: true, default: 0 }) + charaId: number; // 角色卡id + + @prop({ required: true, type: Card, default: [] }) + cards: Card[]; + + @prop({ required: true, default: 0 }) + hp: number; // 当前hp + + @prop({ required: true, default: 0 }) + maxHp: number; // 最大hp + + @prop({ required: true, default: 0 }) + ap: number; // 当前怒气 + + @prop({ required: true, default: 0 }) + shield: number; // 盾 + + @prop({ required: true, default: 0 }) + roundSkill: number; // 玩家选择的回合技能卡 + + @prop({ required: true, default: 0 }) + apSkill: number; // 玩家选择的怒气技能卡 + + @prop({ required: true, default: 0 }) + getLayer: number; // 在哪一层获得的 + + @prop({ required: true, default: 0 }) + getWay: number; // 在做什么的时候获得的 + + + public static async createCharas(updateArr: RougelikeCharaPara[]) { + if (updateArr.length == 0) return []; + let num = await CounterModel.getNewCounterNum(COUNTER.ROUGE_CHARA, updateArr.length); + let resultArr: RougelikeCharaType[] = []; + for(let index = 0; index < updateArr.length; index++) { + let param = updateArr[index]; + let seqId = num - updateArr.length + index + 1; + const { gameCode, charaCode } = param; + let data = await RougelikeCharaModel.findOneAndUpdate({ gameCode, charaCode }, { $set: { ...param, seqId }}, { new: true, upsert: true }).lean(); + if(data) resultArr.push(data) + } + return resultArr + } + + public static async updateByCode(gameCode: string, charaCode: string, params: { $set: RougelikeCharaPara }, lean = true) { + const result: RougelikeCharaType = await RougelikeCharaModel.findOneAndUpdate({ gameCode, charaCode }, params, { new: true }).lean(lean); + return result; + } + + + public static async findByGameCode(gameCode: string, lean = true) { + const result: RougelikeCharaType[] = await RougelikeCharaModel.find({ gameCode }).lean(lean); + return result; + } + + + public static async findByCode(gameCode: string, charaCode: string, lean = true) { + const result: RougelikeCharaType = await RougelikeCharaModel.findOne({ gameCode, charaCode }).lean(lean); + return result; + } + + public static async findByCodes(gameCode: string, charaCodes: string[], lean = true) { + const result: RougelikeCharaType[] = await RougelikeCharaModel.find({ gameCode, charaCode: { $in: charaCodes } }).lean(lean); + return result; + } + + public static async putOnOrOffSkillCard(gameCode: string, charaCode: string, skillType: ROUGELIKE_SKILLTYPE, id: number) { + if (skillType == ROUGELIKE_SKILLTYPE.AP) { + const result: RougelikeCharaType = await RougelikeCharaModel.findOneAndUpdate({ gameCode, charaCode }, { $set: { apSkill: id } }, { new: true }).lean(); + return result; + } else { + const result: RougelikeCharaType = await RougelikeCharaModel.findOneAndUpdate({ gameCode, charaCode }, { $set: { roundSkill: id } }, { new: true }).lean(); + return result; + } + } + + public static async bulkWriteUpdate(updateArr: RougelikeCharaPara[]) { + if (updateArr.length == 0) return; + await RougelikeCharaModel.bulkWrite(updateArr.map((param) => { + delete param._id; + const { gameCode, charaCode } = param + return { updateOne: { filter: { gameCode, charaCode }, update: { $set: { ...param } } } } + })) + } + + +}; +export const RougelikeCharaModel = getModelForClass(RougelikeChara); +export interface RougelikeCharaType extends Pick, keyof RougelikeChara> { }; +export type RougelikeCharaPara = Partial; // 将所有字段变成可选项 \ No newline at end of file diff --git a/shared/db/RougelikeCollection.ts b/shared/db/RougelikeCollection.ts new file mode 100644 index 000000000..24c42dc42 --- /dev/null +++ b/shared/db/RougelikeCollection.ts @@ -0,0 +1,54 @@ +import { COLLECTION_TYPE } from '../consts'; +import BaseModel from './BaseModel'; +import { getModelForClass, prop, DocumentType, index } from '@typegoose/typegoose'; + +@index({ roleId: 1, type: 1, id: 1 }) +export default class RougelikeCollection extends BaseModel { + @prop({ required: true }) + roleId: string; + + @prop({ required: true, default: 0 }) + type: number; + + @prop({ required: true, default: 0 }) + id: number; + + @prop({ required: true, default: 0 }) + num: number; + + @prop({ required: true, default: '' }) + gameCode: string; + + @prop({ required: true, type: Number, default: false }) + received: number[]; // 是否领取奖励 + + public static async addRec(roleId: string, type: number, id: number, gameCode: string, addNum = 1) { + const result: RougelikeCollectionType = await RougelikeCollectionModel.findOneAndUpdate({ roleId, type, id }, { $setOnInsert: { received: [] }, $inc: { num: addNum }, $set: { gameCode } }, { new: true, upsert: true }).lean(); + return result; + } + + public static async findByRoleId(roleId: string, lean = true) { + const result: RougelikeCollectionType[] = await RougelikeCollectionModel.find({ roleId }).lean(lean); + return result; + } + + public static async findByRoleAndId(roleId: string, type: number, id: number) { + const result: RougelikeCollectionType = await RougelikeCollectionModel.findOne({ roleId, type, id: type == COLLECTION_TYPE.PASSIVE_CARD_SUM? 0: id }).lean(); + return result; + } + + public static async receive(roleId: string, type: number, id: number, num = 1) { + if(type == COLLECTION_TYPE.PASSIVE_CARD_SUM) { + const result: RougelikeCollectionType = await RougelikeCollectionModel.findOneAndUpdate({ roleId, type, id: 0, num: { $gte: num } }, { $push: { received: id } }, { new: true }).lean(); + return result; + } else { + const result: RougelikeCollectionType = await RougelikeCollectionModel.findOneAndUpdate({ roleId, type, id }, { $push: { received: id } }, { new: true }).lean(); + return result; + } + } + +} + +export const RougelikeCollectionModel = getModelForClass(RougelikeCollection); +export interface RougelikeCollectionType extends Pick, keyof RougelikeCollection> { }; +export type RougelikeCollectionPara = Partial; // 将所有字段变成可选项 \ No newline at end of file diff --git a/shared/db/RougelikeExtend.ts b/shared/db/RougelikeExtend.ts new file mode 100644 index 000000000..875791074 --- /dev/null +++ b/shared/db/RougelikeExtend.ts @@ -0,0 +1,50 @@ +import BaseModel from './BaseModel'; +import { getModelForClass, prop, DocumentType, index } from '@typegoose/typegoose'; + +@index({ roleId: 1, limitId: 1 }) + + +export class RewardInter { + @prop({ required: true }) + id: number; + @prop({ required: true }) + count: number; + @prop({ required: true }) + expireTime?: number; +} + + +export default class RougelikeExtend extends BaseModel { + @prop({ required: true }) + roleId: string; + + @prop({ required: true, default: 0 }) + limitId: number; // 前置试炼id,只会是已通关 + + @prop({ required: true, type: RewardInter, default: 0 }) + firstReward: RewardInter[]; //首通奖励 + + @prop({ required: true, default: '' }) + gameCode: string; + + + + public static async update(roleId: string, limitId: number, firstReward: RewardInter[], gameCode: string, lean = true) { + const result: RougelikeExtendType = await RougelikeExtendModel.findOneAndUpdate({ roleId, limitId }, { firstReward, gameCode }, { new: true, upsert: true }).lean(lean); + return result; + } + + public static async findByRoleId(roleId: string, lean = true) { + const result: RougelikeExtendType[] = await RougelikeExtendModel.find({ roleId }).lean(lean); + return result; + } + + public static async findByRoleIdAndLimitId(roleId: string, limitId: number, lean = true) { + const result: RougelikeExtendType = await RougelikeExtendModel.findOne({ roleId, limitId }).lean(lean); + return result; + } +} + +export const RougelikeExtendModel = getModelForClass(RougelikeExtend); +export interface RougelikeExtendType extends Pick, keyof RougelikeExtend> { }; +export type RougelikeExtendPara = Partial; // 将所有字段变成可选项 \ No newline at end of file diff --git a/shared/db/RougelikeLayer.ts b/shared/db/RougelikeLayer.ts new file mode 100644 index 000000000..93982e166 --- /dev/null +++ b/shared/db/RougelikeLayer.ts @@ -0,0 +1,91 @@ +import BaseModel from './BaseModel'; +import { getModelForClass, prop, DocumentType, index } from '@typegoose/typegoose'; + + + +export class Node { + @prop({ required: true, default: '' }) + detailCode: string; + + @prop({ required: true, default: 0 }) + index: number; // 索引 + + @prop({ required: true, default: 0 }) + nodeId: number; // 关卡id + + @prop({ required: true, type: Number, default: [] }) + preNodeIndexs: number[]; // 连线的关卡,填上一层节点的索引 + + @prop({ required: true, default: 0 }) + type: number; // 类型 + + @prop({ required: true, default: 0 }) + isChoose: number; // 玩家选择 0-未选择,1-选择 + +} + +/** + * 每场的每层数据 + */ +@index({ roleId: 1 }) +@index({ gameCode: 1 }) +@index({ gameCode: 1, layer: 1 }) +@index({ gameCode: 1, hasPass: 1 }) + +export default class RougelikeLayer extends BaseModel { + @prop({ required: true }) + roleId: string; + + @prop({ required: true, default: '' }) + gameCode: string; // 每场唯一code + + @prop({ required: true, default: 0 }) + layer: number; // 第几层 + + @prop({ required: true, type: Node, default: [], _id: false }) + layerNodes: Node[]; // 地图随机到的各种关卡,用于画图 + + @prop({ required: true, default: false }) + hasPass: boolean; + + + public static async updateByGameCode(gameCode: string, layer: number, params: { $set: RougelikeLayerPara }, lean = true) { + const result: RougelikeLayerType[] = await RougelikeLayerModel.findOneAndUpdate({ gameCode, layer }, params, { new: true, upsert: true }).lean(lean); + return result; + } + + public static async updateByGameCodeAndLayer(gameCode: string, layer: number, detailCode: string, isChoose: number, params?: { $set?: RougelikeLayerPara }, lean = true) { + const result: RougelikeLayerType[] = await RougelikeLayerModel.findOneAndUpdate({ gameCode, layer, 'layerNodes.detailCode': detailCode }, { ...params, 'layerNodes.$.isChoose': isChoose }, { new: true, upsert: true }).lean(lean); + return result; + } + + public static async bulkWriteUpdate(updateArr: { gameCode: string, roleId: string, layer: number, layerNodes: Node[] }[]) { + if (updateArr.length == 0) return; + await RougelikeLayerModel.bulkWrite(updateArr.map(({ gameCode, roleId, layer, layerNodes }) => { + return { updateOne: { filter: { gameCode, roleId, layer }, update: { $set: { layerNodes } }, upsert: true } } + })) + } + + public static async findByGameCode(gameCode: string, lean = true) { + const result: RougelikeLayerType[] = await RougelikeLayerModel.find({ gameCode }).lean(lean); + return result; + } + + public static async findByGameCodeAndLayer(gameCode: string, layer: number, lean = true) { + const result: RougelikeLayerType = await RougelikeLayerModel.findOne({ gameCode, layer }).lean(lean); + return result; + } + + public static async findByGameCodeAndLayers(gameCode: string, layers: number[], lean = true) { + const result: RougelikeLayerType[] = await RougelikeLayerModel.find({ gameCode, layer: { $in: layers } }).lean(lean); + return result; + } + + public static async findByGameCodeAndHasPass(gameCode: string, hasPass: boolean, lean = true) { + const result: RougelikeLayerType[] = await RougelikeLayerModel.find({ gameCode, hasPass }).lean(lean); + return result; + } +}; +export const RougelikeLayerModel = getModelForClass(RougelikeLayer); +export interface RougelikeLayerType extends Pick, keyof RougelikeLayer> { }; +export type RougelikeLayerPara = Partial; // 将所有字段变成可选项 \ No newline at end of file diff --git a/shared/db/RougelikeRecord.ts b/shared/db/RougelikeRecord.ts new file mode 100644 index 000000000..5ae42b134 --- /dev/null +++ b/shared/db/RougelikeRecord.ts @@ -0,0 +1,109 @@ +import BaseModel from './BaseModel'; +import { getModelForClass, prop, DocumentType, index } from '@typegoose/typegoose'; + + +export class RewardInter { + @prop({ required: true }) + id: number; + @prop({ required: true }) + count: number; + @prop({ required: true }) + expireTime?: number; +} + +/** + * 每场获得的圣物&特性卡 + */ +@index({ roleId: 1 }) +@index({ gameCode: 1 }) +@index({ roleId: 1, status: 1 }) + +export default class RougelikeRecord extends BaseModel { + @prop({ required: true }) + roleId: string; // 角色id + + @prop({ required: true, default: '' }) + gameCode: string; // 每场唯一code + + @prop({ required: true, default: 0 }) + grade: number; // 难度 + + @prop({ required: true, default: 0 }) + type: number; // 试炼类型 + + @prop({ required: true, default: 0 }) + authorType: number; // 流派类型 + + @prop({ required: true, default: 0 }) + maxLayer: number; // 总共多少层 + + @prop({ required: true, default: 0 }) + curLayer: number; // 当前在第几层 + + @prop({ required: true, default: 0 }) + status: number; // 0-选角色卡, 1-进行中 2-已达成 + + @prop({ required: true, default: 0 }) + score: number; // 本场获得的积分 + + @prop({ required: true, type: RewardInter, default: [] }) + takeoutReward: RewardInter[]; // 本场获得了的奖励(灵石,记录一下)id&count + + @prop({ required: true, default: false }) + hasReceivedTakeout: boolean; // 是否已带出 + + @prop({ required: true, default: 0 }) + coin: number; // 试炼币 + + @prop({ required: true, default: 0 }) + coinTotal: number; // 试炼币累计值 + + @prop({ required: true, default: 0 }) + techScore: number; // 科技分 + + + + + // public static async updateByGameCode(gameCode: string, params: { $set: RougelikeRecordPara, $inc?: { coin?: number, score?: number, techScore?: number } }, lean = true) { + // let doc = new RougelikeRecordModel(); + // let insert = Object.assign(doc); + // for (let key in params.$inc) { + // if (insert[key] != undefined) delete insert[key]; + // } + // for (let key in params.$set) { + // if (insert[key] != undefined) delete insert[key]; + // } + + // const result: RougelikeRecordType = await RougelikeRecordModel.findOneAndUpdate({ gameCode }, { $setOnInsert: insert, ...params }, { new: true, upsert: true }).lean(lean); + // return result; + // } + + public static async updateByGameCode(gameCode: string, params: { $set?: RougelikeRecordPara, $inc?: { coin?: number, coinTotal?: number, score?: number, techScore?: number } }, lean = true) { + const result: RougelikeRecordType = await RougelikeRecordModel.findOneAndUpdate({ gameCode }, params, { new: true, upsert: true }).lean(lean); + return result; + } + + public static async findByGameCode(gameCode: string, lean = true) { + const result: RougelikeRecordType = await RougelikeRecordModel.findOne({ gameCode }).lean(lean); + return result; + } + + public static async findByRoleIdAndStatus(roleId: string, status: number, lean = true) { + const result: RougelikeRecordType = await RougelikeRecordModel.findOne({ roleId, status: { $lt: status } }).lean(lean); + return result; + } + + public static async takeout(gameCode: string) { + const result: RougelikeRecordType = await RougelikeRecordModel.findOneAndUpdate({ gameCode }, { $set: { hasReceivedTakeout: true } }, { new: true }).lean(); + return result; + } + + public static async costCoin(gameCode: string, costCoin: number) { + const result: RougelikeRecordType = await RougelikeRecordModel.findOneAndUpdate({ gameCode, coin: { $gte: costCoin } }, { $inc: { coin: -costCoin } }, { new: true }).lean(); + return result; + } + +}; +export const RougelikeRecordModel = getModelForClass(RougelikeRecord); +export interface RougelikeRecordType extends Pick, keyof RougelikeRecord> { }; +export type RougelikeRecordPara = Partial; // 将所有字段变成可选项 \ No newline at end of file diff --git a/shared/db/RougelikeRecordDetail.ts b/shared/db/RougelikeRecordDetail.ts new file mode 100644 index 000000000..47fb85e25 --- /dev/null +++ b/shared/db/RougelikeRecordDetail.ts @@ -0,0 +1,254 @@ +import BaseModel from './BaseModel'; +import { getModelForClass, prop, DocumentType, index } from '@typegoose/typegoose'; + + +export class RewardInter { + @prop({ required: true }) + id: number; + @prop({ required: true }) + count: number; + @prop({ required: true }) + expireTime?: number; +} + +export class Quest { + @prop({ required: true, default: 0 }) + randomEventId: number; //问号点:随机事件id + + @prop({ required: true, type: Number, default: [] }) + EventOptions: number[]; // 问号点用:随机事件的选项 +} + +export class RecoveryChara { + @prop({ required: true, default: '' }) + charaCode: string + @prop({ required: true, default: 0 }) + charaId: number; // 恢复的武将 + @prop({ required: true, default: 0 }) + beforeHp: number; // 恢复前的hp + @prop({ required: true, default: 0 }) + afterHp: number; // 恢复后的hp +} + +export class Recruit { + @prop({ required: true, default: 0 }) + index: number; // 索引 + + @prop({ required: true, default: 0 }) + charaId: number; // 角色卡id + + @prop({ required: true, default: 0 }) + status: number; // 0-未领取 1-已领取 +}; + + +export class TrainCard { + @prop({ required: true, default: '' }) + cardCode: string; + @prop({ required: true, default: 0 }) + cardId: number; // 特训的卡牌 + @prop({ required: true, default: 0 }) + beforeLv: number; // 特训前等级 + @prop({ required: true, default: 0 }) + afterLv: number; // 特训后等级 +}; + +export class RestPoint { + @prop({ required: true }) + restType: number; // 休整点用:玩家选择的类型 + + @prop({ required: false }) + recoveryCnt?: number; // 恢复的次数 + + @prop({ required: false, type: RecoveryChara }) + recoveryCharas?: RecoveryChara[];//恢复的数据 + + // @prop({ required: false, type: Recruit }) + // recruits: Recruit[]; // 休整点:提供的随机可供招募的武将 + + @prop({ required: false }) + trainCardCnt?: number; //休整点:特训 特训次数 + + @prop({ required: false, type: TrainCard }) + trainCards?: TrainCard[]; //特训卡 +} + +export class Challenge { + @prop({ required: true, default: 0 }) + challengeId: number; // 挑战id + @prop({ required: true, default: 0 }) + status: number; // 0-未选择 1-已选择 2-已达成 3-已领取 + @prop({ required: true, default: 0 }) + progress: number; // 挑战进度 +}; + +export class Shop { + @prop({ required: true, default: 0 }) + optionIndex: number; //商店物品索引 + @prop({ required: true, default: 0 }) + rewardType: number; //特性卡、圣物类型 + @prop({ required: true, default: 0 }) + rewardId: number; // 特性卡、圣物id + @prop({ required: true, default: 0 }) + optionStatus: number; // 0-未领取 1-已领取 + @prop({ required: true, default: 0 }) + price: number; // 原价 + @prop({ required: true, default: 0 }) + discountPrice: number; //购买时折扣价格 +} + + +export class WeightRecord { + @prop({ required: false, default: 0 }) + originalWight?: number; + @prop({ required: false, default: 0 }) + passiveRedWight?: number; + @prop({ required: false, default: 0 }) + holyRedWight?: number; + @prop({ required: false, default: 0 }) + authorAddWeight?: number; + @prop({ required: false, default: 0 }) + passiveLableNum?: number; + @prop({ required: false, default: 0 }) + passiveLableNumAddWeight?: number; + @prop({ required: false, default: 0 }) + holyLableNum?: number; + @prop({ required: false, default: 0 }) + holyLableNumAddWeight?: number; + @prop({ required: false, default: 0 }) + finalWeight?: number; +} + +export class Option { + @prop({ required: true, default: 0 }) + optionIndex: number; + @prop({ required: true, default: 0 }) + rewardId: number; // 角色卡、特性卡、圣物id + @prop({ required: true, default: 0 }) + optionStatus: number; // 0-未领取 1-已领取 + + @prop({ required: false, type: Number, default: [] }) + passiveCardIds?: number[]; //高级学员自带特性卡 + + @prop({ required: false, type: WeightRecord, default: {} }) + weightRecord?: WeightRecord //用于测试权重记录 +} +export class RewardIn { + @prop({ required: true, default: 0 }) + groupIndex: number; // 组index + @prop({ required: true, default: 0 }) + rewardType: number; // 奖励类型 + @prop({ required: false, type: Option }) + options?: Option[]; // 组内随机的奖励 + @prop({ required: true, default: 0 }) + groupStatus: number; // 组选择 0-未选择 1-已选择 + @prop({ required: true, default: 0 }) + chooseNum: number; // 这一组总共能选的数量3选2 +} + +/** + * 每场的每层选择的关卡的数据 + */ +@index({ roleId: 1 }) +@index({ gameCode: 1 }) +@index({ gameCode: 1, detailCode: 1 }) +@index({ gameCode: 1, layer: 1, nodeId: 1 }) + + + +export default class RougelikeRecordDetail extends BaseModel { + @prop({ required: true }) + roleId: string; //角色id + + @prop({ required: true, default: '' }) + gameCode: string; // 每场唯一code + + @prop({ required: true, default: '' }) + detailCode: string; // 层+关卡id唯一code + + @prop({ required: true, default: 0 }) + layer: number; // 层 + + @prop({ required: true, default: 0 }) + nodeId: number; // 关卡id + + @prop({ required: true, default: 0 }) + nodeType: number; // 关卡类型 普通关、精英关、挑战关、试炼商店、休整点、问号点、boss + + + @prop({ required: false }) + warId?: number; // 关卡id //【普通关、精英关、boss关】 + + @prop({ required: false }) + battleCode?: string; // battleRecord的code + + @prop({ required: true, default: 0 }) + status: number; // 关卡状态 0-默认值 1-成功 2-失败 + + @prop({ required: false, type: Quest, default: [] }) + question?: Quest; // 问好点随机事件 + + @prop({ required: false, default: 0 }) + questType?: number; // 问好点随机type + + @prop({ required: false, type: RestPoint, default: [] }) + restPoints?: RestPoint[]; + + @prop({ required: false, type: Challenge, default: {} }) + challenge?: Challenge; // 【挑战点】 + + @prop({ required: false, type: Shop, default: [] }) + shops?: Shop[]; // 商店内的随机商品 + + @prop({ required: false, type: RewardIn, default: [] }) + rewards?: RewardIn[]; // 通用过关后的奖励,挑战后的奖励 + + @prop({ required: false, default: 0 }) + reRandRewardCnt: number; // 重新随机奖励 + + public static async updateByCode(gameCode: string, detailCode: string, params: { $set: RougelikeRecordDetailPara, $inc?: { reRandRewardCnt: 1 } }, lean = true) { + const result: RougelikeRecordDetailType = await RougelikeRecordDetailModel.findOneAndUpdate({ gameCode, detailCode }, params, { new: true, upsert: true }).lean(lean); + return result; + } + + public static async updateRewardByGroupIndex(gameCode: string, detailCode: string, groupIndex: number, groupStatus: number, options: Option[], params?: { $set: RougelikeRecordDetailPara }, lean = true) { + const result: RougelikeRecordDetailType = await RougelikeRecordDetailModel.findOneAndUpdate({ gameCode, detailCode, 'rewards.groupIndex': groupIndex }, { ...params, 'rewards.$.options': options, 'rewards.$.groupStatus': groupStatus, }, { new: true, upsert: true }).lean(lean); + return result; + } + public static async updateShopByCode(gameCode: string, detailCode: string, optionIndex: number, optionStatus: number, params?: { $set: RougelikeRecordDetailPara }, lean = true) { + const result: RougelikeRecordDetailType = await RougelikeRecordDetailModel.findOneAndUpdate({ gameCode, detailCode, 'shops.optionIndex': optionIndex }, { ...params, 'shops.$.optionStatus': optionStatus }, { new: true, upsert: true }).lean(lean); + return result; + } + + public static async findByGameCode(gameCode: string, lean = true) { + const result: RougelikeRecordDetailType[] = await RougelikeRecordDetailModel.find({ gameCode }).lean(lean); + return result; + } + + public static async findByCode(gameCode: string, detailCode: string, lean = true) { + const result: RougelikeRecordDetailType = await RougelikeRecordDetailModel.findOne({ gameCode, detailCode }).lean(lean); + return result; + } + + public static async findByGameCodeAndLtLayer(gameCode: string, layer: number, lean = true) { + const result: RougelikeRecordDetailType[] = await RougelikeRecordDetailModel.find({ gameCode, layer: { $lt: layer } }).lean(lean); + return result; + } + + public static async findByGameCodeAndLayer(gameCode: string, layer: number, lean = true) { + const result: RougelikeRecordDetailType = await RougelikeRecordDetailModel.findOne({ gameCode, layer }).lean(lean); + return result; + } + + + public static async bulkWriteUpdate(updateArr: RougelikeRecordDetailPara[]) { + if (updateArr.length == 0) return; + await RougelikeRecordDetailModel.bulkWrite(updateArr.map((param) => { + const { gameCode, detailCode } = param + return { updateOne: { filter: { gameCode, detailCode }, update: { $set: { ...param } }, upsert: true } } + })) + } +}; +export const RougelikeRecordDetailModel = getModelForClass(RougelikeRecordDetail); +export interface RougelikeRecordDetailType extends Pick, keyof RougelikeRecordDetail> { }; +export type RougelikeRecordDetailPara = Partial; // 将所有字段变成可选项 \ No newline at end of file diff --git a/shared/db/RougelikeScore.ts b/shared/db/RougelikeScore.ts new file mode 100644 index 000000000..4c0a44002 --- /dev/null +++ b/shared/db/RougelikeScore.ts @@ -0,0 +1,66 @@ +import BaseModel from './BaseModel'; +import { getModelForClass, prop, DocumentType, index } from '@typegoose/typegoose'; + +import { getZeroPointD } from '../pubUtils/timeUtil'; +import { SHOP_REFRESH_TYPE } from '../consts'; + +@index({ roleId: 1, refTime: 1 }) +@index({ refTime: 1, receiveNum: 1 }) +export default class RougelikeScore extends BaseModel { + @prop({ required: true }) + roleId: string; + + @prop({ required: true, default: new Date() }) + refTime: Date; // 每周刷新奖励 + + @prop({ required: true, default: 0 }) + score: number; // 积分 + + @prop({ required: true, type: Number, default: [] }) + received: number[]; // 已领取的id + + @prop({ required: true, default: 0 }) + receiveNum: number; // 已领取的id + + @prop({ required: true, default: 0 }) + takeoutRewardCnt: number; // 额外奖励已领取的次数 + + public static async findByRoleId(roleId: string) { + let refTime = getZeroPointD(SHOP_REFRESH_TYPE.WEEKLY); + let result: RougelikeScoreType = await RougelikeScoreModel.findOne({ roleId, refTime }).lean(); + return result; + } + + public static async incScore(roleId: string, score: number) { + let refTime = getZeroPointD(SHOP_REFRESH_TYPE.WEEKLY); + let result: RougelikeScoreType = await RougelikeScoreModel.findOneAndUpdate({ roleId, refTime }, { $inc: { score }, $setOnInsert: { received: [], receiveNum: 0, takeoutRewardCnt: 0 } }, { new: true, upsert: true }).lean(); + return result; + } + + public static async receive(roleId: string, targetScore: number, index: number) { + let refTime = getZeroPointD(SHOP_REFRESH_TYPE.WEEKLY); + let result: RougelikeScoreType = await RougelikeScoreModel.findOneAndUpdate({ roleId, refTime, score: { $gte: targetScore } }, { $push: { received: index }, $inc: { receiveNum: 1 } }, { new: true }).lean(); + return result; + } + + public static async findByReceiveNum(refTime: Date, maxNum: number) { + let result: RougelikeScoreType[] = await RougelikeScoreModel.find({ refTime, receiveNum: { $lt: maxNum } }).lean(); + return result; + } + + public static async receiveAll(_ids: string[], maxNum: number) { + await RougelikeScoreModel.updateMany({ _id: { $in: _ids } }, { $set: { receiveNum: maxNum } }); + } + + public static async receiveTakeoutReward(roleId: string, maxNum: number) { + let refTime = getZeroPointD(SHOP_REFRESH_TYPE.WEEKLY); + await RougelikeScoreModel.findOneAndUpdate({ roleId, refTime }, { $setOnInsert: { score: 0, received: [], receiveNum: 0, takeoutRewardCnt: 0 } }, { upsert: true }); + let result: RougelikeScoreType = await RougelikeScoreModel.findOneAndUpdate({ roleId, refTime, takeoutRewardCnt: { $lt: maxNum } }, { $inc: { takeoutRewardCnt: 1 } }, { new: true }).lean(); + return result; + } + +} + +export const RougelikeScoreModel = getModelForClass(RougelikeScore); +export interface RougelikeScoreType extends Pick, keyof RougelikeScore> { }; +export type RougelikeScorePara = Partial; // 将所有字段变成可选项 \ No newline at end of file diff --git a/shared/db/RougelikeTech.ts b/shared/db/RougelikeTech.ts new file mode 100644 index 000000000..ef118e687 --- /dev/null +++ b/shared/db/RougelikeTech.ts @@ -0,0 +1,95 @@ +import BaseModel from './BaseModel'; +import { getModelForClass, prop, DocumentType, index } from '@typegoose/typegoose'; + + +export class Circle { + @prop({ required: true, default: 0 }) + techId: number; // 科技点 + + @prop({ required: true, default: 0 }) + circleId: number; // 法阵的索引 + + @prop({ required: true, default: 0 }) + hid: number; // 玩家放上的武将 + + @prop({ required: true, default: 0 }) + ce: number; // 武将的战力 + + constructor(techId: number, circleId: number) { + this.techId = techId; + this.circleId = circleId; + this.hid = 0; + this.ce = 0; + } +} + + +@index({ roleId: 1 }) +export default class RougelikeTech extends BaseModel { + @prop({ required: true }) + roleId: string; + + @prop({ required: true, default: 0 }) + techScore: number; // 获得了的总科技点 + + @prop({ required: true, type: Number, default: [] }) + unlockedTech: number[]; // 科技点id + + @prop({ required: true, type: Circle, _id: false, default: [] }) + circles: Circle[] // 法阵 + + @prop({ required: true, type: Number, default: [] }) + effectIds: number[]; // 科技点id + + // 查询 + public static async findByRoleId(roleId: string, select = '') { + const result: RougelikeTechType = await RougelikeTechModel.findOne({ roleId }).select(select).lean(); + return result; + } + + // 增加 + public static async increaseScore(roleId: string, techScore: number) { + let result: RougelikeTechType = await RougelikeTechModel.findOneAndUpdate({ roleId }, { $setOnInsert: { unlockedTech: [], circles: [] }, $inc: { techScore } }, { new: true, upsert: true }).lean(); + return result; + } + + // 解锁科技点 + public static async unlockTech(roleId: string, techId: number, circleIds: number[]) { + let circles = circleIds.map(circleId => new Circle(techId, circleId)); + let result: RougelikeTechType = await RougelikeTechModel.findOneAndUpdate({ roleId }, { $push: { unlockedTech: techId, circles: { $each: circles } } }, { new: true, upsert: true }).lean(); + return result; + } + + // 法阵放武将 + public static async putOnCircle(roleId: string, circleId: number, hid: number, ce: number) { + if(hid > 0) await this.putOffCircle(roleId, hid); + let result: RougelikeTechType = await RougelikeTechModel.findOneAndUpdate({ roleId, 'circles.circleId': circleId }, { $set: { 'circles.$.hid': hid, 'circles.$.ce': ce } }, { new: true }).lean(); + return result; + } + + // 法阵撤下 + public static async putOffCircle(roleId: string, hid: number) { + let result: RougelikeTechType = await RougelikeTechModel.findOneAndUpdate({ roleId, 'circles.hid': hid }, { $set: { 'circles.$.hid': 0, 'circles.$.ce': 0 } }, { new: true }).lean(); + return result; + } + + public static async updateEffectId(roleId: string, effectIds: number[]) { + let result: RougelikeTechType = await RougelikeTechModel.findOneAndUpdate({ roleId }, { $set: { effectIds } }, { new: true }).lean(); + return result; + } + + // 更新武将战力 + public static async updateCircle(roleId: string, circles: Circle[], effectIds: number[]) { + let result: RougelikeTechType = await RougelikeTechModel.findOneAndUpdate({ roleId }, { $set: { circles, effectIds } }, { new: true }).lean(); + return result; + } + + // 清空科技树 + public static async clearTech(roleId: string) { + await RougelikeTechModel.deleteMany({ roleId }); + } +} + +export const RougelikeTechModel = getModelForClass(RougelikeTech); +export interface RougelikeTechType extends Pick, keyof RougelikeTech> { }; +export type RougelikeTechPara = Partial; // 将所有字段变成可选项 \ No newline at end of file diff --git a/shared/pubUtils/DicRougeCharaCardPlan.ts b/shared/pubUtils/DicRougeCharaCardPlan.ts new file mode 100644 index 000000000..a09b615c3 --- /dev/null +++ b/shared/pubUtils/DicRougeCharaCardPlan.ts @@ -0,0 +1,32 @@ +/** + * 角色卡奖励卡池方案 + */ + +import { FILENAME } from "../consts"; +import { readFileAndParse } from "./util"; + +export interface DicRougeCharaCardPlan { + readonly id: number; + readonly planId: number; // 方案编号 + readonly cardId: number; // 角色卡id + readonly weight: number; // 权重 +} + + +export const dicRougeCharaCardPlan = new Map(); + +export function loadRougeCharaCardPlan() { + dicRougeCharaCardPlan.clear(); + + let arr = readFileAndParse(FILENAME.DIC_ROUGE_CHARA_CARD_PLAN); + + + arr.forEach(o => { + if (!dicRougeCharaCardPlan.has(o.planId)) { + dicRougeCharaCardPlan.set(o.planId, []); + } + dicRougeCharaCardPlan.get(o.planId).push(o); + }); + + arr = undefined; +} \ No newline at end of file diff --git a/shared/pubUtils/DicRougeHolyCardPlan.ts b/shared/pubUtils/DicRougeHolyCardPlan.ts new file mode 100644 index 000000000..0d4c54ba4 --- /dev/null +++ b/shared/pubUtils/DicRougeHolyCardPlan.ts @@ -0,0 +1,32 @@ +/** + * 圣物卡奖励卡池方案 + */ + +import { FILENAME } from "../consts"; +import { readFileAndParse } from "./util"; + + +export interface DicRougeHolyCardPlan { + readonly id: number; + readonly planId: number; // 方案编号 + readonly cardId: number; // 角色卡id + readonly weight: number; // 权重 +} + + +export const dicRougeHolyCardPlan = new Map(); + +export function loadRougeHolyCardPlan() { + dicRougeHolyCardPlan.clear(); + + let arr = readFileAndParse(FILENAME.DIC_ROUGE_HOLY_CARD_PLAN); + + arr.forEach(o => { + if (!dicRougeHolyCardPlan.has(o.planId)) { + dicRougeHolyCardPlan.set(o.planId, []); + } + dicRougeHolyCardPlan.get(o.planId).push(o); + }); + + arr = undefined; +} \ No newline at end of file diff --git a/shared/pubUtils/data.ts b/shared/pubUtils/data.ts index f5a7a2763..2c6f44043 100644 --- a/shared/pubUtils/data.ts +++ b/shared/pubUtils/data.ts @@ -141,6 +141,37 @@ import { dicAuthorsBookMaxProgress, dicAuthorsBookSubs, dicAuthorsBookSubStar, l import { dicAuthorsBookPoint, loadAuthorsBookPoint } from "./dictionary/DicAuthorsBookPoint"; import { dicAuthorsBook, loadAuthorsBook } from './dictionary/DicAuthorsBook'; import { dicBossRankActivePoint, loadBossRankActivePoint } from "./dictionary/DicBossRankActivePoint"; +// import { dicRougeType, loadRougeType } from "./dictionary/DicRougeType"; +import { dicRougeChara, dicRougeCharaByInitial, loadRougeChara } from "./dictionary/DicRougeChara"; +import { dicRougePassiveCardPlan, loadRougePassiveCardPlan } from "./dictionary/DicRougePassiveCardPlan"; +import { dicRougePassiveCard, dicRougePassiveCardByGroup, loadRougePassiveCard } from "./dictionary/DicRougePassiveCard"; +import { dicRougeSkillCard, loadRougeSkillCard } from "./dictionary/DicRougeSkillCard"; +import { dicRougeHolyCard, loadRougeHolyCard } from "./dictionary/DicRougeHolyCard"; +import { dicRougeLayerRewardPlan, loadRougeLayerRewardPlan } from "./dictionary/DicRougeLayerReward"; +import { dicRougeNode, loadRougeNode } from "./dictionary/DicRougeNode"; +import { dicRougeShopPlan, loadRougeShopPlan } from "./dictionary/DicRougeShopPlan"; +import { dicRougeTypeGrade, dicRougeTypeGradeById, loadRougeTypeGrade } from "./dictionary/DicRougeTypeGrade"; +import { dicRougeLayerPlan, dicRougeLayerPlanByPlanId, loadRougeLayerPlan } from "./dictionary/DicRougeLayerPlan"; +import { dicRougeLayerNodeNumPlan, loadRougeLayerNodeNumPlan } from "./dictionary/DicRougeLayerNodeNumPlan"; +import { dicRougeLayerNodePlan, loadRougeLayerNodePlan } from "./dictionary/DicRougeLayerNodePlan"; +import { dicRougeAuthorType, loadRougeAuthorType } from "./dictionary/DicRougeAuthorType"; +import { dicRougeChallenge, loadRougeChallenge } from "./dictionary/DicRougeChallenge"; +import { dicRougeChallengePlan, loadRougeChallengePlan } from "./dictionary/DicRougeChallengePlan"; +import { dicRougeQuestionMarkPlan, loadRougeQuestionMarkPlan } from "./dictionary/DicRougeQuestionMarkPlan"; +import { dicRougeRandomEventPlan, loadRougeRandomEventPlan } from "./dictionary/DicRougeRandomEventPlan"; +import { dicRougeCharaCardPlan, loadRougeCharaCardPlan } from "./DicRougeCharaCardPlan"; +import { dicRougeHolyCardPlan, loadRougeHolyCardPlan } from "./DicRougeHolyCardPlan"; +import { dicRougeEventOption, loadRougeEventOption } from "./dictionary/DicRougeEventOption"; + +import { dicRougeTech, loadRougeTech, dicRougeTechIdByRow } from "./dictionary/DicRougeTech"; +import { dicRougeTechCircle, dicRougeTechCircleByTechId, loadRougeTechCircle } from "./dictionary/DicRougeTechCircle"; +import { dicRougeTechLevel, loadRougeTechLevel } from "./dictionary/DicRougeTechLevel"; +import { dicRougeOptionGroup, loadRougeOptionGroup } from "./dictionary/DicRougeOptionGroup"; +import { dicRougePassiveCollect, loadRougePassiveCollect } from "./dictionary/DicRougePassiveCollect"; +import { dicRougeScoreNum, dicRougeScoreReward, loadRougeScoreReward } from "./dictionary/DicRougeScoreReward"; +import { dicRougeEffect, loadRougeEffect } from "./dictionary/DicRougeEffect"; +import { dicRougeEffectType, loadRougeEffectType } from "./dictionary/DicRougeEffectType"; +import { dicSpiritPlan, loadSpiritPlan } from "./dictionary/DicSpiritPlan"; export const gameData = { daily: dicDaily, @@ -361,6 +392,46 @@ export const gameData = { authorBookPoint: dicAuthorsBookPoint, authorBookMaxProgress: dicAuthorsBookMaxProgress, bossRankActivePoint: dicBossRankActivePoint, + + // rougeType: dicRougeType, //暂时用不到 + rougeAuthorType: dicRougeAuthorType, + rougeTypeGrade: dicRougeTypeGrade, + rougeTypeGradeById: dicRougeTypeGradeById, + rougeLayerPlan: dicRougeLayerPlan, + spiritPlan: dicSpiritPlan, + rougeLayerPlanByPlanId: dicRougeLayerPlanByPlanId, + rougeLayerNodeNumPlan: dicRougeLayerNodeNumPlan, + rougeLayerNodePlan: dicRougeLayerNodePlan, + rougeNode: dicRougeNode, + rougeLayerRewardPlan: dicRougeLayerRewardPlan, + rougeShopPlan: dicRougeShopPlan, + rougeChara: dicRougeChara, + rougeCharaByInitial: dicRougeCharaByInitial, + rougePassiveCard: dicRougePassiveCard, + rougePassiveCardByGroup: dicRougePassiveCardByGroup, + rougeSkillCard: dicRougeSkillCard, + rougeHolyCard: dicRougeHolyCard, + rougeCharaCardPlan: dicRougeCharaCardPlan, + rougePassiveCardPlan: dicRougePassiveCardPlan, + rougeHolyCardPlan: dicRougeHolyCardPlan, + + rougeChallenge: dicRougeChallenge, + rougeChallengePlan: dicRougeChallengePlan, + rougeQuestionMarkPlan: dicRougeQuestionMarkPlan, + rougeRandomEventPlan: dicRougeRandomEventPlan, + rougeEventOption: dicRougeEventOption, + rougeOptionGroup: dicRougeOptionGroup, + rougePassiceCollect: dicRougePassiveCollect, + rougeScoreReward: dicRougeScoreReward, + rougeScoreNum: dicRougeScoreNum, + rougeEffect: dicRougeEffect, + rougeEffectType: dicRougeEffectType, + + rougeTech: dicRougeTech, + rougeTechCircle: dicRougeTechCircle, + rougeCircleByTech: dicRougeTechCircleByTechId, + rougeTechByRow: dicRougeTechIdByRow, + rougeTechLevel: dicRougeTechLevel, }; // 在此提供一些原先在gamedata中提供的方法,以便更方便获取gameData数据 @@ -1298,6 +1369,16 @@ export function getDicServerName(env: string, serverId: number) { return dic.get(serverId); } +export function getRougeEffectTypeKind(effectTypes: number[]) { + let kinds: number[] = []; + for (let effectType of effectTypes) { + let dicEffectType = gameData.rougeEffectType.get(effectType); + if (!dicEffectType) continue; + if (!kinds.includes(dicEffectType.kind)) kinds.push(dicEffectType.kind); + } + return kinds; +} + // 初始加载 function initDatas() { parseDicParam(); @@ -1675,9 +1756,41 @@ function loadDatas(type?: string) { loadAuthorsBookPoint(); if (type == undefined || type == 'loadAuthorsBook') loadAuthorsBook(); - if (type == undefined || type == 'loadBossRankActivePoint') loadBossRankActivePoint(); + + // if (type == undefined || type == 'loadRougeType') loadRougeType();//暂时用不到 + if (type == undefined || type == 'loadRougeAuthorType') loadRougeAuthorType(); + if (type == undefined || type == 'loadRougeTypeGrade') loadRougeTypeGrade(); + if (type == undefined || type == 'loadRougeLayerPlan') loadRougeLayerPlan(); + if (type == undefined || type == 'loadSpiritPlan') loadSpiritPlan(); + if (type == undefined || type == 'loadRougeLayerNodeNumPlan') loadRougeLayerNodeNumPlan(); + if (type == undefined || type == 'loadRougeLayerNodePlan') loadRougeLayerNodePlan(); + if (type == undefined || type == 'loadRougeNode') loadRougeNode(); + if (type == undefined || type == 'loadRougeLayerRewardPlan') loadRougeLayerRewardPlan(); + if (type == undefined || type == 'loadRougeShopPlan') loadRougeShopPlan(); + if (type == undefined || type == 'loadRougeChara') loadRougeChara(); + if (type == undefined || type == 'loadRougePassiveCard') loadRougePassiveCard(); + if (type == undefined || type == 'loadRougeSkillCard') loadRougeSkillCard(); + if (type == undefined || type == 'loadRougeHolyCard') loadRougeHolyCard(); + if (type == undefined || type == 'loadRougeCharaCardPlan') loadRougeCharaCardPlan(); + if (type == undefined || type == 'loadRougePassiveCardPlan') loadRougePassiveCardPlan(); + if (type == undefined || type == 'loadRougeHolyCardPlan') loadRougeHolyCardPlan(); + if (type == undefined || type === 'loadRougeChallenge') loadRougeChallenge(); + if (type == undefined || type == 'loadRougeChallengePlan') loadRougeChallengePlan(); + if (type == undefined || type == 'loadRougeQuestionMarkPlan') loadRougeQuestionMarkPlan(); + if (type == undefined || type == 'loadRougeRandomEventPlan') loadRougeRandomEventPlan(); + if (type == undefined || type == 'loadRougeEventOption') loadRougeEventOption(); + if (type == undefined || type == 'loadRougeOptionGroup') loadRougeOptionGroup(); + if (type == undefined || type == 'loadRougePassiveCollect') loadRougePassiveCollect(); + if (type == undefined || type == 'loadRougeScoreReward') loadRougeScoreReward(); + if (type == undefined || type == 'loadRougeEffect') loadRougeEffect(); + if (type == undefined || type == 'loadRougeEffectType') loadRougeEffectType(); + + if (type == undefined || type == 'loadRougeTech') loadRougeTech(); + if (type == undefined || type == 'loadRougeTechCircle') loadRougeTechCircle(); + if (type == undefined || type == 'loadRougeTechLevel') loadRougeTechLevel(); + console.log('loadDatas type: ', type || 'all'); } diff --git a/shared/pubUtils/dicParam.ts b/shared/pubUtils/dicParam.ts index 1ded13b3c..04392a3ec 100644 --- a/shared/pubUtils/dicParam.ts +++ b/shared/pubUtils/dicParam.ts @@ -365,9 +365,14 @@ export const ACTIVITY = { ACTIVITY_CATCH_FISH_PROBABILITY: '1&45|2&40|3&15', // 新出现的鱼是什么类型的概率 type&概率(type=1:小黑鱼 type=2:大黑鱼 type=3:锦鲤) ACTIVITY_WATERCHANNEL_SCORE: '1&30|10&20|15&15|30&10', // 水渠小游戏的得分规则(min(含)&socre)区间下限至下一档之间的得分 ACTIVITY_FLAPPY_BIRD_COUNTDOWN: 60, // 飞鸟小游戏倒计时(s) - ACTIVITY_FLAPPY_BIRD_SCORE: 1, // 飞过每根柱子的得分 + ACTIVITY_FLAPPY_BIRD_SCORE: 2, // 飞过每根柱子的得分 ACTIVITY_LAYER_CAKE_COUNTDOWN: 60, // 叠糕小游戏倒计时(s) - ACTIVITY_LAYER_CAKE_SCORE: 1, // 每叠一层糕点的得分 + ACTIVITY_LAYER_CAKE_SCORE: 2, // 每叠一层糕点的得分 + ACTIVITY_RABBIT_FINDING_TIME: 20, // 大家来找茬每轮总次数 + ACTIVITY_RABBIT_PUSH_BOX_TIME: 60, // 推箱子小游戏倒计时 + ACTIVITY_RABBIT_PUSH_BOX_SCORE: 2, // 到达指定位置获得积分 + ACTIVITY_BEATING_TOWER: 15, // 敲塔小游戏总层数 + ACTIVITY_BEATING_SCORE: 2, // 敲塔小游戏成功敲掉一层所加分数 }; export const BATTLE_PREPARING = { CHANGE_ORDER_OPEN: 109, // 出兵界面行动顺序按钮开启关卡 @@ -454,3 +459,18 @@ export const PLATFORM_CONFIG = { export const COMMUNICATION = { COMMUNICATION_FOLLOW: '31002&100|22001&2', // 关注公众号奖励 }; +export const ROUGELIKE = { + INIT_RANDOM_CHARA_COUNT: 3, // 初始需要随机的角色卡数量 + AUTHOR_ADD_RANDOM: 10, // 选择流派后该流派百家特性卡增加的权重X + PASSIVE_LABLE_NUM: 3, // 获得X张同passiveLable的特性卡时,该label的特性卡权重增加 + PASSIVE_LABLE_ADD_RANDOM: 5, // 获得N张同passiveLable的特性卡时,该label的特性卡权重增加X + HOLY_LABLE_NUM: 3, // 获得X张同hollyLable的特性卡时,该label的圣物权重增加 + HOLY_LABLE_ADD_RANDOM: 5, // 获得N张同hollyLable的特性卡时,该label的圣物权重增加X + RECOVERY_RATIO: 50, // 休整点恢复系数,填整数,百分比 + TAKEOUT_REWARD_CNT: 3, // 每周可领取的额外奖励次数 + SPIRIT_RANDOM_NUM: 5, // 额外带出奖励的英灵随机数量 + SELECT_PASSIVECARD_WEIGHT: 30, // 选择的特性卡后该特性卡权重减少比例(%) + RANDOM_PASSIVECARD_WEIGHT: 10, // 随机出的特性卡后该特性卡权重减少比例(%) + SELECT_HOLLYCARD_WEIGHT: 30, // 选择的圣物卡后该特性卡权重减少比例(%) + RANDOM_HOLLYCARD_WEIGHT: 10, // 随机出的圣物卡后该特性卡权重减少比例(%) +}; diff --git a/shared/pubUtils/dictionary/DicHero.ts b/shared/pubUtils/dictionary/DicHero.ts index 78ff3cf05..893ab7046 100644 --- a/shared/pubUtils/dictionary/DicHero.ts +++ b/shared/pubUtils/dictionary/DicHero.ts @@ -41,10 +41,12 @@ export interface DicHero { readonly urType: number; // 武将id readonly actorId: number; + + readonly hp: number; } type KeysEnum = { [P in keyof Required]: true }; -const DicHeroKeys: KeysEnum = {heroId: true, name: true, quality: true, camp: true, jobClass: true, jobid: true, skill: true, pieceId: true, initialStar: true, initialColorStar: true, pieceCount: true, baseAbilityArr: true, baseAbilityUpArr: true, initialSkin: true, recruit: true, face_id: true, talentId: true, urType: true, actorId: true }; +const DicHeroKeys: KeysEnum = {heroId: true, name: true, quality: true, camp: true, jobClass: true, jobid: true, skill: true, pieceId: true, initialStar: true, initialColorStar: true, pieceCount: true, baseAbilityArr: true, baseAbilityUpArr: true, initialSkin: true, recruit: true, face_id: true, talentId: true, urType: true, actorId: true, hp: true }; export const dicHero = new Map(); export function loadHero() { dicHero.clear(); diff --git a/shared/pubUtils/dictionary/DicRougeAuthorType.ts b/shared/pubUtils/dictionary/DicRougeAuthorType.ts new file mode 100644 index 000000000..cb87564b9 --- /dev/null +++ b/shared/pubUtils/dictionary/DicRougeAuthorType.ts @@ -0,0 +1,25 @@ +/** + * 流派类型配置表 + */ + +import { readFileAndParse } from '../util' +import { FILENAME } from '../../consts' + +export interface DicRougeAuthorType { + readonly id: number; + readonly authorType: number; // 流派类型 + // readonly holyCard: number; // 圣物奖励 +} + + +export const dicRougeAuthorType = new Map(); +export function loadRougeAuthorType() { + dicRougeAuthorType.clear(); + + let arr = readFileAndParse(FILENAME.DIC_ROUGE_AUTHOR_TYPE); + + arr.forEach(o => { + dicRougeAuthorType.set(o.authorType, o); + }); + arr = undefined; +} \ No newline at end of file diff --git a/shared/pubUtils/dictionary/DicRougeChallenge.ts b/shared/pubUtils/dictionary/DicRougeChallenge.ts new file mode 100644 index 000000000..00c272629 --- /dev/null +++ b/shared/pubUtils/dictionary/DicRougeChallenge.ts @@ -0,0 +1,28 @@ +/** + * 挑战类型配置表 + */ + +import { parseNumberList, readFileAndParse } from '../util' +import { FILENAME } from '../../consts' + +export interface DicRougeChallenge { + readonly id: number; + readonly challengeId: number; // 挑战 + readonly type: number; // 挑战的类型,具体是啥需要一个文档 + readonly effectId: number[]; // 挑战达成的参数 + readonly condition: number; // 客户端显示的 x/n,里面的n +} + + +export const dicRougeChallenge = new Map(); +export function loadRougeChallenge() { + dicRougeChallenge.clear(); + + let arr = readFileAndParse(FILENAME.DIC_ROUGE_CHALLANGE); + + arr.forEach(o => { + o.effectId = parseNumberList(o.effectId); + dicRougeChallenge.set(o.challengeId, o); + }); + arr = undefined; +} \ No newline at end of file diff --git a/shared/pubUtils/dictionary/DicRougeChallengePlan.ts b/shared/pubUtils/dictionary/DicRougeChallengePlan.ts new file mode 100644 index 000000000..4240cdb9f --- /dev/null +++ b/shared/pubUtils/dictionary/DicRougeChallengePlan.ts @@ -0,0 +1,28 @@ +/** + * 挑战关随机配置表 + */ + +import { readFileAndParse } from '../util' +import { FILENAME } from '../../consts' + +export interface DicRougeChallengePlan { + readonly id: number; + readonly planId: number; + readonly challengeId: number; // 挑战关卡的id dicRougeChallenge的id + readonly weight: number; // 权重 +} + +export const dicRougeChallengePlan = new Map(); +export function loadRougeChallengePlan() { + dicRougeChallengePlan.clear(); + + let arr = readFileAndParse(FILENAME.DIC_ROUGE_CHALLANGE_PLAN); + + arr.forEach(o => { + if (!dicRougeChallengePlan.has(o.planId)) { + dicRougeChallengePlan.set(o.planId, []); + } + dicRougeChallengePlan.get(o.planId).push(o); + }); + arr = undefined; +} \ No newline at end of file diff --git a/shared/pubUtils/dictionary/DicRougeChara.ts b/shared/pubUtils/dictionary/DicRougeChara.ts new file mode 100644 index 000000000..663425692 --- /dev/null +++ b/shared/pubUtils/dictionary/DicRougeChara.ts @@ -0,0 +1,39 @@ +/** + * 角色卡配置表 + */ + +import { readFileAndParse } from '../util' +import { FILENAME } from '../../consts' + +export interface DicRougeChara { + readonly id: number; + readonly heroId: number; // 角色id + readonly charaType: number; // 1-普通卡 2-高级卡 + readonly initial: number; // 是否能被初始随机到 + readonly initCardCnt: number; // 初始获得多少特性卡装在身上 + readonly recruitConsume: number; // 试炼币购买 + +} + + +export const dicRougeChara = new Map(); +export const dicRougeCharaByInitial = new Map(); + +export function loadRougeChara() { + dicRougeChara.clear(); + dicRougeCharaByInitial.clear(); + + + let arr = readFileAndParse(FILENAME.DIC_ROUGE_CHARA); + + arr.forEach(o => { + dicRougeChara.set(o.id, o); + + if (!dicRougeCharaByInitial.has(o.initial)) { + dicRougeCharaByInitial.set(o.initial, []); + } + dicRougeCharaByInitial.get(o.initial).push(o); + + }); + arr = undefined; +} \ No newline at end of file diff --git a/shared/pubUtils/dictionary/DicRougeEffect.ts b/shared/pubUtils/dictionary/DicRougeEffect.ts new file mode 100644 index 000000000..dcc813cb4 --- /dev/null +++ b/shared/pubUtils/dictionary/DicRougeEffect.ts @@ -0,0 +1,47 @@ +/** + * 圣物效果配置表 + */ + +import { decodeArrayListStr, readFileAndParse } from '../util' +import { ABI_TYPE, FILENAME, ROUGE_EFFECT_TYPE } from '../../consts' + +export interface DicRougeEffect { + readonly id: number; + readonly effectId: number; + readonly effectType: number; // 效果的类型,具体什么type写个文档 + readonly effectParam: number[]; // 效果的具体参数,不同的type对这个param的解释不同需要分别定义,用&连接 +} + + +export const dicRougeEffect = new Map(); +export function loadRougeEffect() { + dicRougeEffect.clear(); + + let arr = readFileAndParse(FILENAME.DIC_ROUGE_EFFECT); + + arr.forEach(o => { + o.effectParam = parseEffectParam(o.effectType, o.effectParam); + // console.log('effectParam', o.effectParam) + // if (!dicRougeEffect.has(o.effectType)) { + // dicRougeEffect.set(o.effectType, []); + // } + // dicRougeEffect.get(o.effectType).push(o); + dicRougeEffect.set(o.effectId, o); + }); + arr = undefined; +} + +function parseEffectParam(effectType: number, str: string) { + let arr = decodeArrayListStr(str); + switch(effectType) { + case ROUGE_EFFECT_TYPE.HOLY_CHARA_MAIN_ATTR_UP: + case ROUGE_EFFECT_TYPE.HOLY_CHARA_MAIN_ATTR_UP: + case ROUGE_EFFECT_TYPE.HOLY_CHARA_MAIN_ATTR_UP: + case ROUGE_EFFECT_TYPE.HOLY_CHARA_MAIN_ATTR_UP: + { + arr = arr.filter(cur => cur[0] == ABI_TYPE.ABI_HP.toString()); + break; + } + } + return arr.length > 0? arr[0].map(cur => parseFloat(cur)): []; +} diff --git a/shared/pubUtils/dictionary/DicRougeEffectType.ts b/shared/pubUtils/dictionary/DicRougeEffectType.ts new file mode 100644 index 000000000..80000e762 --- /dev/null +++ b/shared/pubUtils/dictionary/DicRougeEffectType.ts @@ -0,0 +1,32 @@ +/** + * 圣物效果配置表 + */ + +import { readFileAndParse } from '../util' +import { FILENAME } from '../../consts' +const _ = require('lodash'); + +export interface DicRougeEffectType { + readonly id: number; + readonly effectType: number; // 效果的类型,具体什么type写个文档 + readonly kind: number; +} + +type KeysEnum = { [P in keyof Required]: true }; +const DicRougeEffectTypeKeys: KeysEnum = { + id: true, + effectType: true, + kind: true, +} + +export const dicRougeEffectType = new Map(); +export function loadRougeEffectType() { + dicRougeEffectType.clear(); + + let arr = readFileAndParse(FILENAME.DIC_ROUGE_EFFECT_TYPE); + + arr.forEach(o => { + dicRougeEffectType.set(o.effectType, _.pick(o, Object.keys(DicRougeEffectTypeKeys))); + }); + arr = undefined; +} diff --git a/shared/pubUtils/dictionary/DicRougeEventOption.ts b/shared/pubUtils/dictionary/DicRougeEventOption.ts new file mode 100644 index 000000000..5b85d4ac0 --- /dev/null +++ b/shared/pubUtils/dictionary/DicRougeEventOption.ts @@ -0,0 +1,29 @@ +/** + * 随机事件配置表 + */ + +import { readFileAndParse } from '../util' +import { FILENAME } from '../../consts' + +export interface DicRougeEventOption { + readonly id: number; + readonly randomEventId: number; // 事件id + readonly optionGroup: number; // 一组选项的组id + readonly title: string //标题 + readonly index: number; // 选项在他这组里的索引 + readonly text: string; // 选项 + readonly afterGroup: number; // 选了这个选项之后的选项组 + readonly holyCardPlan: number; // 奖励的圣物 +} +export const dicRougeEventOption = new Map(); +export function loadRougeEventOption() { + dicRougeEventOption.clear(); + + let arr = readFileAndParse(FILENAME.DIC_ROUGE_EVENT_OPTION); + + arr.forEach(o => { + + dicRougeEventOption.set(o.id, o); + }); + arr = undefined; +} \ No newline at end of file diff --git a/shared/pubUtils/dictionary/DicRougeHolyCard.ts b/shared/pubUtils/dictionary/DicRougeHolyCard.ts new file mode 100644 index 000000000..038704d4f --- /dev/null +++ b/shared/pubUtils/dictionary/DicRougeHolyCard.ts @@ -0,0 +1,38 @@ +/** + * 圣物 + */ + +import { parseGoodStr, parseNumberList, readFileAndParse } from '../util' +import { FILENAME } from '../../consts' +import { RewardInter } from '../interface'; + +export interface DicRougeHolyCard { + readonly id: number; + readonly name: string; + readonly imageName: string; + readonly quality: number; // 品质 + readonly authorType: number; // 所属百家流派 + readonly skillId: number; // ?待解释,可能是战场技能 + readonly content: string; + readonly useCount: number; + readonly label: number; // 当获得同标签的百家特性卡达到X个,同标签的圣物获得概率增加 + readonly purchasePrice: number; // 试炼币购买 + readonly collectReward: RewardInter[]; + readonly effectId: number[]; + readonly getLimit: number; //获取上限 +} + +export const dicRougeHolyCard = new Map(); +export function loadRougeHolyCard() { + dicRougeHolyCard.clear(); + + let arr = readFileAndParse(FILENAME.DIC_ROUGE_HOLY_CARD); + + arr.forEach(o => { + o.collectReward = parseGoodStr(o.collectReward); + o.effectId = parseNumberList(o.effectId); + + dicRougeHolyCard.set(o.id, o); + }); + arr = undefined; +} \ No newline at end of file diff --git a/shared/pubUtils/dictionary/DicRougeLayerNodeNumPlan.ts b/shared/pubUtils/dictionary/DicRougeLayerNodeNumPlan.ts new file mode 100644 index 000000000..fe37ad219 --- /dev/null +++ b/shared/pubUtils/dictionary/DicRougeLayerNodeNumPlan.ts @@ -0,0 +1,28 @@ +/** + * 每层可以随机的点的数量的池子 + */ + +import { readFileAndParse } from '../util' +import { FILENAME } from '../../consts' + +export interface DicRougeLayerNodeNumPlan { + readonly id: number; + readonly nodeNumPlanId: number; // 随机方案,dicRougeLayer的nodeNumPlan引用 + readonly nodeNum: number; // 节点数量 + readonly weight: number; // 他的权重 +} +export const dicRougeLayerNodeNumPlan = new Map(); + +export function loadRougeLayerNodeNumPlan() { + dicRougeLayerNodeNumPlan.clear(); + + let arr = readFileAndParse(FILENAME.DIC_ROUGE_LAYER_NODE_NUM_PLAN); + + arr.forEach(o => { + + if (!dicRougeLayerNodeNumPlan.get(o.nodeNumPlanId)) dicRougeLayerNodeNumPlan.set(o.nodeNumPlanId, []); + dicRougeLayerNodeNumPlan.get(o.nodeNumPlanId).push(o); + + }); + arr = undefined; +} \ No newline at end of file diff --git a/shared/pubUtils/dictionary/DicRougeLayerNodePlan.ts b/shared/pubUtils/dictionary/DicRougeLayerNodePlan.ts new file mode 100644 index 000000000..ae1329f66 --- /dev/null +++ b/shared/pubUtils/dictionary/DicRougeLayerNodePlan.ts @@ -0,0 +1,30 @@ +/** + * 试炼难度配置表 + */ + +import { readFileAndParse } from '../util' +import { FILENAME } from '../../consts' + +export interface DicRougeLayerNodePlan { + readonly id: number; + readonly nodePlanId: number; // 随机方案,dicRougeLayer的nodePlan引用 + readonly nodeId: number; // 节点的类型,引用的是 dicRougeNode 表的nodeId + readonly weight: number; +} +// export const dicRougeLayerNodePlan = new Map(); +export const dicRougeLayerNodePlan = new Map(); + +export function loadRougeLayerNodePlan() { + + dicRougeLayerNodePlan.clear(); + + let arr = readFileAndParse(FILENAME.DIC_ROUGE_LAYER_NODE_PLAN); + + arr.forEach(o => { + + if (!dicRougeLayerNodePlan.get(o.nodePlanId)) dicRougeLayerNodePlan.set(o.nodePlanId, []); + dicRougeLayerNodePlan.get(o.nodePlanId).push(o); + + }); + arr = undefined; +} \ No newline at end of file diff --git a/shared/pubUtils/dictionary/DicRougeLayerPlan.ts b/shared/pubUtils/dictionary/DicRougeLayerPlan.ts new file mode 100644 index 000000000..ef1ffe0f9 --- /dev/null +++ b/shared/pubUtils/dictionary/DicRougeLayerPlan.ts @@ -0,0 +1,39 @@ +/** + * 试炼难度配置表 + */ + +import { parseGoodStr, readFileAndParse } from '../util' +import { FILENAME } from '../../consts' +import { RewardInter } from '../interface'; + +export interface DicRougeLayerPlan { + readonly id: number; + readonly planId: number; // 试炼类型 + readonly layerIndex: number; // 层 + readonly nodeNumPlan: number; // 每层可以随机的点的数量 + readonly nodePlan: number; // 每层可以随机到的节点 + readonly rewardPlan: number; // 每层可以赠送的奖励 + readonly shopPlan: number; // 该层可以随机到的商店方案 + readonly takeoutReward: RewardInter[]; //额外奖励 + readonly spiritPlan: number; //英灵随机奖励 +} +export const dicRougeLayerPlan = new Map(); +export const dicRougeLayerPlanByPlanId = new Map(); + +export function loadRougeLayerPlan() { + dicRougeLayerPlan.clear(); + dicRougeLayerPlanByPlanId.clear(); + + let arr = readFileAndParse(FILENAME.DIC_ROUGE_LAYER_PLAN); + + arr.forEach(o => { + + o.takeoutReward = parseGoodStr(o.takeoutReward); + dicRougeLayerPlan.set(o.planId + '_' + o.layerIndex, o); + + if (!dicRougeLayerPlanByPlanId.get(o.planId)) dicRougeLayerPlanByPlanId.set(o.planId, []); + dicRougeLayerPlanByPlanId.get(o.planId).push(o); + + }); + arr = undefined; +} \ No newline at end of file diff --git a/shared/pubUtils/dictionary/DicRougeLayerReward.ts b/shared/pubUtils/dictionary/DicRougeLayerReward.ts new file mode 100644 index 000000000..65bfa5f6c --- /dev/null +++ b/shared/pubUtils/dictionary/DicRougeLayerReward.ts @@ -0,0 +1,41 @@ +/** + * 每层可随机到的奖励 + */ + +import { parseGoodStr, readFileAndParse } from '../util' +import { FILENAME } from '../../consts' + +export interface DicRougeLayerRewardPlan { + readonly id: number; + readonly planId: number; + readonly nodeType: number; // 精英关、普通关、boss关、挑战、随机事件、休整点 + readonly charaPlan: number; // 角色卡 + readonly charaRandomNum: number; // 玩家可以随机出多少奖励 + readonly charaChooseNum: number; // 玩家可以从随机出的里选择多少奖励 + readonly charaPassivePlan: number; // 高级卡自带的特性卡 + readonly passiveCardPlan: number; // 特性卡 + readonly passiveCardRandomNum: number; // 玩家可以随机出多少奖励 + readonly passiveCardChooseNum: number; // 玩家可以从随机出的里选择多少奖励 + readonly holyCardPlan: number; // 圣物 + readonly holyCardRandomNum: number; // 玩家可以随机出多少奖励 + readonly holyCardChooseNum: number; // 玩家可以从随机出的里选择多少奖励 + readonly coin: number; // 试炼币 + readonly score: number; // 学分 + readonly tech: number; // 科技点 + // readonly goods: RewardInter[]; // 灵石 物品表id&count +} + + +export const dicRougeLayerRewardPlan = new Map(); +export function loadRougeLayerRewardPlan() { + dicRougeLayerRewardPlan.clear(); + + let arr = readFileAndParse(FILENAME.DIC_ROUGE_LAYER_REWARD_PLAN); + + arr.forEach(o => { + o.goods = parseGoodStr(o.goods); + dicRougeLayerRewardPlan.set(o.planId + '_' + o.nodeType, o); + + }); + arr = undefined; +} \ No newline at end of file diff --git a/shared/pubUtils/dictionary/DicRougeNode.ts b/shared/pubUtils/dictionary/DicRougeNode.ts new file mode 100644 index 000000000..dff969392 --- /dev/null +++ b/shared/pubUtils/dictionary/DicRougeNode.ts @@ -0,0 +1,26 @@ +/** + * 关卡配置表 + */ + +import { readFileAndParse } from '../util' +import { FILENAME } from '../../consts' + +export interface DicRougeNode { + readonly id: number; + readonly nodeId: number; // 关卡id + readonly nodeType: number; // 试炼类型 普通关、精英关、boss关、挑战点、问号点、休整点、商店 + readonly param: number; // 普通关、精英关、boss关的对应关卡id +} + + +export const dicRougeNode = new Map(); +export function loadRougeNode() { + dicRougeNode.clear(); + + let arr = readFileAndParse(FILENAME.DIC_ROUGE_NODE); + + arr.forEach(o => { + dicRougeNode.set(o.nodeId, o); + }); + arr = undefined; +} \ No newline at end of file diff --git a/shared/pubUtils/dictionary/DicRougeOptionGroup.ts b/shared/pubUtils/dictionary/DicRougeOptionGroup.ts new file mode 100644 index 000000000..7d8cb8a31 --- /dev/null +++ b/shared/pubUtils/dictionary/DicRougeOptionGroup.ts @@ -0,0 +1,25 @@ +/** + * 随机事件图鉴 + */ + +import { parseGoodStr, readFileAndParse } from '../util' +import { FILENAME } from '../../consts' +import { RewardInter } from '../interface'; + +export interface DicRougeOptionGroup { + readonly id: number; + readonly optionGroup: number; // 一组选项的组id + readonly collectReward: RewardInter[]; // 图鉴收集奖励(同Group只领取一次奖励) +} +export const dicRougeOptionGroup = new Map(); +export function loadRougeOptionGroup() { + dicRougeOptionGroup.clear(); + + let arr = readFileAndParse(FILENAME.DIC_ROUGE_OPTION_GROUP); + + arr.forEach(o => { + o.collectReward = parseGoodStr(o.collectReward); + dicRougeOptionGroup.set(o.optionGroup, o); + }); + arr = undefined; +} \ No newline at end of file diff --git a/shared/pubUtils/dictionary/DicRougePassiveCard.ts b/shared/pubUtils/dictionary/DicRougePassiveCard.ts new file mode 100644 index 000000000..326f0ddb3 --- /dev/null +++ b/shared/pubUtils/dictionary/DicRougePassiveCard.ts @@ -0,0 +1,44 @@ +/** + * 特性卡 + */ + +import { parseNumberList, readFileAndParse } from '../util' +import { FILENAME } from '../../consts' + +export interface DicRougePassiveCard { + readonly id: number; + readonly group: number; // 同样的group之间才可以特训 + readonly lv: number; // 特训等级,可以初始获得不同等级 + readonly name: string; + readonly quality: number; // 品质 + readonly authorType: number; // 所属百家流派,在该流派试炼中出现概率提升 + readonly seid: string; // 纯战场、服务器不读 + readonly content: string; + readonly passiveLabel: number[]; // 关联其他特性卡,获得这个特性卡之后他relationId的概率提升 + readonly holyLabel: number[]; // 关联圣物,获得这个特性卡之后圣物概率提升 + readonly strengthConsume: number; // 强化消耗 + readonly price: number; // 试炼币购买 + readonly getLimit: number; //获取上限 +} + +export const dicRougePassiveCard = new Map(); +export const dicRougePassiveCardByGroup = new Map(); +export function loadRougePassiveCard() { + dicRougePassiveCard.clear(); + dicRougePassiveCardByGroup.clear(); + + let arr = readFileAndParse(FILENAME.DIC_ROUGE_PASSIVE_CARD); + + + arr.forEach(o => { + o.passiveLabel = parseNumberList(o.passiveLabel); + o.holyLabel = parseNumberList(o.holyLabel); + + dicRougePassiveCard.set(o.id, o); + if (!dicRougePassiveCardByGroup.has(o.group)) { + dicRougePassiveCardByGroup.set(o.group, []); + } + dicRougePassiveCardByGroup.get(o.group).push(o); + }); + arr = undefined; +} \ No newline at end of file diff --git a/shared/pubUtils/dictionary/DicRougePassiveCardPlan.ts b/shared/pubUtils/dictionary/DicRougePassiveCardPlan.ts new file mode 100644 index 000000000..9544cfc6d --- /dev/null +++ b/shared/pubUtils/dictionary/DicRougePassiveCardPlan.ts @@ -0,0 +1,32 @@ +/** + * 特性卡奖励卡池方案 + */ + +import { readFileAndParse } from '../util' +import { FILENAME } from '../../consts' + +export interface DicRougePassiveCardPlan { + readonly id: number; + readonly planId: number; // 方案编号 + readonly cardId: number; // 角色卡id + readonly weight: number; // 权重 +} + + +export const dicRougePassiveCardPlan = new Map(); + +export function loadRougePassiveCardPlan() { + dicRougePassiveCardPlan.clear(); + + let arr = readFileAndParse(FILENAME.DIC_ROUGE_PASSIVE_CARD_PLAN); + + + arr.forEach(o => { + if (!dicRougePassiveCardPlan.has(o.planId)) { + dicRougePassiveCardPlan.set(o.planId, []); + } + dicRougePassiveCardPlan.get(o.planId).push(o); + }); + + arr = undefined; +} \ No newline at end of file diff --git a/shared/pubUtils/dictionary/DicRougePassiveCollect.ts b/shared/pubUtils/dictionary/DicRougePassiveCollect.ts new file mode 100644 index 000000000..99145fb84 --- /dev/null +++ b/shared/pubUtils/dictionary/DicRougePassiveCollect.ts @@ -0,0 +1,27 @@ +/** + * 特性卡 + */ + +import { parseGoodStr, readFileAndParse } from '../util' +import { FILENAME } from '../../consts' +import { RewardInter } from '../interface'; + +export interface DicRougePassiveCollect { + readonly id: number; + readonly num: number; // 收集数量 + readonly collectReward: RewardInter[]; // 奖励 +} + +export const dicRougePassiveCollect = new Map(); +export function loadRougePassiveCollect() { + dicRougePassiveCollect.clear(); + + let arr = readFileAndParse(FILENAME.DIC_ROUGE_PASSIVE_COLLECT); + + + arr.forEach(o => { + o.collectReward = parseGoodStr(o.reward); + dicRougePassiveCollect.set(o.id, o); + }); + arr = undefined; +} \ No newline at end of file diff --git a/shared/pubUtils/dictionary/DicRougeQuestionMarkPlan.ts b/shared/pubUtils/dictionary/DicRougeQuestionMarkPlan.ts new file mode 100644 index 000000000..5fe3f804d --- /dev/null +++ b/shared/pubUtils/dictionary/DicRougeQuestionMarkPlan.ts @@ -0,0 +1,32 @@ +/** + * 问好点随机配置表 + */ + +import { readFileAndParse } from '../util' +import { FILENAME } from '../../consts' + + +export interface DicRougeQuestionMarkPlan { + readonly id: number; + readonly questionMarkPlanId: number; // 问号点随机方案编号 + readonly questionMarkIndex: number; // 方案内node编号 + readonly nodeType: number; // 关卡类型 普通关、精英关、boss关、挑战点问号点、休整点、商店 + readonly param: number; // 普通关、精英关对应的warId + readonly weight: number; //随机权重 +} + +export const dicRougeQuestionMarkPlan = new Map(); + +export function loadRougeQuestionMarkPlan() { + dicRougeQuestionMarkPlan.clear(); + + let arr = readFileAndParse(FILENAME.DIC_ROUGE_QUESTION_MARK_PLAN); + + arr.forEach(o => { + + if (!dicRougeQuestionMarkPlan.get(o.questionMarkPlanId)) dicRougeQuestionMarkPlan.set(o.questionMarkPlanId, []); + dicRougeQuestionMarkPlan.get(o.questionMarkPlanId).push(o); + + }); + arr = undefined; +} \ No newline at end of file diff --git a/shared/pubUtils/dictionary/DicRougeRandomEventPlan.ts b/shared/pubUtils/dictionary/DicRougeRandomEventPlan.ts new file mode 100644 index 000000000..f301e6b56 --- /dev/null +++ b/shared/pubUtils/dictionary/DicRougeRandomEventPlan.ts @@ -0,0 +1,28 @@ +/** + * 随机关卡配置表 + */ + +import { readFileAndParse } from '../util' +import { FILENAME } from '../../consts' + +export interface DicRougeRandomEventPlan { + readonly id: number; + readonly planId: number; + readonly randomEventId: number; // 随机关卡的id dicRougeEventOption中的randomEventId + readonly weight: number; // 权重 +} + +export const dicRougeRandomEventPlan = new Map(); +export function loadRougeRandomEventPlan() { + dicRougeRandomEventPlan.clear(); + + let arr = readFileAndParse(FILENAME.DIC_ROUGE_RANDOM_EVENT_PLAN); + + arr.forEach(o => { + if (!dicRougeRandomEventPlan.has(o.planId)) { + dicRougeRandomEventPlan.set(o.planId, []); + } + dicRougeRandomEventPlan.get(o.planId).push(o); + }); + arr = undefined; +} \ No newline at end of file diff --git a/shared/pubUtils/dictionary/DicRougeScoreReward.ts b/shared/pubUtils/dictionary/DicRougeScoreReward.ts new file mode 100644 index 000000000..b13734746 --- /dev/null +++ b/shared/pubUtils/dictionary/DicRougeScoreReward.ts @@ -0,0 +1,27 @@ +/** + * 随机事件图鉴 + */ + +import { parseGoodStr, readFileAndParse } from '../util' +import { FILENAME } from '../../consts' +import { RewardInter } from '../interface'; + +export interface DicRougeScoreReward { + readonly index: number; + readonly score: number; // 积分 + readonly reward: RewardInter[]; // 图鉴收集奖励(同Group只领取一次奖励) +} +export const dicRougeScoreReward = new Map(); +export const dicRougeScoreNum = { num: 0 } +export function loadRougeScoreReward() { + dicRougeScoreReward.clear(); + + let arr = readFileAndParse(FILENAME.DIC_ROUGE_SCORE_REWARD); + + arr.forEach(o => { + o.reward = parseGoodStr(o.reward); + dicRougeScoreReward.set(o.index, o); + dicRougeScoreNum.num++; + }); + arr = undefined; +} \ No newline at end of file diff --git a/shared/pubUtils/dictionary/DicRougeShopPlan.ts b/shared/pubUtils/dictionary/DicRougeShopPlan.ts new file mode 100644 index 000000000..aed8fb27c --- /dev/null +++ b/shared/pubUtils/dictionary/DicRougeShopPlan.ts @@ -0,0 +1,28 @@ +/** + * 试炼类型配置表 + */ + +import { readFileAndParse } from '../util' +import { FILENAME } from '../../consts' + +export interface DicRougeShopPlan { + readonly id: number; + readonly planId: number; + readonly passivecardPlanId: number; // 特性卡 + readonly passiveCardRandomNum: number; // 玩家可以在商店随机出多少奖励 + readonly holyCardPlanId: number; // 圣物 + readonly holyCardRandomNum: number; // 玩家可以商店随机出多少奖励 +} + + +export const dicRougeShopPlan = new Map(); +export function loadRougeShopPlan() { + dicRougeShopPlan.clear(); + + let arr = readFileAndParse(FILENAME.DIC_ROUGE_SHOP_PLAN); + + arr.forEach(o => { + dicRougeShopPlan.set(o.planId, o); + }); + arr = undefined; +} \ No newline at end of file diff --git a/shared/pubUtils/dictionary/DicRougeSkillCard.ts b/shared/pubUtils/dictionary/DicRougeSkillCard.ts new file mode 100644 index 000000000..a58a8eaea --- /dev/null +++ b/shared/pubUtils/dictionary/DicRougeSkillCard.ts @@ -0,0 +1,30 @@ +/** + * 技能卡 + */ + +import { parseGoodStr, readFileAndParse } from '../util' +import { FILENAME } from '../../consts' +import { RewardInter } from '../interface'; + +export interface DicRougeSkillCard { + readonly id: number; + readonly name: string; + readonly quality: number; // 品质 + readonly skillType: number; // 技能类型 + readonly authorType: number; // 所属百家流派,在该流派试炼中出现概率提升 + readonly skillId: number; // 战场技能 + readonly collectReward: RewardInter[]; +} + +export const dicRougeSkillCard = new Map(); +export function loadRougeSkillCard() { + dicRougeSkillCard.clear(); + + let arr = readFileAndParse(FILENAME.DIC_ROUGE_SKILL_CARD); + + arr.forEach(o => { + o.collectReward = parseGoodStr(o.collectReward); + dicRougeSkillCard.set(o.id, o); + }); + arr = undefined; +} \ No newline at end of file diff --git a/shared/pubUtils/dictionary/DicRougeTech.ts b/shared/pubUtils/dictionary/DicRougeTech.ts new file mode 100644 index 000000000..ee0ebfd32 --- /dev/null +++ b/shared/pubUtils/dictionary/DicRougeTech.ts @@ -0,0 +1,47 @@ +/** + * 科技树配置 + */ + +import { parseGoodStr, parseNumberList, readFileAndParse } from '../util' +import { FILENAME } from '../../consts' +import { RewardInter } from '../interface'; +const _ = require('lodash'); + +export interface DicRougeTech { + readonly id: number; + readonly techId: number; // 科技点 + readonly rowId: number; // 列 + readonly index: number; // 第几个 + readonly preTechId: number[]; // 前置节点 + readonly cost: RewardInter[]; // 消耗的科技点 +} + +type KeysEnum = { [P in keyof Required]: true }; +const DicRougeTechKeys: KeysEnum = { + id: true, + techId: true, + rowId: true, + index: true, + preTechId: true, + cost: true, +} + +export const dicRougeTech = new Map(); +export const dicRougeTechIdByRow = new Map(); + +export function loadRougeTech() { + dicRougeTech.clear(); + dicRougeTechIdByRow.clear(); + + let arr = readFileAndParse(FILENAME.DIC_ROUGE_TECH); + + arr.forEach(o => { + o.preTechId = parseNumberList(o.preTechId); + o.cost = parseGoodStr(o.cost); + dicRougeTech.set(o.techId, _.pick(o, Object.keys(DicRougeTechKeys))); + + if(!dicRougeTechIdByRow.has(o.rowId)) dicRougeTechIdByRow.set(o.rowId, []); + dicRougeTechIdByRow.get(o.rowId)?.push(o.techId); + }); + arr = undefined; +} \ No newline at end of file diff --git a/shared/pubUtils/dictionary/DicRougeTechCircle.ts b/shared/pubUtils/dictionary/DicRougeTechCircle.ts new file mode 100644 index 000000000..72740e9a8 --- /dev/null +++ b/shared/pubUtils/dictionary/DicRougeTechCircle.ts @@ -0,0 +1,29 @@ +/** + * 科技树法阵配置 + */ + +import { readFileAndParse } from '../util' +import { FILENAME } from '../../consts' + +export interface DicRougeTechCircle { + readonly id: number; + readonly techId: number; // 科技树 + readonly circleId: number; // 对应法阵id +} + +export const dicRougeTechCircle = new Map(); +export const dicRougeTechCircleByTechId = new Map(); + +export function loadRougeTechCircle() { + dicRougeTechCircle.clear(); + dicRougeTechCircleByTechId.clear(); + + let arr = readFileAndParse(FILENAME.DIC_ROUGE_TECH_CIRCLE); + + arr.forEach(o => { + if(!dicRougeTechCircle.has(o.circleId)) dicRougeTechCircle.set(o.circleId, o.techId); + if(!dicRougeTechCircleByTechId.has(o.techId)) dicRougeTechCircleByTechId.set(o.techId, []); + if(!dicRougeTechCircleByTechId.get(o.techId).includes(o.circleId)) dicRougeTechCircleByTechId.get(o.techId).push(o.circleId); + }); + arr = undefined; +} \ No newline at end of file diff --git a/shared/pubUtils/dictionary/DicRougeTechLevel.ts b/shared/pubUtils/dictionary/DicRougeTechLevel.ts new file mode 100644 index 000000000..5f788c0b6 --- /dev/null +++ b/shared/pubUtils/dictionary/DicRougeTechLevel.ts @@ -0,0 +1,37 @@ +/** + * 科技树法阵配置 + */ + +import { parseNumberList, readFileAndParse } from '../util' +import { FILENAME } from '../../consts' +const _ = require('lodash'); + +export interface DicRougeTechLevel { + readonly techId: number; // 对应等级 + readonly level: number; // 等级 + readonly ce: number; // 战力 + readonly techEffectIds: number[]; // 加成 +} + +type KeysEnum = { [P in keyof Required]: boolean }; +const DicRougeTechCircleKeys: KeysEnum = { + techId: true, + level: true, + ce: true, + techEffectIds: true, +} + +export const dicRougeTechLevel = new Map(); + +export function loadRougeTechLevel() { + dicRougeTechLevel.clear(); + + let arr = readFileAndParse(FILENAME.DIC_ROUGE_TECH_LEVEL); + + arr.forEach(o => { + o.techEffectIds = parseNumberList(o.techEffectId); + if(!dicRougeTechLevel.has(o.techId)) dicRougeTechLevel.set(o.techId, []); + dicRougeTechLevel.get(o.techId)?.push(_.pick(o, Object.keys(DicRougeTechCircleKeys))); + }); + arr = undefined; +} \ No newline at end of file diff --git a/shared/pubUtils/dictionary/DicRougeType.ts b/shared/pubUtils/dictionary/DicRougeType.ts new file mode 100644 index 000000000..cdbc94778 --- /dev/null +++ b/shared/pubUtils/dictionary/DicRougeType.ts @@ -0,0 +1,22 @@ +/** + * 试炼类型配置表 + */ + +export interface DicRougeType { + readonly id: number; + readonly type: number; // 试炼类型 + readonly grade: number; // 共有多少难度 +} + + +export const dicRougeType = new Map(); +export function loadRougeType() { + dicRougeType.clear(); + + // let arr = readFileAndParse(FILENAME.DIC_ROUGE_TYPE); + + // arr.forEach(o => { + // dicRougeType.set(o.type, o); + // }); + // arr = undefined; +} \ No newline at end of file diff --git a/shared/pubUtils/dictionary/DicRougeTypeGrade.ts b/shared/pubUtils/dictionary/DicRougeTypeGrade.ts new file mode 100644 index 000000000..2e024a223 --- /dev/null +++ b/shared/pubUtils/dictionary/DicRougeTypeGrade.ts @@ -0,0 +1,41 @@ +/** + * 试炼难度配置表 + */ + +import { parseGoodStr, readFileAndParse } from '../util' +import { FILENAME } from '../../consts' +import { RewardInter } from '../interface'; + +export interface DicRougeTypeGrade { + readonly id: number; + readonly type: number; // 试炼类型 + readonly gradeIndex: number; // 难度 + readonly lvLimit: number; // 等级限制 + readonly limitId: number; //解锁需要的前置id + readonly buyRewardPlan: number; // 该试炼给的英灵奖励方案(dic_spiritPlan的id) + readonly layerCount: number; // 共有多少层 + readonly layerPlan: number; // 每一层的配置,dicRougeLayerPlan的planId + readonly challengePlan: number; // 这个试炼会随机出的挑战关卡的池子 + readonly randomEventPlan: number; // 该试炼随机事件的随机池方案 + readonly firstReward: RewardInter[]; // 首通奖励 + readonly heroValue: number; +} +export const dicRougeTypeGrade = new Map(); +export const dicRougeTypeGradeById = new Map(); + +export function loadRougeTypeGrade() { + dicRougeTypeGrade.clear(); + dicRougeTypeGradeById.clear(); + + + let arr = readFileAndParse(FILENAME.DIC_ROUGE_TYPE_GRADE); + + arr.forEach(o => { + o.firstReward = parseGoodStr(o.firstReward); + + dicRougeTypeGrade.set(o.type + '_' + o.gradeIndex, o); + + dicRougeTypeGradeById.set(o.id, o); + }); + arr = undefined; +} \ No newline at end of file diff --git a/shared/pubUtils/dictionary/DicSpiritPlan.ts b/shared/pubUtils/dictionary/DicSpiritPlan.ts new file mode 100644 index 000000000..5ad543770 --- /dev/null +++ b/shared/pubUtils/dictionary/DicSpiritPlan.ts @@ -0,0 +1,28 @@ +/** + * 英灵随机奖励配置表 + */ + +import { readFileAndParse } from '../util' +import { FILENAME } from '../../consts' + +export interface DicSpiritPlan { + readonly id: number; + readonly planId: number; + readonly spiritId: number; + readonly weight: number; +} +export const dicSpiritPlan = new Map(); + +export function loadSpiritPlan() { + dicSpiritPlan.clear(); + + let arr = readFileAndParse(FILENAME.DIC_SPIRIT_PLAN); + + arr.forEach(o => { + + if (!dicSpiritPlan.has(o.planId)) dicSpiritPlan.set(o.planId, []); + dicSpiritPlan.get(o.planId).push(o); + + }); + arr = undefined; +} \ No newline at end of file diff --git a/shared/pubUtils/interface.ts b/shared/pubUtils/interface.ts index 0c2eae130..f67f01525 100644 --- a/shared/pubUtils/interface.ts +++ b/shared/pubUtils/interface.ts @@ -1,5 +1,8 @@ // 一些通用的interface定义 +import { RougelikeCardPara } from "../db/RougelikeCard"; +import { RougelikeCharaPara } from "../db/RougelikeChara"; +import { RougelikeCollectionType } from "../db/RougelikeCollection"; import { UserGuildType } from "../db/UserGuild"; export interface RewardInter { @@ -39,6 +42,16 @@ export interface pvpEndParamInter { underDamage: number; } +export interface RougeDamageInter { + charaCode: string; + hp: number; + ap: number; + shield: number; + damage: number; + heal: number; + unserDamage: number; +} + export interface Uid { uid: string; sid: string; @@ -69,4 +82,119 @@ export interface guildInter { export interface recycleSoulFastPara { hid: number; count: number; -} \ No newline at end of file +} + +export class CommonCard { + cardCode: string; // 卡code + cardId: number; // 卡ID + type: number; // 卡类型 + charaId: number; // 装备在哪个角色上,没有装备为0 + lv: number; // 卡的等级 + useCount: number; + + constructor(card: RougelikeCardPara) { + this.cardCode = card?.cardCode || ''; + this.cardId = card?.cardId || 0; + this.type = card?.type || 0; + this.charaId = card?.charaId || 0; + this.lv = card?.lv || 0; + this.useCount = card?.useCount || 0; + } +}; + + +export class CommonChara { + charaCode: string; // 角色卡唯一id + seqId: number; // 排序 + charaId: number; // 角色卡id + cards: { // 卡槽,没有那个index表示没有解锁 + index: number; + cardCode: string; + cardId: number; // 当为0的时候表示没有装入卡片 + }[]; + hp: number; // 当前hp + maxHp: number; // 最大hp + ap: number; // 当前怒气 + shield: number; + roundSkill: number; // 玩家选择的回合技能卡 + apSkill: number; // 玩家选择的怒气技能卡 + + constructor(chara: RougelikeCharaPara) { + this.charaCode = chara?.charaCode || ''; + this.seqId = chara?.seqId || 0; + this.charaId = chara?.charaId || 0; + this.cards = chara?.cards || []; + this.hp = chara?.hp || 0; + this.maxHp = chara?.maxHp || 0; + this.ap = chara?.ap || 0; + this.shield = chara?.shield || 0; + this.roundSkill = chara?.roundSkill || 0; + this.apSkill = chara?.apSkill || 0; + } +}; + +export class CollectionReturnParam { + type: number = 0; // 类型 + id: number = 0; // 图鉴id + num: number = 0; // 图鉴达成数量 + received: number[] = []; // 是否领取 + + constructor(collect: RougelikeCollectionType) { + this.type = collect?.type || 0; + this.id = collect?.id || 0; + this.num = collect?.num || 0; + this.received = collect?.received || []; + } +} + +export interface layerNode { + detailCode: string; + index: number; // 索引 + nodeId: number; // 关卡id + preNodeIndexs: number[]; // 连线的关卡,填上一层节点的索引 + type: number; // 类型 + isChoose: number; // 玩家选择,0-未选择,1-选择 +} +export interface CommonNode { + layer: number; // 层 + layerNodes: layerNode[]; +}; + + +export interface WeightRecord { + originalWight?: number; + passiveRedWight?: number; + holyRedWight?: number; + authorAddWeight?: number; + passiveLableNum?: number; + passiveLableNumAddWeight?: number; + holyLableNum?: number; + holyLableNumAddWeight?: number; + finalWeight?: number; +} +export interface RewardOption { + optionIndex: number; // 第几个选项 + rewardId: number; // 角色卡的id或特性卡的id或圣物的id + optionStatus: number; // 0-没有选择这个奖励 1-选择了这个奖励 + passiveCardIds?: number[]; //高级学员自带特性卡 + weightRecord?: WeightRecord //用于测试权重记录 +} + +export interface CommonReward { + rewards?: { + groupIndex: number; // 奖励的索引值 + rewardType: number; // 奖励的类型 1-角色卡 2-特性卡 3-圣物 + options?: RewardOption[]; // 奖励的选项,试炼币大概就不用了 + groupStatus: number; // 组选择 0-未选择 1-已选择 + chooseNum?: number; // 这一组总共能选的数量3选2 + }[]; + takeoutReward?: RewardInter[]; // 可以外带的奖励 id&count + score?: number; // 增加的积分 + techScore?: number; // 增加的科技分 +} + + +export interface SlotCard { + index: number; //卡槽标记 + cardCode: string; //安装的特性卡唯一code +} \ No newline at end of file diff --git a/shared/pubUtils/util.ts b/shared/pubUtils/util.ts index 57cd2986e..8f4f891e0 100644 --- a/shared/pubUtils/util.ts +++ b/shared/pubUtils/util.ts @@ -80,11 +80,11 @@ export function genCode(len) { return code; } - /** - * 生成 len 长度的随机字符串 - * @param len 长度 - * @param radix 基数 - */ +/** + * 生成 len 长度的随机字符串 + * @param len 长度 + * @param radix 基数 + */ export function generateStr(len: number, radix = 36) { return `${csprng(len, radix)}`; } @@ -140,8 +140,8 @@ export function decodeIdCntArrayStr(str: string, multi: number) { * @param proTime 之后的时间 */ export function deltaDays(preTime: Date, proTime: Date, useNaturalZero = false): number { - let beginZeroPoint = getZeroPointOfTimeD(preTime, SHOP_REFRESH_TYPE.DAILY, useNaturalZero? 0: REFRESH_TIME); - let endZeroPoint = getZeroPointOfTimeD(proTime, SHOP_REFRESH_TYPE.DAILY, useNaturalZero? 0: REFRESH_TIME); + let beginZeroPoint = getZeroPointOfTimeD(preTime, SHOP_REFRESH_TYPE.DAILY, useNaturalZero ? 0 : REFRESH_TIME); + let endZeroPoint = getZeroPointOfTimeD(proTime, SHOP_REFRESH_TYPE.DAILY, useNaturalZero ? 0 : REFRESH_TIME); return moment(endZeroPoint).diff(moment(beginZeroPoint), "days"); } @@ -227,7 +227,7 @@ export function getRandSingleIndex(len: number) { */ export function getRandEelmWithWeight(randomList: T[]): { dic: T, index: number } { let len = randomList.reduce((pre, cur) => { - return pre + (cur.weight||0); + return pre + (cur.weight || 0); }, 0); let index = Math.floor(Math.random() * len); let result = { dic: null, index: -1 }; @@ -243,6 +243,45 @@ export function getRandEelmWithWeight(randomList: return result } +export function getRandEelmWithWeightAndNum(randomList: T[], num: number): { dic: T, index: number }[] { + let result: { dic: T, index: number }[] = []; + let remainingList = randomList.slice(); // Make a copy of randomList to work with + + for (let n = 0; n < Math.min(num, randomList.length); n++) { + if (remainingList.length === 0) { + // If there are no more elements to choose from, exit the loop + break; + } + + let len = remainingList.reduce((pre, cur) => { + return pre + (cur.weight || 0); + }, 0); + + let index = Math.floor(Math.random() * len); + let found = false; + + for (let i = 0; i < remainingList.length; i++) { + let { weight = 0 } = remainingList[i]; + if (index < weight) { + result.push({ dic: remainingList[i], index: randomList.indexOf(remainingList[i]) }); + remainingList.splice(i, 1); // Remove the selected element from the list + found = true; + break; + } + index -= weight; + } + + if (!found) { + // In case the index exceeds the weights, add a default value + result.push({ dic: null, index: -1 }); + } + } + + return result; +} + + + /** * 不改变原数组长度,将内部元素打乱 * @param source @@ -271,10 +310,12 @@ export function getRandValue(base: number, ratio: number, decimal = 2): number { */ export function getRandValueByMinMax(min: number, max: number, decimal = 2): number { let pow = Math.pow(10, decimal); - return Math.floor((min + (max - min) * Math.random()) * pow)/pow; + return Math.floor((min + (max - min) * Math.random()) * pow) / pow; } + + export function resResult(status: { code: number, simStr: string }, data: T = {}, customMsg = ''): { code: number, msg: string, data: T } { const { code, simStr } = status; if (code !== STATUS.SUCCESS.code) { @@ -349,7 +390,7 @@ export const cal = { export function getDecimalCnt(num: number) { let str = num.toString(); - return str.split('.')[1]? str.split('.')[1].length: 0; + return str.split('.')[1] ? str.split('.')[1].length : 0; } //计算公式 @@ -371,9 +412,9 @@ export function getDecimalCnt(num: number) { // } // } -export function ratioReward(reward: {id: number, count: number}[], ratio: number): {id: number, count: number}[] { +export function ratioReward(reward: { id: number, count: number }[], ratio: number): { id: number, count: number }[] { return reward.map(cur => { - return {id: cur.id, count: cur.count * ratio} + return { id: cur.id, count: cur.count * ratio } }); } @@ -426,7 +467,7 @@ export function readFileAndParseJson(path: string) { try { let readResult = readFile(path); return JSON.parse(readResult); - } catch(e) { + } catch (e) { throw new Error(`connectors.json 格式错误:${(e).message}`); } } @@ -462,9 +503,9 @@ export function readServerNameFileList() { export function readWordTxt(fileName: string) { try { - let file = fs.readFileSync(path.resolve(__dirname, `../resource/${fileName}.txt`)).toString('utf8').replace(/^\uFEFF/, ''); + let file = fs.readFileSync(path.resolve(__dirname, `../resource/${fileName}.txt`)).toString('utf8').replace(/^\uFEFF/, ''); return file; - } catch(e) { + } catch (e) { console.log(e) return null } @@ -472,18 +513,18 @@ export function readWordTxt(fileName: string) { export function writeWordTxt(fileName: string, words: string) { try { - let file = fs.writeFileSync(path.resolve(__dirname, `../resource/${fileName}.txt`), words); + let file = fs.writeFileSync(path.resolve(__dirname, `../resource/${fileName}.txt`), words); return file; - } catch(e) { + } catch (e) { return null } } export function readTsFile(fileName: string) { try { - let file = fs.readFileSync(path.resolve(__dirname, `../pubUtils/${fileName}.js`)).toString('utf8').replace(/^\uFEFF/, ''); + let file = fs.readFileSync(path.resolve(__dirname, `../pubUtils/${fileName}.js`)).toString('utf8').replace(/^\uFEFF/, ''); return file; - } catch(e) { + } catch (e) { return null } } @@ -492,7 +533,7 @@ export function readFileAndParse(fileName: string) { try { let readResult = readJsonFile(fileName); return JSON.parse(readResult); - } catch(e) { + } catch (e) { throw new Error(`${fileName}格式错误:${(e).message}`); } } @@ -500,11 +541,11 @@ export function readFileAndParse(fileName: string) { export function readWarJsonFileAndParse() { let warJsons = readWarJsonFileList(); let result = []; - for(let { name, str } of warJsons) { + for (let { name, str } of warJsons) { try { let json = JSON.parse(str); result.push(json); - } catch(e) { + } catch (e) { throw new Error(`${name}格式错误:${(e).message}`); } } @@ -622,7 +663,7 @@ export function checkRoleIsRobot(roleId: string) { // 将一般的roleId转为带_r的 export function makeRobotId(roleId: string, sysType?: ROBOT_SYS_TYPE) { - if(sysType) { + if (sysType) { return `${sysType}|${roleId}_r`; } else { return `${roleId}_r`; @@ -631,7 +672,7 @@ export function makeRobotId(roleId: string, sysType?: ROBOT_SYS_TYPE) { // 获取来源系统 export function getRobotSysType(roleId: string) { let type = roleId.split('|')[0]; - if(isNaN(parseInt(type))) { + if (isNaN(parseInt(type))) { return 0 } else { return parseInt(type); @@ -658,13 +699,13 @@ export function splitString(dataString: string, key: string) { export function isTimestamp(time: number, len = 10) { - if(!isNumber(time)) return false; - if(time.toString().length != len) return false; + if (!isNumber(time)) return false; + if (time.toString().length != len) return false; return true; } export function getReasonByWarType(warType: number) { - switch(warType) { + switch (warType) { case WAR_TYPE.NORMAL: return ITEM_CHANGE_REASON.NORMAL_BATTLE_END; case WAR_TYPE.VESTIGE: @@ -708,55 +749,55 @@ export function getReasonByWarType(warType: number) { return ITEM_CHANGE_REASON.BOSS_BATTLE_END; case WAR_TYPE.LADDER: return ITEM_CHANGE_REASON.LADDER_BATTLE_REWARD; - default: + default: return ITEM_CHANGE_REASON.NORMAL_BATTLE_END; } } export function getWarTypeName(warType: number) { - switch(warType) { - case WAR_TYPE.NORMAL: return '主线'; - case WAR_TYPE.VESTIGE: return '支线'; - case WAR_TYPE.EVENT: return '事件'; - case WAR_TYPE.DAILY: return '每日'; - case WAR_TYPE.EXPEDITION: return '远征'; - case WAR_TYPE.MYSTERY: return '秘境'; - case WAR_TYPE.COM_BATTLE: return '寻宝'; - case WAR_TYPE.TOWER: return '镇念塔'; - case WAR_TYPE.PVP: return '竞技'; - case WAR_TYPE.GUILD_ACTIVITY: return '军团活动'; - case WAR_TYPE.GUILD_TRAIN: return '训练场'; - case WAR_TYPE.MAIN_ELITE: return '主线精英'; - case WAR_TYPE.BRANCH_ELITE: return '梦魇支线'; - case WAR_TYPE.BRANCH: return '支线'; - case WAR_TYPE.ACT_TREASURE_HUNT: return '运营活动-神州探秘'; - case WAR_TYPE.ACT_SELF_SHOP: return '运营活动-糜家商队'; - case WAR_TYPE.ACT_DAILY_GK: return '运营活动-节日活动'; - case WAR_TYPE.ACT_NEW_HERO_GK: return '新武将活动关卡'; - case WAR_TYPE.TRY: return '试用关卡'; - case WAR_TYPE.BOSS: return '演武台'; + switch (warType) { + case WAR_TYPE.NORMAL: return '主线'; + case WAR_TYPE.VESTIGE: return '支线'; + case WAR_TYPE.EVENT: return '事件'; + case WAR_TYPE.DAILY: return '每日'; + case WAR_TYPE.EXPEDITION: return '远征'; + case WAR_TYPE.MYSTERY: return '秘境'; + case WAR_TYPE.COM_BATTLE: return '寻宝'; + case WAR_TYPE.TOWER: return '镇念塔'; + case WAR_TYPE.PVP: return '竞技'; + case WAR_TYPE.GUILD_ACTIVITY: return '军团活动'; + case WAR_TYPE.GUILD_TRAIN: return '训练场'; + case WAR_TYPE.MAIN_ELITE: return '主线精英'; + case WAR_TYPE.BRANCH_ELITE: return '梦魇支线'; + case WAR_TYPE.BRANCH: return '支线'; + case WAR_TYPE.ACT_TREASURE_HUNT: return '运营活动-神州探秘'; + case WAR_TYPE.ACT_SELF_SHOP: return '运营活动-糜家商队'; + case WAR_TYPE.ACT_DAILY_GK: return '运营活动-节日活动'; + case WAR_TYPE.ACT_NEW_HERO_GK: return '新武将活动关卡'; + case WAR_TYPE.TRY: return '试用关卡'; + case WAR_TYPE.BOSS: return '演武台'; } - } +} - /** - * 一群人分总数固定的东西 - * @param total 总数 - * @param max 每个人能拿到的最大数量 - * @param memberCnt 人数 - */ - export function getRandResultByMember(total: number, max: number, memberCnt: number) { - let arr: number[] = []; - for(let i = 1; i <= memberCnt; i++) { - let randMax = total > max? max: total; - let randMin = total - (memberCnt - i) * max; - if(randMin < 0) randMin = 0; - if(randMin > max) randMin = max; - let rand = getRandValueByMinMax(randMin, randMax + 1, 0); - arr.push(rand); - total -= rand; - } - return { arr, remain: total } - } +/** + * 一群人分总数固定的东西 + * @param total 总数 + * @param max 每个人能拿到的最大数量 + * @param memberCnt 人数 + */ +export function getRandResultByMember(total: number, max: number, memberCnt: number) { + let arr: number[] = []; + for (let i = 1; i <= memberCnt; i++) { + let randMax = total > max ? max : total; + let randMin = total - (memberCnt - i) * max; + if (randMin < 0) randMin = 0; + if (randMin > max) randMin = max; + let rand = getRandValueByMinMax(randMin, randMax + 1, 0); + arr.push(rand); + total -= rand; + } + return { arr, remain: total } +} //数据格式转换'id&数量|id&数量|' ->> Array 老资源格式 export function stringToRewardInter(rewardStr: string): Array { @@ -773,16 +814,16 @@ export function stringToRewardInter(rewardStr: string): Array { } export function addToMap(map: Map, id: T, value: number) { - if(!map.has(id)) { + if (!map.has(id)) { map.set(id, value); } else { map.set(id, map.get(id) + value); } } -export function arrToMap(arr: T[], getKey: (obj: T) => number|string): Map { +export function arrToMap(arr: T[], getKey: (obj: T) => number | string): Map { let map = new Map(); - for(let obj of arr) { + for (let obj of arr) { let key = getKey(obj); map.set(key, obj); } @@ -841,12 +882,12 @@ export function getGachaRemainFloor(gachaId: number, userFloor: Floor[]) { let dicGacha = gameData.gacha.get(gachaId); if(dicGacha.gachaType != GACHA_TYPE.NORMAL && dicGacha.gachaType != GACHA_TYPE.ACTIVITY && dicGacha.gachaType != GACHA_TYPE.TAUTOR) return 0; - for(let floorId of dicGacha.floor) { + for (let floorId of dicGacha.floor) { let dicGachaFloor = gameData.gachaFloor.get(floorId); - if(dicGachaFloor && dicGachaFloor.floorType == GACHA_FLOOR_TYPE.MAIN_FLOOR) { + if (dicGachaFloor && dicGachaFloor.floorType == GACHA_FLOOR_TYPE.MAIN_FLOOR) { let myFloor = userFloor.find(cur => cur.id == floorId); - return dicGachaFloor.param - (myFloor?.count||0); + return dicGachaFloor.param - (myFloor?.count || 0); } } return 0 @@ -859,7 +900,7 @@ export function isDevelopEnv(env: string) { export function getArrayOfNumber(len: number) { let arr: number[] = []; - for(let i = 1; i <= len; i++) arr.push(i); + for (let i = 1; i <= len; i++) arr.push(i); return arr; } @@ -890,4 +931,17 @@ export function swapFields(originObj: object, targetObj: object, fieldsToSwap: s originObj[field] = targetObj[field]; targetObj[field] = temp; } +} + +export function compareNumberArray(arrA: number[], arrB: number[]) { + if(arrA.length != arrB.length) return false; + let sortArrA: number[] = [], sortArrB: number[] = []; + for(let a of arrA) sortArrA.push(a); + for(let b of arrB) sortArrB.push(b); + sortArrA.sort(); + sortArrB.sort(); + for(let i = 0; i < sortArrA.length; i++) { + if(sortArrA[i] != sortArrB[i]) return false; + } + return true; } \ No newline at end of file diff --git a/shared/resource/jsons/dic_email_content.json b/shared/resource/jsons/dic_email_content.json index 6696ec3db..619e54cf5 100644 --- a/shared/resource/jsons/dic_email_content.json +++ b/shared/resource/jsons/dic_email_content.json @@ -341,5 +341,12 @@ "sendName": "学宫驿使", "content": "亲爱的百家传人,您在本期集会活动中有高级签到的奖励未领取,现发送至邮箱,请查收", "time": 2160 + }, + { + "id": 49, + "title": "&", + "sendName": "学宫驿使", + "content": "亲爱的百家传人,您在稷下学宫上周的学分进度奖励尚未领取,现发送至邮箱,请查收", + "time": 720 } ] \ No newline at end of file diff --git a/shared/resource/jsons/dic_questionMarkPlan.json b/shared/resource/jsons/dic_questionMarkPlan.json new file mode 100644 index 000000000..08c806e72 --- /dev/null +++ b/shared/resource/jsons/dic_questionMarkPlan.json @@ -0,0 +1,56 @@ +[ + { + "id": 1, + "questionMarkPlanId": 1, + "questionMarkIndex": 1, + "nodeType": 1, + "name": "普通关", + "param": "201&", + "weight": 1 + }, + { + "id": 2, + "questionMarkPlanId": 1, + "questionMarkIndex": 1, + "nodeType": 1, + "name": "普通关", + "param": "202&", + "weight": 1 + }, + { + "id": 3, + "questionMarkPlanId": 1, + "questionMarkIndex": 2, + "nodeType": 2, + "name": "精英关", + "param": "203&", + "weight": 1 + }, + { + "id": 4, + "questionMarkPlanId": 1, + "questionMarkIndex": 2, + "nodeType": 2, + "name": "精英关", + "param": "107&", + "weight": 3 + }, + { + "id": 5, + "questionMarkPlanId": 1, + "questionMarkIndex": 3, + "nodeType": 7, + "name": "商店", + "param": "&", + "weight": 3 + }, + { + "id": 6, + "questionMarkPlanId": 1, + "questionMarkIndex": 4, + "nodeType": 0, + "name": "随机事件", + "param": "&", + "weight": 3 + } +] \ No newline at end of file diff --git a/shared/resource/jsons/dic_rougeAuthorType.json b/shared/resource/jsons/dic_rougeAuthorType.json new file mode 100644 index 000000000..af49f6be6 --- /dev/null +++ b/shared/resource/jsons/dic_rougeAuthorType.json @@ -0,0 +1,58 @@ +[ + { + "id": 1, + "authorType": 1, + "name": "儒家", + "icon": "tubiao_rujia", + "holyCard": 20001 + }, + { + "id": 2, + "authorType": 2, + "name": "道家", + "icon": "tubiao_daojia", + "holyCard": 20002 + }, + { + "id": 3, + "authorType": 3, + "name": "墨家", + "icon": "tubiao_mojia", + "holyCard": 20003 + }, + { + "id": 4, + "authorType": 4, + "name": "法家", + "icon": "tubiao_fajia", + "holyCard": 20004 + }, + { + "id": 5, + "authorType": 5, + "name": "医家", + "icon": "tubiao_yijia", + "holyCard": 20005 + }, + { + "id": 6, + "authorType": 6, + "name": "兵家", + "icon": "tubiao_bingjia", + "holyCard": 20006 + }, + { + "id": 7, + "authorType": 7, + "name": "阴阳", + "icon": "tubiao_yinyangjia", + "holyCard": 20007 + }, + { + "id": 8, + "authorType": 8, + "name": "纵横", + "icon": "tubiao_zonghengjia", + "holyCard": 20008 + } +] \ No newline at end of file diff --git a/shared/resource/jsons/dic_rougeChallenge.json b/shared/resource/jsons/dic_rougeChallenge.json new file mode 100644 index 000000000..c3ae3a180 --- /dev/null +++ b/shared/resource/jsons/dic_rougeChallenge.json @@ -0,0 +1,74 @@ +[ + { + "id": 1, + "challengeId": 1, + "effectId": "10010103&", + "content": "接下来2场战斗,敌军攻击提高30%", + "condition": 2, + "reward": "31002&10" + }, + { + "id": 2, + "challengeId": 2, + "effectId": "10020101&", + "content": "接下来2场战斗,敌军破格+10", + "condition": 2, + "reward": "31002&20" + }, + { + "id": 3, + "challengeId": 3, + "effectId": "10030603&", + "content": "接下来2场战斗,我军学员物防降低30%", + "condition": 2, + "reward": "31002&30" + }, + { + "id": 4, + "challengeId": 4, + "effectId": "10040501&", + "content": "接下来1场战斗,我军学员暴击-10", + "condition": 1, + "reward": "31002&40" + }, + { + "id": 5, + "challengeId": 5, + "effectId": "10050203&", + "content": "接下来2场战斗,战斗结束后我军学员生命不低于80%", + "condition": 2, + "reward": "31002&50" + }, + { + "id": 6, + "challengeId": 6, + "effectId": "10060102&", + "content": "接下来2场战斗,战斗过程中我军学员无法使用怒气技", + "condition": 2, + "reward": "31002&60" + }, + { + "id": 7, + "challengeId": 7, + "effectId": "10070102&", + "content": "接下来2场战斗,战斗过程中我军学员无法使用回合技", + "condition": 2, + "reward": "31002&70" + }, + { + "id": 8, + "challengeId": 8, + "effectId": "10080102&", + "content": "接下来2次选择特性卡时,可选择的卡片数量少1", + "condition": 2, + "reward": "31002&80" + }, + { + "id": 9, + "challengeId": 9, + "effectId": "10090102&", + "content": "接下来2场战斗,每场战斗只能上阵2名学员", + "condition": 2, + "reward": "31002&90" + } +] \ No newline at end of file diff --git a/shared/resource/jsons/dic_rougeChallengePlan.json b/shared/resource/jsons/dic_rougeChallengePlan.json new file mode 100644 index 000000000..403f077ac --- /dev/null +++ b/shared/resource/jsons/dic_rougeChallengePlan.json @@ -0,0 +1,56 @@ +[ + { + "id": 1, + "planId": 1, + "challengeId": 1, + "weight": 1 + }, + { + "id": 2, + "planId": 2, + "challengeId": 2, + "weight": 1 + }, + { + "id": 3, + "planId": 3, + "challengeId": 3, + "weight": 1 + }, + { + "id": 4, + "planId": 4, + "challengeId": 4, + "weight": 1 + }, + { + "id": 5, + "planId": 5, + "challengeId": 5, + "weight": 1 + }, + { + "id": 6, + "planId": 6, + "challengeId": 6, + "weight": 1 + }, + { + "id": 7, + "planId": 7, + "challengeId": 7, + "weight": 1 + }, + { + "id": 8, + "planId": 8, + "challengeId": 8, + "weight": 1 + }, + { + "id": 9, + "planId": 9, + "challengeId": 9, + "weight": 1 + } +] \ No newline at end of file diff --git a/shared/resource/jsons/dic_rougeChara.json b/shared/resource/jsons/dic_rougeChara.json new file mode 100644 index 000000000..3eca7454e --- /dev/null +++ b/shared/resource/jsons/dic_rougeChara.json @@ -0,0 +1,114 @@ +[ + { + "id": 40001, + "heroId": 7001, + "charaType": 1, + "initial": 1, + "initCardCnt": 0, + "recruitConsume": 10 + }, + { + "id": 40002, + "heroId": 7002, + "charaType": 1, + "initial": 1, + "initCardCnt": 0, + "recruitConsume": 10 + }, + { + "id": 40003, + "heroId": 7003, + "charaType": 1, + "initial": 1, + "initCardCnt": 0, + "recruitConsume": 10 + }, + { + "id": 40004, + "heroId": 7004, + "charaType": 1, + "initial": 1, + "initCardCnt": 0, + "recruitConsume": 10 + }, + { + "id": 40005, + "heroId": 7005, + "charaType": 1, + "initial": 1, + "initCardCnt": 0, + "recruitConsume": 10 + }, + { + "id": 40006, + "heroId": 7006, + "charaType": 1, + "initial": 1, + "initCardCnt": 0, + "recruitConsume": 10 + }, + { + "id": 40007, + "heroId": 7007, + "charaType": 1, + "initial": 1, + "initCardCnt": 0, + "recruitConsume": 10 + }, + { + "id": 40008, + "heroId": 7011, + "charaType": 2, + "initial": 0, + "initCardCnt": 2, + "recruitConsume": 20 + }, + { + "id": 40009, + "heroId": 7012, + "charaType": 2, + "initial": 0, + "initCardCnt": 2, + "recruitConsume": 20 + }, + { + "id": 40010, + "heroId": 7013, + "charaType": 2, + "initial": 0, + "initCardCnt": 2, + "recruitConsume": 20 + }, + { + "id": 40011, + "heroId": 7014, + "charaType": 2, + "initial": 0, + "initCardCnt": 2, + "recruitConsume": 20 + }, + { + "id": 40012, + "heroId": 7015, + "charaType": 2, + "initial": 0, + "initCardCnt": 2, + "recruitConsume": 20 + }, + { + "id": 40013, + "heroId": 7016, + "charaType": 2, + "initial": 0, + "initCardCnt": 2, + "recruitConsume": 20 + }, + { + "id": 40014, + "heroId": 7017, + "charaType": 2, + "initial": 0, + "initCardCnt": 2, + "recruitConsume": 20 + } +] \ No newline at end of file diff --git a/shared/resource/jsons/dic_rougeChara_cardPlan.json b/shared/resource/jsons/dic_rougeChara_cardPlan.json new file mode 100644 index 000000000..0dea71f10 --- /dev/null +++ b/shared/resource/jsons/dic_rougeChara_cardPlan.json @@ -0,0 +1,176 @@ +[ + { + "id": 1, + "planId": 1, + "cardId": 40001, + "weight": 1 + }, + { + "id": 2, + "planId": 1, + "cardId": 40002, + "weight": 1 + }, + { + "id": 3, + "planId": 1, + "cardId": 40003, + "weight": 1 + }, + { + "id": 4, + "planId": 1, + "cardId": 40004, + "weight": 1 + }, + { + "id": 5, + "planId": 1, + "cardId": 40005, + "weight": 1 + }, + { + "id": 6, + "planId": 1, + "cardId": 40006, + "weight": 1 + }, + { + "id": 7, + "planId": 1, + "cardId": 40007, + "weight": 1 + }, + { + "id": 8, + "planId": 2, + "cardId": 40001, + "weight": 1 + }, + { + "id": 9, + "planId": 2, + "cardId": 40002, + "weight": 1 + }, + { + "id": 10, + "planId": 2, + "cardId": 40003, + "weight": 1 + }, + { + "id": 11, + "planId": 2, + "cardId": 40004, + "weight": 1 + }, + { + "id": 12, + "planId": 2, + "cardId": 40005, + "weight": 1 + }, + { + "id": 13, + "planId": 2, + "cardId": 40006, + "weight": 1 + }, + { + "id": 14, + "planId": 2, + "cardId": 40007, + "weight": 1 + }, + { + "id": 15, + "planId": 2, + "cardId": 40008, + "weight": 1 + }, + { + "id": 16, + "planId": 2, + "cardId": 40009, + "weight": 1 + }, + { + "id": 17, + "planId": 2, + "cardId": 40010, + "weight": 1 + }, + { + "id": 18, + "planId": 2, + "cardId": 40011, + "weight": 1 + }, + { + "id": 19, + "planId": 2, + "cardId": 40012, + "weight": 1 + }, + { + "id": 20, + "planId": 2, + "cardId": 40013, + "weight": 1 + }, + { + "id": 21, + "planId": 2, + "cardId": 40014, + "weight": 1 + }, + { + "id": 22, + "planId": 3, + "cardId": 40007, + "weight": 1 + }, + { + "id": 23, + "planId": 3, + "cardId": 40008, + "weight": 1 + }, + { + "id": 24, + "planId": 3, + "cardId": 40009, + "weight": 1 + }, + { + "id": 25, + "planId": 3, + "cardId": 40010, + "weight": 1 + }, + { + "id": 26, + "planId": 3, + "cardId": 40011, + "weight": 1 + }, + { + "id": 27, + "planId": 3, + "cardId": 40012, + "weight": 1 + }, + { + "id": 28, + "planId": 3, + "cardId": 40013, + "weight": 1 + }, + { + "id": 29, + "planId": 3, + "cardId": 40014, + "weight": 1 + } +] \ No newline at end of file diff --git a/shared/resource/jsons/dic_rougeEffect.json b/shared/resource/jsons/dic_rougeEffect.json new file mode 100644 index 000000000..b691b2a2b --- /dev/null +++ b/shared/resource/jsons/dic_rougeEffect.json @@ -0,0 +1,1913 @@ +[ + { + "id": 1, + "effectId": 10010101, + "effectType": 1001, + "content": "接下来1场战斗,敌军生命提高10%", + "effectParam": "1&1&10" + }, + { + "id": 2, + "effectId": 10010102, + "effectType": 1001, + "content": "接下来1场战斗,敌军生命提高20%", + "effectParam": "1&1&20" + }, + { + "id": 3, + "effectId": 10010103, + "effectType": 1001, + "content": "接下来1场战斗,敌军生命提高30%", + "effectParam": "1&1&30" + }, + { + "id": 4, + "effectId": 10010201, + "effectType": 1001, + "content": "接下来2场战斗,敌军生命提高10%", + "effectParam": "2&1&10" + }, + { + "id": 5, + "effectId": 10010202, + "effectType": 1001, + "content": "接下来2场战斗,敌军生命提高20%", + "effectParam": "2&1&20" + }, + { + "id": 6, + "effectId": 10010203, + "effectType": 1001, + "content": "接下来2场战斗,敌军生命提高30%", + "effectParam": "2&1&30" + }, + { + "id": 7, + "effectId": 10010301, + "effectType": 1001, + "content": "接下来1场战斗,敌军攻击提高10%", + "effectParam": "1&2&10" + }, + { + "id": 8, + "effectId": 10010302, + "effectType": 1001, + "content": "接下来1场战斗,敌军攻击提高20%", + "effectParam": "1&2&20" + }, + { + "id": 9, + "effectId": 10010303, + "effectType": 1001, + "content": "接下来1场战斗,敌军攻击提高30%", + "effectParam": "1&2&30" + }, + { + "id": 10, + "effectId": 10010401, + "effectType": 1001, + "content": "接下来2场战斗,敌军攻击提高10%", + "effectParam": "2&2&10" + }, + { + "id": 11, + "effectId": 10010402, + "effectType": 1001, + "content": "接下来2场战斗,敌军攻击提高20%", + "effectParam": "2&2&20" + }, + { + "id": 12, + "effectId": 10010403, + "effectType": 1001, + "content": "接下来2场战斗,敌军攻击提高30%", + "effectParam": "2&2&30" + }, + { + "id": 13, + "effectId": 10010501, + "effectType": 1001, + "content": "接下来1场战斗,敌军物防提高10%", + "effectParam": "1&4&10" + }, + { + "id": 14, + "effectId": 10010502, + "effectType": 1001, + "content": "接下来1场战斗,敌军物防提高20%", + "effectParam": "1&4&20" + }, + { + "id": 15, + "effectId": 10010503, + "effectType": 1001, + "content": "接下来1场战斗,敌军物防提高30%", + "effectParam": "1&4&30" + }, + { + "id": 16, + "effectId": 10010601, + "effectType": 1001, + "content": "接下来2场战斗,敌军物防提高10%", + "effectParam": "2&4&10" + }, + { + "id": 17, + "effectId": 10010602, + "effectType": 1001, + "content": "接下来2场战斗,敌军物防提高20%", + "effectParam": "2&4&20" + }, + { + "id": 18, + "effectId": 10010603, + "effectType": 1001, + "content": "接下来2场战斗,敌军物防提高30%", + "effectParam": "2&4&30" + }, + { + "id": 19, + "effectId": 10010701, + "effectType": 1001, + "content": "接下来1场战斗,敌军策防提高10%", + "effectParam": "1&5&10" + }, + { + "id": 20, + "effectId": 10010702, + "effectType": 1001, + "content": "接下来1场战斗,敌军策防提高20%", + "effectParam": "1&5&20" + }, + { + "id": 21, + "effectId": 10010703, + "effectType": 1001, + "content": "接下来1场战斗,敌军策防提高30%", + "effectParam": "1&5&30" + }, + { + "id": 22, + "effectId": 10010801, + "effectType": 1001, + "content": "接下来2场战斗,敌军策防提高10%", + "effectParam": "2&5&10" + }, + { + "id": 23, + "effectId": 10010802, + "effectType": 1001, + "content": "接下来2场战斗,敌军策防提高20%", + "effectParam": "2&5&20" + }, + { + "id": 24, + "effectId": 10010803, + "effectType": 1001, + "content": "接下来2场战斗,敌军策防提高30%", + "effectParam": "2&5&30" + }, + { + "id": 25, + "effectId": 10020101, + "effectType": 1002, + "content": "接下来1场战斗,敌军破格+10", + "effectParam": "1&9&10000" + }, + { + "id": 26, + "effectId": 10020102, + "effectType": 1002, + "content": "接下来1场战斗,敌军破格+20", + "effectParam": "1&9&20000" + }, + { + "id": 27, + "effectId": 10020103, + "effectType": 1002, + "content": "接下来1场战斗,敌军破格+30", + "effectParam": "1&9&30000" + }, + { + "id": 28, + "effectId": 10020201, + "effectType": 1002, + "content": "接下来2场战斗,敌军破格+10", + "effectParam": "2&9&10000" + }, + { + "id": 29, + "effectId": 10020202, + "effectType": 1002, + "content": "接下来2场战斗,敌军破格+20", + "effectParam": "2&9&20000" + }, + { + "id": 30, + "effectId": 10020203, + "effectType": 1002, + "content": "接下来2场战斗,敌军破格+30", + "effectParam": "2&9&30000" + }, + { + "id": 31, + "effectId": 10020301, + "effectType": 1002, + "content": "接下来1场战斗,敌军格挡+10", + "effectParam": "1&11&10000" + }, + { + "id": 32, + "effectId": 10020302, + "effectType": 1002, + "content": "接下来1场战斗,敌军格挡+20", + "effectParam": "1&11&20000" + }, + { + "id": 33, + "effectId": 10020303, + "effectType": 1002, + "content": "接下来1场战斗,敌军格挡+30", + "effectParam": "1&11&30000" + }, + { + "id": 34, + "effectId": 10020401, + "effectType": 1002, + "content": "接下来2场战斗,敌军格挡+10", + "effectParam": "2&11&10000" + }, + { + "id": 35, + "effectId": 10020402, + "effectType": 1002, + "content": "接下来2场战斗,敌军格挡+20", + "effectParam": "2&11&20000" + }, + { + "id": 36, + "effectId": 10020403, + "effectType": 1002, + "content": "接下来2场战斗,敌军格挡+30", + "effectParam": "2&11&30000" + }, + { + "id": 37, + "effectId": 10020501, + "effectType": 1002, + "content": "接下来1场战斗,敌军暴击+10", + "effectParam": "1&10&10000" + }, + { + "id": 38, + "effectId": 10020502, + "effectType": 1002, + "content": "接下来1场战斗,敌军暴击+20", + "effectParam": "1&10&20000" + }, + { + "id": 39, + "effectId": 10020503, + "effectType": 1002, + "content": "接下来1场战斗,敌军暴击+30", + "effectParam": "1&10&30000" + }, + { + "id": 40, + "effectId": 10020601, + "effectType": 1002, + "content": "接下来2场战斗,敌军暴击+10", + "effectParam": "2&10&10000" + }, + { + "id": 41, + "effectId": 10020602, + "effectType": 1002, + "content": "接下来2场战斗,敌军暴击+20", + "effectParam": "2&10&20000" + }, + { + "id": 42, + "effectId": 10020603, + "effectType": 1002, + "content": "接下来2场战斗,敌军暴击+30", + "effectParam": "2&10&30000" + }, + { + "id": 43, + "effectId": 10020701, + "effectType": 1002, + "content": "接下来1场战斗,敌军抗暴+10", + "effectParam": "1&12&10000" + }, + { + "id": 44, + "effectId": 10020702, + "effectType": 1002, + "content": "接下来1场战斗,敌军抗暴+20", + "effectParam": "1&12&20000" + }, + { + "id": 45, + "effectId": 10020703, + "effectType": 1002, + "content": "接下来1场战斗,敌军抗暴+30", + "effectParam": "1&12&30000" + }, + { + "id": 46, + "effectId": 10020801, + "effectType": 1002, + "content": "接下来2场战斗,敌军抗暴+10", + "effectParam": "2&12&10000" + }, + { + "id": 47, + "effectId": 10020802, + "effectType": 1002, + "content": "接下来2场战斗,敌军抗暴+20", + "effectParam": "2&12&20000" + }, + { + "id": 48, + "effectId": 10020803, + "effectType": 1002, + "content": "接下来2场战斗,敌军抗暴+30", + "effectParam": "2&12&30000" + }, + { + "id": 49, + "effectId": 10020901, + "effectType": 1002, + "content": "接下来1场战斗,敌军物攻强度+10", + "effectParam": "1&19&10000" + }, + { + "id": 50, + "effectId": 10020902, + "effectType": 1002, + "content": "接下来1场战斗,敌军物攻强度+20", + "effectParam": "1&19&20000" + }, + { + "id": 51, + "effectId": 10020903, + "effectType": 1002, + "content": "接下来1场战斗,敌军物攻强度+30", + "effectParam": "1&19&30000" + }, + { + "id": 52, + "effectId": 10021001, + "effectType": 1002, + "content": "接下来2场战斗,敌军物攻强度+10", + "effectParam": "2&19&10000" + }, + { + "id": 53, + "effectId": 10021002, + "effectType": 1002, + "content": "接下来2场战斗,敌军物攻强度+20", + "effectParam": "2&19&20000" + }, + { + "id": 54, + "effectId": 10021003, + "effectType": 1002, + "content": "接下来2场战斗,敌军物攻强度+30", + "effectParam": "2&19&30000" + }, + { + "id": 55, + "effectId": 10021101, + "effectType": 1002, + "content": "接下来1场战斗,敌军物攻抗性+10", + "effectParam": "1&20&10000" + }, + { + "id": 56, + "effectId": 10021102, + "effectType": 1002, + "content": "接下来1场战斗,敌军物攻抗性+20", + "effectParam": "1&20&20000" + }, + { + "id": 57, + "effectId": 10021103, + "effectType": 1002, + "content": "接下来1场战斗,敌军物攻抗性+30", + "effectParam": "1&20&30000" + }, + { + "id": 58, + "effectId": 10021201, + "effectType": 1002, + "content": "接下来2场战斗,敌军物攻抗性+10", + "effectParam": "2&20&10000" + }, + { + "id": 59, + "effectId": 10021202, + "effectType": 1002, + "content": "接下来2场战斗,敌军物攻抗性+20", + "effectParam": "2&20&20000" + }, + { + "id": 60, + "effectId": 10021203, + "effectType": 1002, + "content": "接下来2场战斗,敌军物攻抗性+30", + "effectParam": "2&20&30000" + }, + { + "id": 61, + "effectId": 10021301, + "effectType": 1002, + "content": "接下来1场战斗,敌军策攻强度+10", + "effectParam": "1&21&10000" + }, + { + "id": 62, + "effectId": 10021302, + "effectType": 1002, + "content": "接下来1场战斗,敌军策攻强度+20", + "effectParam": "1&21&20000" + }, + { + "id": 63, + "effectId": 10021303, + "effectType": 1002, + "content": "接下来1场战斗,敌军策攻强度+30", + "effectParam": "1&21&30000" + }, + { + "id": 64, + "effectId": 10021401, + "effectType": 1002, + "content": "接下来2场战斗,敌军策攻强度+10", + "effectParam": "2&21&10000" + }, + { + "id": 65, + "effectId": 10021402, + "effectType": 1002, + "content": "接下来2场战斗,敌军策攻强度+20", + "effectParam": "2&21&20000" + }, + { + "id": 66, + "effectId": 10021403, + "effectType": 1002, + "content": "接下来2场战斗,敌军策攻强度+30", + "effectParam": "2&21&30000" + }, + { + "id": 67, + "effectId": 10021501, + "effectType": 1002, + "content": "接下来1场战斗,敌军策攻抗性+10", + "effectParam": "1&22&10000" + }, + { + "id": 68, + "effectId": 10021502, + "effectType": 1002, + "content": "接下来1场战斗,敌军策攻抗性+20", + "effectParam": "1&22&20000" + }, + { + "id": 69, + "effectId": 10021503, + "effectType": 1002, + "content": "接下来1场战斗,敌军策攻抗性+30", + "effectParam": "1&22&30000" + }, + { + "id": 70, + "effectId": 10021601, + "effectType": 1002, + "content": "接下来2场战斗,敌军策攻抗性+10", + "effectParam": "2&22&10000" + }, + { + "id": 71, + "effectId": 10021602, + "effectType": 1002, + "content": "接下来2场战斗,敌军策攻抗性+20", + "effectParam": "2&22&20000" + }, + { + "id": 72, + "effectId": 10021603, + "effectType": 1002, + "content": "接下来2场战斗,敌军策攻抗性+30", + "effectParam": "2&22&30000" + }, + { + "id": 73, + "effectId": 10030101, + "effectType": 1003, + "content": "接下来1场战斗,我军学员生命降低10%", + "effectParam": "1&1&10" + }, + { + "id": 74, + "effectId": 10030102, + "effectType": 1003, + "content": "接下来1场战斗,我军学员生命降低20%", + "effectParam": "1&1&20" + }, + { + "id": 75, + "effectId": 10030103, + "effectType": 1003, + "content": "接下来1场战斗,我军学员生命降低30%", + "effectParam": "1&1&30" + }, + { + "id": 76, + "effectId": 10030201, + "effectType": 1003, + "content": "接下来2场战斗,我军学员生命降低10%", + "effectParam": "2&1&10" + }, + { + "id": 77, + "effectId": 10030202, + "effectType": 1003, + "content": "接下来2场战斗,我军学员生命降低20%", + "effectParam": "2&1&20" + }, + { + "id": 78, + "effectId": 10030203, + "effectType": 1003, + "content": "接下来2场战斗,我军学员生命降低30%", + "effectParam": "2&1&30" + }, + { + "id": 79, + "effectId": 10030301, + "effectType": 1003, + "content": "接下来1场战斗,我军学员攻击降低10%", + "effectParam": "1&2&10" + }, + { + "id": 80, + "effectId": 10030302, + "effectType": 1003, + "content": "接下来1场战斗,我军学员攻击降低20%", + "effectParam": "1&2&20" + }, + { + "id": 81, + "effectId": 10030303, + "effectType": 1003, + "content": "接下来1场战斗,我军学员攻击降低30%", + "effectParam": "1&2&30" + }, + { + "id": 82, + "effectId": 10030401, + "effectType": 1003, + "content": "接下来2场战斗,我军学员攻击降低10%", + "effectParam": "2&2&10" + }, + { + "id": 83, + "effectId": 10030402, + "effectType": 1003, + "content": "接下来2场战斗,我军学员攻击降低20%", + "effectParam": "2&2&20" + }, + { + "id": 84, + "effectId": 10030403, + "effectType": 1003, + "content": "接下来2场战斗,我军学员攻击降低30%", + "effectParam": "2&2&30" + }, + { + "id": 85, + "effectId": 10030501, + "effectType": 1003, + "content": "接下来1场战斗,我军学员物防降低10%", + "effectParam": "1&4&10" + }, + { + "id": 86, + "effectId": 10030502, + "effectType": 1003, + "content": "接下来1场战斗,我军学员物防降低20%", + "effectParam": "1&4&20" + }, + { + "id": 87, + "effectId": 10030503, + "effectType": 1003, + "content": "接下来1场战斗,我军学员物防降低30%", + "effectParam": "1&4&30" + }, + { + "id": 88, + "effectId": 10030601, + "effectType": 1003, + "content": "接下来2场战斗,我军学员物防降低10%", + "effectParam": "2&4&10" + }, + { + "id": 89, + "effectId": 10030602, + "effectType": 1003, + "content": "接下来2场战斗,我军学员物防降低20%", + "effectParam": "2&4&20" + }, + { + "id": 90, + "effectId": 10030603, + "effectType": 1003, + "content": "接下来2场战斗,我军学员物防降低30%", + "effectParam": "2&4&30" + }, + { + "id": 91, + "effectId": 10030701, + "effectType": 1003, + "content": "接下来1场战斗,我军学员策防降低10%", + "effectParam": "1&5&10" + }, + { + "id": 92, + "effectId": 10030702, + "effectType": 1003, + "content": "接下来1场战斗,我军学员策防降低20%", + "effectParam": "1&5&20" + }, + { + "id": 93, + "effectId": 10030703, + "effectType": 1003, + "content": "接下来1场战斗,我军学员策防降低30%", + "effectParam": "1&5&30" + }, + { + "id": 94, + "effectId": 10030801, + "effectType": 1003, + "content": "接下来2场战斗,我军学员策防降低10%", + "effectParam": "2&5&10" + }, + { + "id": 95, + "effectId": 10030802, + "effectType": 1003, + "content": "接下来2场战斗,我军学员策防降低20%", + "effectParam": "2&5&20" + }, + { + "id": 96, + "effectId": 10030803, + "effectType": 1003, + "content": "接下来2场战斗,我军学员策防降低30%", + "effectParam": "2&5&30" + }, + { + "id": 97, + "effectId": 10040101, + "effectType": 1004, + "content": "接下来1场战斗,我军学员破格-10", + "effectParam": "1&9&10000" + }, + { + "id": 98, + "effectId": 10040102, + "effectType": 1004, + "content": "接下来1场战斗,我军学员破格-20", + "effectParam": "1&9&20000" + }, + { + "id": 99, + "effectId": 10040103, + "effectType": 1004, + "content": "接下来1场战斗,我军学员破格-30", + "effectParam": "1&9&30000" + }, + { + "id": 100, + "effectId": 10040201, + "effectType": 1004, + "content": "接下来2场战斗,我军学员破格-10", + "effectParam": "2&9&10000" + }, + { + "id": 101, + "effectId": 10040202, + "effectType": 1004, + "content": "接下来2场战斗,我军学员破格-20", + "effectParam": "2&9&20000" + }, + { + "id": 102, + "effectId": 10040203, + "effectType": 1004, + "content": "接下来2场战斗,我军学员破格-30", + "effectParam": "2&9&30000" + }, + { + "id": 103, + "effectId": 10040301, + "effectType": 1004, + "content": "接下来1场战斗,我军学员格挡-10", + "effectParam": "1&11&10000" + }, + { + "id": 104, + "effectId": 10040302, + "effectType": 1004, + "content": "接下来1场战斗,我军学员格挡-20", + "effectParam": "1&11&20000" + }, + { + "id": 105, + "effectId": 10040303, + "effectType": 1004, + "content": "接下来1场战斗,我军学员格挡-30", + "effectParam": "1&11&30000" + }, + { + "id": 106, + "effectId": 10040401, + "effectType": 1004, + "content": "接下来2场战斗,我军学员格挡-10", + "effectParam": "2&11&10000" + }, + { + "id": 107, + "effectId": 10040402, + "effectType": 1004, + "content": "接下来2场战斗,我军学员格挡-20", + "effectParam": "2&11&20000" + }, + { + "id": 108, + "effectId": 10040403, + "effectType": 1004, + "content": "接下来2场战斗,我军学员格挡-30", + "effectParam": "2&11&30000" + }, + { + "id": 109, + "effectId": 10040501, + "effectType": 1004, + "content": "接下来1场战斗,我军学员暴击-10", + "effectParam": "1&10&10000" + }, + { + "id": 110, + "effectId": 10040502, + "effectType": 1004, + "content": "接下来1场战斗,我军学员暴击-20", + "effectParam": "1&10&20000" + }, + { + "id": 111, + "effectId": 10040503, + "effectType": 1004, + "content": "接下来1场战斗,我军学员暴击-30", + "effectParam": "1&10&30000" + }, + { + "id": 112, + "effectId": 10040601, + "effectType": 1004, + "content": "接下来2场战斗,我军学员暴击-10", + "effectParam": "2&10&10000" + }, + { + "id": 113, + "effectId": 10040602, + "effectType": 1004, + "content": "接下来2场战斗,我军学员暴击-20", + "effectParam": "2&10&20000" + }, + { + "id": 114, + "effectId": 10040603, + "effectType": 1004, + "content": "接下来2场战斗,我军学员暴击-30", + "effectParam": "2&10&30000" + }, + { + "id": 115, + "effectId": 10040701, + "effectType": 1004, + "content": "接下来1场战斗,我军学员抗暴-10", + "effectParam": "1&12&10000" + }, + { + "id": 116, + "effectId": 10040702, + "effectType": 1004, + "content": "接下来1场战斗,我军学员抗暴-20", + "effectParam": "1&12&20000" + }, + { + "id": 117, + "effectId": 10040703, + "effectType": 1004, + "content": "接下来1场战斗,我军学员抗暴-30", + "effectParam": "1&12&30000" + }, + { + "id": 118, + "effectId": 10040801, + "effectType": 1004, + "content": "接下来2场战斗,我军学员抗暴-10", + "effectParam": "2&12&10000" + }, + { + "id": 119, + "effectId": 10040802, + "effectType": 1004, + "content": "接下来2场战斗,我军学员抗暴-20", + "effectParam": "2&12&20000" + }, + { + "id": 120, + "effectId": 10040803, + "effectType": 1004, + "content": "接下来2场战斗,我军学员抗暴-30", + "effectParam": "2&12&30000" + }, + { + "id": 121, + "effectId": 10040901, + "effectType": 1004, + "content": "接下来1场战斗,我军学员物攻强度-10", + "effectParam": "1&19&10000" + }, + { + "id": 122, + "effectId": 10040902, + "effectType": 1004, + "content": "接下来1场战斗,我军学员物攻强度-20", + "effectParam": "1&19&20000" + }, + { + "id": 123, + "effectId": 10040903, + "effectType": 1004, + "content": "接下来1场战斗,我军学员物攻强度-30", + "effectParam": "1&19&30000" + }, + { + "id": 124, + "effectId": 10041001, + "effectType": 1004, + "content": "接下来2场战斗,我军学员物攻强度-10", + "effectParam": "2&19&10000" + }, + { + "id": 125, + "effectId": 10041002, + "effectType": 1004, + "content": "接下来2场战斗,我军学员物攻强度-20", + "effectParam": "2&19&20000" + }, + { + "id": 126, + "effectId": 10041003, + "effectType": 1004, + "content": "接下来2场战斗,我军学员物攻强度-30", + "effectParam": "2&19&30000" + }, + { + "id": 127, + "effectId": 10041101, + "effectType": 1004, + "content": "接下来1场战斗,我军学员物攻抗性-10", + "effectParam": "1&20&10000" + }, + { + "id": 128, + "effectId": 10041102, + "effectType": 1004, + "content": "接下来1场战斗,我军学员物攻抗性-20", + "effectParam": "1&20&20000" + }, + { + "id": 129, + "effectId": 10041103, + "effectType": 1004, + "content": "接下来1场战斗,我军学员物攻抗性-30", + "effectParam": "1&20&30000" + }, + { + "id": 130, + "effectId": 10041201, + "effectType": 1004, + "content": "接下来2场战斗,我军学员物攻抗性-10", + "effectParam": "2&20&10000" + }, + { + "id": 131, + "effectId": 10041202, + "effectType": 1004, + "content": "接下来2场战斗,我军学员物攻抗性-20", + "effectParam": "2&20&20000" + }, + { + "id": 132, + "effectId": 10041203, + "effectType": 1004, + "content": "接下来2场战斗,我军学员物攻抗性-30", + "effectParam": "2&20&30000" + }, + { + "id": 133, + "effectId": 10041301, + "effectType": 1004, + "content": "接下来1场战斗,我军学员策攻强度-10", + "effectParam": "1&21&10000" + }, + { + "id": 134, + "effectId": 10041302, + "effectType": 1004, + "content": "接下来1场战斗,我军学员策攻强度-20", + "effectParam": "1&21&20000" + }, + { + "id": 135, + "effectId": 10041303, + "effectType": 1004, + "content": "接下来1场战斗,我军学员策攻强度-30", + "effectParam": "1&21&30000" + }, + { + "id": 136, + "effectId": 10041401, + "effectType": 1004, + "content": "接下来2场战斗,我军学员策攻强度-10", + "effectParam": "2&21&10000" + }, + { + "id": 137, + "effectId": 10041402, + "effectType": 1004, + "content": "接下来2场战斗,我军学员策攻强度-20", + "effectParam": "2&21&20000" + }, + { + "id": 138, + "effectId": 10041403, + "effectType": 1004, + "content": "接下来2场战斗,我军学员策攻强度-30", + "effectParam": "2&21&30000" + }, + { + "id": 139, + "effectId": 10041501, + "effectType": 1004, + "content": "接下来1场战斗,我军学员策攻抗性-10", + "effectParam": "1&22&10000" + }, + { + "id": 140, + "effectId": 10041502, + "effectType": 1004, + "content": "接下来1场战斗,我军学员策攻抗性-20", + "effectParam": "1&22&20000" + }, + { + "id": 141, + "effectId": 10041503, + "effectType": 1004, + "content": "接下来1场战斗,我军学员策攻抗性-30", + "effectParam": "1&22&30000" + }, + { + "id": 142, + "effectId": 10041601, + "effectType": 1004, + "content": "接下来2场战斗,我军学员策攻抗性-10", + "effectParam": "2&22&10000" + }, + { + "id": 143, + "effectId": 10041602, + "effectType": 1004, + "content": "接下来2场战斗,我军学员策攻抗性-20", + "effectParam": "2&22&20000" + }, + { + "id": 144, + "effectId": 10041603, + "effectType": 1004, + "content": "接下来2场战斗,我军学员策攻抗性-30", + "effectParam": "2&22&30000" + }, + { + "id": 145, + "effectId": 10050101, + "effectType": 1005, + "content": "接下来1场战斗,战斗结束后我军学员生命不低于60%", + "effectParam": "1&60" + }, + { + "id": 146, + "effectId": 10050102, + "effectType": 1005, + "content": "接下来1场战斗,战斗结束后我军学员生命不低于70%", + "effectParam": "1&70" + }, + { + "id": 147, + "effectId": 10050103, + "effectType": 1005, + "content": "接下来1场战斗,战斗结束后我军学员生命不低于80%", + "effectParam": "1&80" + }, + { + "id": 148, + "effectId": 10050201, + "effectType": 1005, + "content": "接下来2场战斗,战斗结束后我军学员生命不低于60%", + "effectParam": "2&60" + }, + { + "id": 149, + "effectId": 10050202, + "effectType": 1005, + "content": "接下来2场战斗,战斗结束后我军学员生命不低于70%", + "effectParam": "2&70" + }, + { + "id": 150, + "effectId": 10050203, + "effectType": 1005, + "content": "接下来2场战斗,战斗结束后我军学员生命不低于80%", + "effectParam": "2&80" + }, + { + "id": 151, + "effectId": 10060101, + "effectType": 1006, + "content": "接下来1场战斗,战斗过程中我军学员不使用怒气技", + "effectParam": "1&" + }, + { + "id": 152, + "effectId": 10060102, + "effectType": 1006, + "content": "接下来2场战斗,战斗过程中我军学员不使用怒气技", + "effectParam": "2&" + }, + { + "id": 153, + "effectId": 10070101, + "effectType": 1007, + "content": "接下来1场战斗,战斗过程中我军学员不使用回合技", + "effectParam": "1&" + }, + { + "id": 154, + "effectId": 10070102, + "effectType": 1007, + "content": "接下来2场战斗,战斗过程中我军学员不使用回合技", + "effectParam": "2&" + }, + { + "id": 155, + "effectId": 10080101, + "effectType": 1008, + "content": "接下来1次选择特性卡时,可选择的卡片数量少1", + "effectParam": "1&" + }, + { + "id": 156, + "effectId": 10080102, + "effectType": 1008, + "content": "接下来2次选择特性卡时,可选择的卡片数量少1", + "effectParam": "2&" + }, + { + "id": 157, + "effectId": 10090101, + "effectType": 1009, + "content": "接下来1场战斗,每场战斗只能上阵2名学员", + "effectParam": "1&" + }, + { + "id": 158, + "effectId": 10090102, + "effectType": 1009, + "content": "接下来1场战斗,每场战斗只能上阵2名学员", + "effectParam": "2&" + }, + { + "id": 159, + "effectId": 20010101, + "effectType": 2001, + "content": "每场战斗结束后,学员恢复血量上限5%的生命", + "effectParam": "5&" + }, + { + "id": 160, + "effectId": 20010102, + "effectType": 2001, + "content": "每场战斗结束后,学员恢复血量上限10%的生命", + "effectParam": "10&" + }, + { + "id": 161, + "effectId": 20010103, + "effectType": 2001, + "content": "每场战斗结束后,学员恢复血量上限15%的生命", + "effectParam": "15&" + }, + { + "id": 162, + "effectId": 20020101, + "effectType": 2002, + "content": "获得该圣物时,所有学员立刻解锁1个特性槽", + "effectParam": "1&" + }, + { + "id": 163, + "effectId": 20030101, + "effectType": 2003, + "content": "获得该圣物时,随机解锁1个学员的特性槽", + "effectParam": "1&1" + }, + { + "id": 164, + "effectId": 20040101, + "effectType": 2004, + "content": "战斗胜利后,获得的试炼币增加30%", + "effectParam": "2&30%" + }, + { + "id": 165, + "effectId": 20050101, + "effectType": 2005, + "content": "每累积过100个试炼币,全员生命提高2%", + "effectParam": "100&1&2" + }, + { + "id": 166, + "effectId": 20050102, + "effectType": 2005, + "content": "每累积过100个试炼币,全员攻击提高2%", + "effectParam": "100&2&2" + }, + { + "id": 167, + "effectId": 20050103, + "effectType": 2005, + "content": "每累积过100个试炼币,全员物防提高2%", + "effectParam": "100&4&2" + }, + { + "id": 168, + "effectId": 20050104, + "effectType": 2005, + "content": "每累积过100个试炼币,全员策防提高2%", + "effectParam": "100&5&2" + }, + { + "id": 169, + "effectId": 20060101, + "effectType": 2006, + "content": "随机升级2个已装备的特性", + "effectParam": "2&" + }, + { + "id": 170, + "effectId": 20070101, + "effectType": 2007, + "content": "获得儒家流派特性卡概率提高", + "effectParam": "1&10" + }, + { + "id": 171, + "effectId": 20070201, + "effectType": 2007, + "content": "获得道家流派特性卡概率提高", + "effectParam": "2&10" + }, + { + "id": 172, + "effectId": 20070301, + "effectType": 2007, + "content": "获得墨家流派特性卡概率提高", + "effectParam": "3&10" + }, + { + "id": 173, + "effectId": 20070401, + "effectType": 2007, + "content": "获得法家流派特性卡概率提高", + "effectParam": "4&10" + }, + { + "id": 174, + "effectId": 20070501, + "effectType": 2007, + "content": "获得医家流派特性卡概率提高", + "effectParam": "5&10" + }, + { + "id": 175, + "effectId": 20070601, + "effectType": 2007, + "content": "获得兵家流派特性卡概率提高", + "effectParam": "6&10" + }, + { + "id": 176, + "effectId": 20070701, + "effectType": 2007, + "content": "获得阴阳流派特性卡概率提高", + "effectParam": "7&10" + }, + { + "id": 177, + "effectId": 20070801, + "effectType": 2007, + "content": "获得纵横流派特性卡概率提高", + "effectParam": "8&10" + }, + { + "id": 178, + "effectId": 20080101, + "effectType": 2008, + "content": "进入战斗后,所有敌军扣减30%的生命,触发3次后损毁", + "effectParam": "1&2&30" + }, + { + "id": 179, + "effectId": 20090101, + "effectType": 2009, + "content": "非首领敌人战斗失败视为胜利,并且满血复活,生效1次后损毁", + "effectParam": "&" + }, + { + "id": 180, + "effectId": 20100101, + "effectType": 2010, + "content": "战斗胜利后若有学员死亡,则满血复活1名死亡学员", + "effectParam": "1&" + }, + { + "id": 181, + "effectId": 20110101, + "effectType": 2011, + "content": "试炼商店中所有商品7折出售", + "effectParam": "7&" + }, + { + "id": 182, + "effectId": 20120101, + "effectType": 2012, + "content": "获得该圣物时立即升级所有1星特性卡", + "effectParam": "1&" + }, + { + "id": 183, + "effectId": 20130101, + "effectType": 2013, + "content": "下次选择特性卡时必定出现2星特性卡,触发1次后损毁", + "effectParam": "2&" + }, + { + "id": 184, + "effectId": 20140101, + "effectType": 2014, + "content": "下次选择特性卡时可多选1张特性卡,触发2次后损毁", + "effectParam": "1&" + }, + { + "id": 185, + "effectId": 20150101, + "effectType": 2015, + "content": "获得该圣物后,随机修复2个已损毁的圣物", + "effectParam": "2&" + }, + { + "id": 186, + "effectId": 20170101, + "effectType": 2017, + "content": "休整点额外恢复10%的生命", + "effectParam": "10&" + }, + { + "id": 187, + "effectId": 20180101, + "effectType": 2018, + "content": "休整点特训价格打8折", + "effectParam": "8&" + }, + { + "id": 188, + "effectId": 20190101, + "effectType": 2019, + "content": "每累积过100个试炼币,全员破格+2", + "effectParam": "100&9&2000" + }, + { + "id": 189, + "effectId": 20190201, + "effectType": 2019, + "content": "每累积过100个试炼币,全员格挡+2", + "effectParam": "100&11&2000" + }, + { + "id": 190, + "effectId": 20190301, + "effectType": 2019, + "content": "每累积过100个试炼币,全员暴击+2", + "effectParam": "100&10&2000" + }, + { + "id": 191, + "effectId": 20190401, + "effectType": 2019, + "content": "每累积过100个试炼币,全员抗暴+2", + "effectParam": "100&12&2000" + }, + { + "id": 192, + "effectId": 20190501, + "effectType": 2019, + "content": "每累积过100个试炼币,全员物攻强度+2", + "effectParam": "100&19&2000" + }, + { + "id": 193, + "effectId": 20190601, + "effectType": 2019, + "content": "每累积过100个试炼币,全员物攻抗性+2", + "effectParam": "100&20&2000" + }, + { + "id": 194, + "effectId": 20190701, + "effectType": 2019, + "content": "每累积过100个试炼币,全员策攻强度+2", + "effectParam": "100&21&2000" + }, + { + "id": 195, + "effectId": 20190801, + "effectType": 2019, + "content": "每累积过100个试炼币,全员策攻抗性+2", + "effectParam": "100&22&2000" + }, + { + "id": 196, + "effectId": 20190901, + "effectType": 2019, + "content": "每累积过100个试炼币,全员吸血+2", + "effectParam": "100&16&2000" + }, + { + "id": 197, + "effectId": 20191001, + "effectType": 2019, + "content": "每累积过100个试炼币,全员暴击伤害+2%", + "effectParam": "100&18&2000" + }, + { + "id": 198, + "effectId": 20191101, + "effectType": 2019, + "content": "每累积过100个试炼币,全员反弹+2", + "effectParam": "100&27&2000" + }, + { + "id": 199, + "effectId": 20191201, + "effectType": 2019, + "content": "每累积过100个试炼币,全员反击伤害+2%", + "effectParam": "100&28&2000" + }, + { + "id": 200, + "effectId": 20230101, + "effectType": 2023, + "content": "拥有该圣物时,所有角色解锁1号位特性槽", + "effectParam": "0&" + }, + { + "id": 201, + "effectId": 20230102, + "effectType": 2023, + "content": "拥有该圣物时,所有角色解锁2号位特性槽", + "effectParam": "1&" + }, + { + "id": 202, + "effectId": 20230103, + "effectType": 2023, + "content": "拥有该圣物时,所有角色解锁3号位特性槽", + "effectParam": "2&" + }, + { + "id": 203, + "effectId": 30010101, + "effectType": 3001, + "content": "生命上限提高5%", + "effectParam": "1&5" + }, + { + "id": 204, + "effectId": 30010102, + "effectType": 3001, + "content": "生命上限提高10%", + "effectParam": "1&10" + }, + { + "id": 205, + "effectId": 30010103, + "effectType": 3001, + "content": "生命上限提高15%", + "effectParam": "1&15" + }, + { + "id": 206, + "effectId": 30010104, + "effectType": 3001, + "content": "生命上限提高20%", + "effectParam": "1&20" + }, + { + "id": 207, + "effectId": 30010105, + "effectType": 3001, + "content": "生命上限提高25%", + "effectParam": "1&25" + }, + { + "id": 208, + "effectId": 30010106, + "effectType": 3001, + "content": "生命上限提高30%", + "effectParam": "1&30" + }, + { + "id": 209, + "effectId": 30010201, + "effectType": 3001, + "content": "攻击提高5%", + "effectParam": "2&5" + }, + { + "id": 210, + "effectId": 30010202, + "effectType": 3001, + "content": "攻击提高10%", + "effectParam": "2&10" + }, + { + "id": 211, + "effectId": 30010203, + "effectType": 3001, + "content": "攻击提高15%", + "effectParam": "2&15" + }, + { + "id": 212, + "effectId": 30010204, + "effectType": 3001, + "content": "攻击提高20%", + "effectParam": "2&20" + }, + { + "id": 213, + "effectId": 30010205, + "effectType": 3001, + "content": "攻击提高25%", + "effectParam": "2&25" + }, + { + "id": 214, + "effectId": 30010206, + "effectType": 3001, + "content": "攻击提高30%", + "effectParam": "2&30" + }, + { + "id": 215, + "effectId": 30010301, + "effectType": 3001, + "content": "物防提高5%", + "effectParam": "4&5" + }, + { + "id": 216, + "effectId": 30010302, + "effectType": 3001, + "content": "物防提高10%", + "effectParam": "4&10" + }, + { + "id": 217, + "effectId": 30010303, + "effectType": 3001, + "content": "物防提高15%", + "effectParam": "4&15" + }, + { + "id": 218, + "effectId": 30010304, + "effectType": 3001, + "content": "物防提高20%", + "effectParam": "4&20" + }, + { + "id": 219, + "effectId": 30010305, + "effectType": 3001, + "content": "物防提高25%", + "effectParam": "4&25" + }, + { + "id": 220, + "effectId": 30010306, + "effectType": 3001, + "content": "物防提高30%", + "effectParam": "4&30" + }, + { + "id": 221, + "effectId": 30010401, + "effectType": 3001, + "content": "策防提高5%", + "effectParam": "5&5" + }, + { + "id": 222, + "effectId": 30010402, + "effectType": 3001, + "content": "策防提高10%", + "effectParam": "5&10" + }, + { + "id": 223, + "effectId": 30010403, + "effectType": 3001, + "content": "策防提高15%", + "effectParam": "5&15" + }, + { + "id": 224, + "effectId": 30010404, + "effectType": 3001, + "content": "策防提高20%", + "effectParam": "5&20" + }, + { + "id": 225, + "effectId": 30010405, + "effectType": 3001, + "content": "策防提高25%", + "effectParam": "5&25" + }, + { + "id": 226, + "effectId": 30010406, + "effectType": 3001, + "content": "策防提高30%", + "effectParam": "5&30" + }, + { + "id": 227, + "effectId": 30020101, + "effectType": 3002, + "content": "破格+10", + "effectParam": "9&10000" + }, + { + "id": 228, + "effectId": 30020102, + "effectType": 3002, + "content": "破格+20", + "effectParam": "9&20000" + }, + { + "id": 229, + "effectId": 30020103, + "effectType": 3002, + "content": "破格+30", + "effectParam": "9&30000" + }, + { + "id": 230, + "effectId": 30020201, + "effectType": 3002, + "content": "格挡+10", + "effectParam": "11&10000" + }, + { + "id": 231, + "effectId": 30020202, + "effectType": 3002, + "content": "格挡+20", + "effectParam": "11&20000" + }, + { + "id": 232, + "effectId": 30020203, + "effectType": 3002, + "content": "格挡+30", + "effectParam": "11&30000" + }, + { + "id": 233, + "effectId": 30020301, + "effectType": 3002, + "content": "暴击+10", + "effectParam": "10&10000" + }, + { + "id": 234, + "effectId": 30020302, + "effectType": 3002, + "content": "暴击+20", + "effectParam": "10&20000" + }, + { + "id": 235, + "effectId": 30020303, + "effectType": 3002, + "content": "暴击+30", + "effectParam": "10&30000" + }, + { + "id": 236, + "effectId": 30020401, + "effectType": 3002, + "content": "抗暴+10", + "effectParam": "12&10000" + }, + { + "id": 237, + "effectId": 30020402, + "effectType": 3002, + "content": "抗暴+20", + "effectParam": "12&20000" + }, + { + "id": 238, + "effectId": 30020403, + "effectType": 3002, + "content": "抗暴+30", + "effectParam": "12&30000" + }, + { + "id": 239, + "effectId": 30020501, + "effectType": 3002, + "content": "物攻强度+10", + "effectParam": "19&10000" + }, + { + "id": 240, + "effectId": 30020502, + "effectType": 3002, + "content": "物攻强度+20", + "effectParam": "19&20000" + }, + { + "id": 241, + "effectId": 30020503, + "effectType": 3002, + "content": "物攻强度+30", + "effectParam": "19&30000" + }, + { + "id": 242, + "effectId": 30020601, + "effectType": 3002, + "content": "物攻抗性+10", + "effectParam": "20&10000" + }, + { + "id": 243, + "effectId": 30020602, + "effectType": 3002, + "content": "物攻抗性+20", + "effectParam": "20&20000" + }, + { + "id": 244, + "effectId": 30020603, + "effectType": 3002, + "content": "物攻抗性+30", + "effectParam": "20&30000" + }, + { + "id": 245, + "effectId": 30020701, + "effectType": 3002, + "content": "策攻强度+10", + "effectParam": "21&10000" + }, + { + "id": 246, + "effectId": 30020702, + "effectType": 3002, + "content": "策攻强度+20", + "effectParam": "21&20000" + }, + { + "id": 247, + "effectId": 30020703, + "effectType": 3002, + "content": "策攻强度+30", + "effectParam": "21&30000" + }, + { + "id": 248, + "effectId": 30020801, + "effectType": 3002, + "content": "策攻抗性+10", + "effectParam": "22&10000" + }, + { + "id": 249, + "effectId": 30020802, + "effectType": 3002, + "content": "策攻抗性+20", + "effectParam": "22&20000" + }, + { + "id": 250, + "effectId": 30020803, + "effectType": 3002, + "content": "策攻抗性+30", + "effectParam": "22&30000" + }, + { + "id": 251, + "effectId": 30020901, + "effectType": 3002, + "content": "吸血+5", + "effectParam": "16&5000" + }, + { + "id": 252, + "effectId": 30020902, + "effectType": 3002, + "content": "吸血+10", + "effectParam": "16&10000" + }, + { + "id": 253, + "effectId": 30020903, + "effectType": 3002, + "content": "吸血+15", + "effectParam": "16&15000" + }, + { + "id": 254, + "effectId": 30021001, + "effectType": 3002, + "content": "暴击伤害+5%", + "effectParam": "18&5000" + }, + { + "id": 255, + "effectId": 30021002, + "effectType": 3002, + "content": "暴击伤害+10%", + "effectParam": "18&10000" + }, + { + "id": 256, + "effectId": 30021003, + "effectType": 3002, + "content": "暴击伤害+15%", + "effectParam": "18&15000" + }, + { + "id": 257, + "effectId": 30021101, + "effectType": 3002, + "content": "反弹+5", + "effectParam": "27&5000" + }, + { + "id": 258, + "effectId": 30021102, + "effectType": 3002, + "content": "反弹+10", + "effectParam": "27&10000" + }, + { + "id": 259, + "effectId": 30021103, + "effectType": 3002, + "content": "反弹+15", + "effectParam": "27&15000" + }, + { + "id": 260, + "effectId": 30021201, + "effectType": 3002, + "content": "反击伤害+5%", + "effectParam": "28&5000" + }, + { + "id": 261, + "effectId": 30021202, + "effectType": 3002, + "content": "反击伤害+10%", + "effectParam": "28&10000" + }, + { + "id": 262, + "effectId": 30021203, + "effectType": 3002, + "content": "反击伤害+15%", + "effectParam": "28&15000" + }, + { + "id": 263, + "effectId": 30030101, + "effectType": 3003, + "content": "选择百家流派后获得1个流派专属圣物", + "effectParam": "20016&20017&20018&20019&20020&20021&20022&20023" + }, + { + "id": 264, + "effectId": 30030102, + "effectType": 3003, + "content": "选择百家流派后获得1个流派专属圣物", + "effectParam": "20001&20002&20003&20004&20005&20006&20007&20005" + }, + { + "id": 265, + "effectId": 30040101, + "effectType": 3004, + "content": "装备3个同百家流派特性的角色可额外选择流派专属怒气技", + "effectParam": "3&1" + }, + { + "id": 266, + "effectId": 30040201, + "effectType": 3004, + "content": "装备5个同百家流派特性的角色可额外选择流派专属回合技", + "effectParam": "5&2" + }, + { + "id": 267, + "effectId": 30050101, + "effectType": 3005, + "content": "初始获得500个试炼币", + "effectParam": "500&" + }, + { + "id": 268, + "effectId": 30060101, + "effectType": 3006, + "content": "休整点恢复额外恢复血量上限10%的生命", + "effectParam": "10&" + }, + { + "id": 269, + "effectId": 30070101, + "effectType": 3007, + "content": "击败敌人后获得的试炼币增加10%", + "effectParam": "1&2|10" + }, + { + "id": 270, + "effectId": 30080101, + "effectType": 3008, + "content": "选择特性卡时可消耗100试炼币重置1次", + "effectParam": "2&100" + }, + { + "id": 271, + "effectId": 30090101, + "effectType": 3009, + "content": "休整点特训价格降低10%", + "effectParam": "10&" + }, + { + "id": 272, + "effectId": 30100101, + "effectType": 3010, + "content": "挑战boss关前所有角色怒气值充满", + "effectParam": "&" + }, + { + "id": 273, + "effectId": 30110101, + "effectType": 3011, + "content": "挑战boss关前所有角色生命恢复至100%", + "effectParam": "&" + } +] \ No newline at end of file diff --git a/shared/resource/jsons/dic_rougeEffectType.json b/shared/resource/jsons/dic_rougeEffectType.json new file mode 100644 index 000000000..9f350ff5b --- /dev/null +++ b/shared/resource/jsons/dic_rougeEffectType.json @@ -0,0 +1,422 @@ +[ + { + "id": 1001, + "effectType": 1001, + "kind": 1, + "param": "count&基础属性Id&num", + "name": "挑战效果", + "info": "接下来X场战斗,敌军属性id提高num", + "conditon": "count", + "tips": "num填多少,表示num%" + }, + { + "id": 1002, + "effectType": 1002, + "kind": 1, + "param": "count&次级属性Id&num", + "name": "挑战效果", + "info": "接下来X场战斗,敌军属性id提高num", + "conditon": "count", + "tips": "num填多少,表示对饮的次级属性直接+num。最后以1000转化为1%计算" + }, + { + "id": 1003, + "effectType": 1003, + "kind": 1, + "param": "count&基础属性Id&num", + "name": "挑战效果", + "info": "接下来X场战斗,我军学员属性id降低num", + "conditon": "count", + "tips": "num填多少,表示num%" + }, + { + "id": 1004, + "effectType": 1004, + "kind": 1, + "param": "count&次级属性Id&num", + "name": "挑战效果", + "info": "接下来X场战斗,我军学员属性id降低num", + "conditon": "count", + "tips": "num填多少,表示对饮的次级属性直接+num。最后以1000转化为1%计算" + }, + { + "id": 1005, + "effectType": 1005, + "kind": 1, + "param": "count&num", + "name": "挑战效果", + "info": "接下来X场战斗,战斗结束后我军学员生命不低于num", + "conditon": "count", + "tips": "num填多少,表示num%" + }, + { + "id": 1006, + "effectType": 1006, + "kind": 1, + "param": "count&", + "name": "挑战效果", + "info": "接下来X场战斗,战斗过程中我军学员无法使用怒气技", + "conditon": "count", + "tips": "&" + }, + { + "id": 1007, + "effectType": 1007, + "kind": 1, + "param": "count&", + "name": "挑战效果", + "info": "接下来X场战斗,战斗过程中我军学员无法使用回合技", + "conditon": "count", + "tips": "&" + }, + { + "id": 1008, + "effectType": 1008, + "kind": 1, + "param": "count&", + "name": "挑战效果", + "info": "接下来X次选择特性卡时,可选择的卡片数量少1", + "conditon": "count", + "tips": "&" + }, + { + "id": 1009, + "effectType": 1009, + "kind": 1, + "param": "count&", + "name": "挑战效果", + "info": "接下来X场战斗,每场战斗只能上阵2名学员", + "conditon": "count", + "tips": "&" + }, + { + "id": 2001, + "effectType": 2001, + "kind": 2, + "param": "value&", + "name": "圣物效果", + "info": "每场战斗结束后,学员恢复血量上限X%的生命", + "conditon": "&", + "tips": "&" + }, + { + "id": 2002, + "effectType": 2002, + "kind": 2, + "param": "count&", + "name": "圣物效果", + "info": "获得该圣物时,所有学员立刻解锁X个特性槽", + "conditon": "&", + "tips": "&" + }, + { + "id": 2003, + "effectType": 2003, + "kind": 2, + "param": "num&count", + "name": "圣物效果", + "info": "获得该圣物时,随机解锁X个学员的Y个特性槽", + "conditon": "&", + "tips": "&" + }, + { + "id": 2004, + "effectType": 2004, + "kind": 2, + "param": "type&value", + "name": "圣物效果", + "info": "战斗胜利后,获得的试炼币增加X", + "conditon": "&", + "tips": "type=1 固定值增加\r\ntype=2 百分比增加" + }, + { + "id": 2005, + "effectType": 2005, + "kind": 2, + "param": "count&id&value", + "name": "圣物效果", + "info": "每累积X个试炼币,全员基础属性id提高Y", + "conditon": "&", + "tips": "id:属性id value填多少,表示value%" + }, + { + "id": 2006, + "effectType": 2006, + "kind": 2, + "param": "count&", + "name": "圣物效果", + "info": "随机升级X个已装备的特性", + "conditon": "&", + "tips": "&" + }, + { + "id": 2007, + "effectType": 2007, + "kind": 2, + "param": "authorType&value", + "name": "圣物效果", + "info": "获得圣物时,X流派特性卡的权重增加Y", + "conditon": "&", + "tips": "authorType:百家流派" + }, + { + "id": 2008, + "effectType": 2008, + "kind": 2, + "param": "属性id&value", + "name": "圣物效果", + "info": "进入战斗后,所有敌军扣减X的某基础属性id", + "conditon": "&", + "tips": "num填多少,表示num%" + }, + { + "id": 2009, + "effectType": 2009, + "kind": 2, + "param": "&", + "name": "圣物效果", + "info": "非首领敌人战斗失败视为胜利,并且满血复活", + "conditon": "&", + "tips": "&" + }, + { + "id": 2010, + "effectType": 2010, + "kind": 2, + "param": "num&count", + "name": "圣物效果", + "info": "战斗胜利后若有学员死亡,则满血复活X名死亡学员", + "conditon": "&", + "tips": "&" + }, + { + "id": 2011, + "effectType": 2011, + "kind": 2, + "param": "discount&", + "name": "圣物效果", + "info": "试炼商店中所有商品X折出售", + "conditon": "&", + "tips": "&" + }, + { + "id": 2012, + "effectType": 2012, + "kind": 2, + "param": "level&", + "name": "圣物效果", + "info": "获得该圣物时立即升级所有X星特性卡", + "conditon": "&", + "tips": "&" + }, + { + "id": 2013, + "effectType": 2013, + "kind": 2, + "param": "level&", + "name": "圣物效果", + "info": "下次选择特性卡时必定出现X星特性卡", + "conditon": "&", + "tips": "&" + }, + { + "id": 2014, + "effectType": 2014, + "kind": 2, + "param": "num&", + "name": "圣物效果", + "info": "下次选择特性卡时可多选X张特性卡", + "conditon": "&", + "tips": "&" + }, + { + "id": 2015, + "effectType": 2015, + "kind": 2, + "param": "count&", + "name": "圣物效果", + "info": "获得该圣物后,随机修复X个已损毁的圣物", + "conditon": "&", + "tips": "&" + }, + { + "id": 2017, + "effectType": 2017, + "kind": 2, + "param": "value&", + "name": "圣物效果", + "info": "休整点额外恢复X%的生命", + "conditon": "&", + "tips": "&" + }, + { + "id": 2018, + "effectType": 2018, + "kind": 2, + "param": "discount&", + "name": "圣物效果", + "info": "休整点特训价格X折", + "conditon": "&", + "tips": "&" + }, + { + "id": 2019, + "effectType": 2019, + "kind": 2, + "param": "count&id&value", + "name": "圣物效果", + "info": "每累积X个试炼币,全员次级属性id提高Y", + "conditon": "&", + "tips": "次级id:属性id num填多少,表示对饮的次级属性直接+num。最后以1000转化为1%计算" + }, + { + "id": 2020, + "effectType": 2020, + "kind": 2, + "param": "基础属性Id&num|基础属性Id&num", + "name": "圣物效果", + "info": "我军全员基础属性id1提高num,属性id2提高num", + "conditon": "&", + "tips": "num填多少,表示num%" + }, + { + "id": 2021, + "effectType": 2021, + "kind": 2, + "param": "次级属性Id&num|次级属性Id&num", + "name": "圣物效果", + "info": "我军全员次级属性id1提高num,属性id2提高num", + "conditon": "&", + "tips": "num填多少,表示对饮的次级属性直接+num。最后以1000转化为1%计算" + }, + { + "id": 2022, + "effectType": 2022, + "kind": 2, + "param": "num&属性id&value", + "name": "圣物效果", + "info": "每场战斗第X回合后,全员属性id提高Y", + "conditon": "&", + "tips": "num填多少,表示num%" + }, + { + "id": 2023, + "effectType": 2023, + "kind": 2, + "param": "X-1号位置", + "name": "圣物效果", + "info": "拥有该圣物时,所有角色解锁X号位置的特性槽", + "conditon": "&", + "tips": "从0开始" + }, + { + "id": 3001, + "effectType": 3001, + "kind": 3, + "param": "基础属性Id&num|基础属性Id&num", + "name": "法阵效果", + "info": "我军全员基础属性id1提高num,属性id2提高num", + "conditon": "&", + "tips": "num填多少,表示num%" + }, + { + "id": 3002, + "effectType": 3002, + "kind": 3, + "param": "次级属性Id&num|次级属性Id&num", + "name": "法阵效果", + "info": "我军全员次级属性id1提高num,属性id2提高num", + "conditon": "&", + "tips": "num填多少,表示对饮的次级属性直接+num。最后以1000转化为1%计算" + }, + { + "id": 3003, + "effectType": 3003, + "kind": 3, + "param": "可获得的流派圣物id池", + "name": "法阵效果", + "info": "选择百家流派后获得1个流派专属圣物X(X圣物池)", + "conditon": "&", + "tips": "填写圣物池 给玩家选择的流派对应的流派圣物" + }, + { + "id": 3004, + "effectType": 3004, + "kind": 3, + "param": "cout&skillType", + "name": "法阵效果", + "info": "装备X个同百家流派特性的角色可额外选择流派专属Y(技能类型)", + "conditon": "&", + "tips": "技能类型1:怒气技 技能类型2:回合技" + }, + { + "id": 3005, + "effectType": 3005, + "kind": 3, + "param": "cout&", + "name": "法阵效果", + "info": "初始获得X个试炼币", + "conditon": "&", + "tips": "&" + }, + { + "id": 3006, + "effectType": 3006, + "kind": 3, + "param": "value&", + "name": "法阵效果", + "info": "休整点恢复额外恢复血量上限X%的生命", + "conditon": "&", + "tips": "&" + }, + { + "id": 3007, + "effectType": 3007, + "kind": 3, + "param": "nodeType&nodeType|X", + "name": "法阵效果", + "info": "某些nodeType后获得的试炼币增加X%", + "conditon": "&", + "tips": "&" + }, + { + "id": 3008, + "effectType": 3008, + "kind": 3, + "param": "奖励type&value", + "name": "法阵效果", + "info": "选择某种奖励type时可消耗X试炼币重置1次", + "conditon": "&", + "tips": "type=1角色卡 type=2 特性卡 type=3 圣物" + }, + { + "id": 3009, + "effectType": 3009, + "kind": 3, + "param": "value&", + "name": "法阵效果", + "info": "休整点特训价格降低X%", + "conditon": "&", + "tips": "&" + }, + { + "id": 3010, + "effectType": 3010, + "kind": 3, + "param": "&", + "name": "法阵效果", + "info": "挑战boss关前所有角色怒气值充满", + "conditon": "&", + "tips": "&" + }, + { + "id": 3011, + "effectType": 3011, + "kind": 3, + "param": "&", + "name": "法阵效果", + "info": "挑战boss关前所有角色生命恢复至100%", + "conditon": "&", + "tips": "&" + } +] \ No newline at end of file diff --git a/shared/resource/jsons/dic_rougeEventOption.json b/shared/resource/jsons/dic_rougeEventOption.json new file mode 100644 index 000000000..ef53015f0 --- /dev/null +++ b/shared/resource/jsons/dic_rougeEventOption.json @@ -0,0 +1,155 @@ +[ + { + "id": 1, + "randomEventId": 1, + "optionGroup": 1, + "index": 1, + "text": "深入洞穴", + "afterGroup": 2, + "holyCardPlan": 0 + }, + { + "id": 2, + "randomEventId": 1, + "optionGroup": 1, + "index": 2, + "text": "止步于洞口", + "afterGroup": 3, + "holyCardPlan": 0 + }, + { + "id": 4, + "randomEventId": 1, + "optionGroup": 2, + "index": 1, + "text": "&", + "afterGroup": 4, + "holyCardPlan": 0 + }, + { + "id": 5, + "randomEventId": 1, + "optionGroup": 2, + "index": 2, + "text": "&", + "afterGroup": 4, + "holyCardPlan": 0 + }, + { + "id": 6, + "randomEventId": 1, + "optionGroup": 2, + "index": 3, + "text": "&", + "afterGroup": 4, + "holyCardPlan": 0 + }, + { + "id": 7, + "randomEventId": 1, + "optionGroup": 3, + "index": 1, + "text": "&", + "afterGroup": 4, + "holyCardPlan": 0 + }, + { + "id": 8, + "randomEventId": 1, + "optionGroup": 3, + "index": 2, + "text": "&", + "afterGroup": 4, + "holyCardPlan": 0 + }, + { + "id": 9, + "randomEventId": 1, + "optionGroup": 3, + "index": 3, + "text": "&", + "afterGroup": 4, + "holyCardPlan": 0 + }, + { + "id": 10, + "randomEventId": 1, + "optionGroup": 4, + "index": 1, + "text": "&", + "afterGroup": 5, + "holyCardPlan": 0 + }, + { + "id": 11, + "randomEventId": 1, + "optionGroup": 4, + "index": 2, + "text": "&", + "afterGroup": 0, + "holyCardPlan": 1 + }, + { + "id": 12, + "randomEventId": 1, + "optionGroup": 4, + "index": 3, + "text": "&", + "afterGroup": 0, + "holyCardPlan": 1 + }, + { + "id": 13, + "randomEventId": 1, + "optionGroup": 5, + "index": 1, + "text": "&", + "afterGroup": 0, + "holyCardPlan": 2 + }, + { + "id": 14, + "randomEventId": 1, + "optionGroup": 5, + "index": 2, + "text": "&", + "afterGroup": 0, + "holyCardPlan": 2 + }, + { + "id": 15, + "randomEventId": 1, + "optionGroup": 5, + "index": 3, + "text": "&", + "afterGroup": 0, + "holyCardPlan": 2 + }, + { + "id": 16, + "randomEventId": 2, + "optionGroup": 6, + "index": 1, + "text": "&", + "afterGroup": 0, + "holyCardPlan": 1 + }, + { + "id": 17, + "randomEventId": 2, + "optionGroup": 6, + "index": 2, + "text": "&", + "afterGroup": 0, + "holyCardPlan": 1 + }, + { + "id": 18, + "randomEventId": 2, + "optionGroup": 6, + "index": 3, + "text": "&", + "afterGroup": 0, + "holyCardPlan": 1 + } +] \ No newline at end of file diff --git a/shared/resource/jsons/dic_rougeHolyCard.json b/shared/resource/jsons/dic_rougeHolyCard.json new file mode 100644 index 000000000..15e91b25a --- /dev/null +++ b/shared/resource/jsons/dic_rougeHolyCard.json @@ -0,0 +1,542 @@ +[ + { + "id": 20001, + "name": "儒家圣物2", + "quality": 1, + "authorType": 1, + "imageName": "baowu10", + "seid": 31, + "effectId": "&", + "content": "进入战斗后,学员在战斗开始时获得250点怒气;怒气上限+500", + "useCount": 0, + "label": 1, + "collectReward": "31002&50", + "purchasePrice": 10, + "getLimit": 1 + }, + { + "id": 20002, + "name": "道家圣物2", + "quality": 1, + "authorType": 2, + "imageName": "baowu10", + "seid": 801, + "effectId": "&", + "content": "进入战斗后,学员移动+1", + "useCount": 0, + "label": 2, + "collectReward": "31002&50", + "purchasePrice": 20, + "getLimit": 1 + }, + { + "id": 20003, + "name": "墨家圣物2", + "quality": 1, + "authorType": 3, + "imageName": "baowu10", + "seid": 3601121, + "effectId": "&", + "content": "进入战斗后,学员获得初始护盾", + "useCount": 0, + "label": 3, + "collectReward": "31002&50", + "purchasePrice": 30, + "getLimit": 1 + }, + { + "id": 20004, + "name": "法家圣物2", + "quality": 1, + "authorType": 4, + "imageName": "baowu10", + "seid": 52203, + "effectId": "&", + "content": "进入战斗后,学员攻击+5%", + "useCount": 0, + "label": 1, + "collectReward": "31002&50", + "purchasePrice": 10, + "getLimit": 1 + }, + { + "id": 20005, + "name": "医家圣物2", + "quality": 1, + "authorType": 5, + "imageName": "baowu10", + "seid": 0, + "effectId": "20010101&", + "content": "每场战斗结束后,学员恢复血量上限5%的生命", + "useCount": 0, + "label": 2, + "collectReward": "31002&50", + "purchasePrice": 20, + "getLimit": 1 + }, + { + "id": 20006, + "name": "兵家圣物2", + "quality": 1, + "authorType": 6, + "imageName": "baowu10", + "seid": 360401312, + "effectId": "&", + "content": "进入战斗后,攻击敌军时有概率眩晕敌军", + "useCount": 0, + "label": 3, + "collectReward": "31002&50", + "purchasePrice": 30, + "getLimit": 1 + }, + { + "id": 20007, + "name": "阴阳圣物2", + "quality": 1, + "authorType": 7, + "imageName": "baowu10", + "seid": 4121702311, + "effectId": "&", + "content": "进入战斗后,敌军身上每有1个debuff,防御降低", + "useCount": 0, + "label": 1, + "collectReward": "31002&50", + "purchasePrice": 10, + "getLimit": 1 + }, + { + "id": 20008, + "name": "纵横圣物2", + "quality": 1, + "authorType": 8, + "imageName": "baowu10", + "seid": 5400101711, + "effectId": "&", + "content": "进入战斗后,连携时回复怒气+50", + "useCount": 0, + "label": 2, + "collectReward": "31002&50", + "purchasePrice": 20, + "getLimit": 1 + }, + { + "id": 20009, + "name": "圣物9", + "quality": 2, + "authorType": 0, + "imageName": "baowu15", + "seid": 4110201411, + "effectId": "&", + "content": "进入战斗后,敌军防御降低-10%", + "useCount": 1, + "label": 3, + "collectReward": "31002&50", + "purchasePrice": 30, + "getLimit": 1 + }, + { + "id": 20010, + "name": "圣物10", + "quality": 2, + "authorType": 0, + "imageName": "baowu19", + "seid": 4110201412, + "effectId": "&", + "content": "进入战斗后,每5回合学员攻击提升100%", + "useCount": 0, + "label": 2, + "collectReward": "31002&50", + "purchasePrice": 30, + "getLimit": 1 + }, + { + "id": 20011, + "name": "圣物11", + "quality": 2, + "authorType": 0, + "imageName": "baowu12", + "seid": 0, + "effectId": "20020101&", + "content": "获得该圣物时,所有学员立刻解锁1个特性槽", + "useCount": 0, + "label": 3, + "collectReward": "31002&50", + "purchasePrice": 30, + "getLimit": 1 + }, + { + "id": 20012, + "name": "圣物12", + "quality": 2, + "authorType": 0, + "imageName": "baowu9", + "seid": 0, + "effectId": "20030101&", + "content": "获得该圣物时,随机解锁1个学员的特性槽", + "useCount": 0, + "label": 1, + "collectReward": "31002&50", + "purchasePrice": 10, + "getLimit": 1 + }, + { + "id": 20013, + "name": "圣物13", + "quality": 2, + "authorType": 0, + "imageName": "baowu1", + "seid": 0, + "effectId": "20040101&", + "content": "战斗胜利后,获得的试炼币增加30%", + "useCount": 0, + "label": 2, + "collectReward": "31002&50", + "purchasePrice": 20, + "getLimit": 1 + }, + { + "id": 20014, + "name": "圣物14", + "quality": 2, + "authorType": 0, + "imageName": "baowu2", + "seid": 0, + "effectId": "20050101&", + "content": "每累积获得100个试炼币,全员攻击提高2%", + "useCount": 0, + "label": 3, + "collectReward": "31002&50", + "purchasePrice": 30, + "getLimit": 1 + }, + { + "id": 20015, + "name": "圣物15", + "quality": 2, + "authorType": 0, + "imageName": "baowu3", + "seid": 0, + "effectId": "20060101&", + "content": "随机升级2个已装备的特性", + "useCount": 0, + "label": 1, + "collectReward": "31002&50", + "purchasePrice": 10, + "getLimit": 1 + }, + { + "id": 20016, + "name": "儒家圣物1", + "quality": 2, + "authorType": 1, + "imageName": "baowu4", + "seid": 0, + "effectId": "20070101&", + "content": "获得儒家流派特性卡概率提高", + "useCount": 0, + "label": 2, + "collectReward": "31002&50", + "purchasePrice": 20, + "getLimit": 1 + }, + { + "id": 20017, + "name": "道家圣物1", + "quality": 2, + "authorType": 2, + "imageName": "baowu4", + "seid": 0, + "effectId": "20070201&", + "content": "获得道家流派特性卡概率提高", + "useCount": 0, + "label": 2, + "collectReward": "31002&50", + "purchasePrice": 20, + "getLimit": 1 + }, + { + "id": 20018, + "name": "墨家圣物1", + "quality": 2, + "authorType": 3, + "imageName": "baowu4", + "seid": 0, + "effectId": "20070301&", + "content": "获得墨家流派特性卡概率提高", + "useCount": 0, + "label": 2, + "collectReward": "31002&50", + "purchasePrice": 20, + "getLimit": 1 + }, + { + "id": 20019, + "name": "法家圣物1", + "quality": 2, + "authorType": 4, + "imageName": "baowu4", + "seid": 0, + "effectId": "20070401&", + "content": "获得法家流派特性卡概率提高", + "useCount": 0, + "label": 2, + "collectReward": "31002&50", + "purchasePrice": 20, + "getLimit": 1 + }, + { + "id": 20020, + "name": "医家圣物1", + "quality": 2, + "authorType": 5, + "imageName": "baowu4", + "seid": 0, + "effectId": "20070501&", + "content": "获得医家流派特性卡概率提高", + "useCount": 0, + "label": 2, + "collectReward": "31002&50", + "purchasePrice": 20, + "getLimit": 1 + }, + { + "id": 20021, + "name": "兵家圣物1", + "quality": 2, + "authorType": 6, + "imageName": "baowu4", + "seid": 0, + "effectId": "20070601&", + "content": "获得兵家流派特性卡概率提高", + "useCount": 0, + "label": 2, + "collectReward": "31002&50", + "purchasePrice": 20, + "getLimit": 1 + }, + { + "id": 20022, + "name": "阴阳圣物1", + "quality": 2, + "authorType": 7, + "imageName": "baowu4", + "seid": 0, + "effectId": "20070701&", + "content": "获得阴阳流派特性卡概率提高", + "useCount": 0, + "label": 2, + "collectReward": "31002&50", + "purchasePrice": 20, + "getLimit": 1 + }, + { + "id": 20023, + "name": "纵横圣物1", + "quality": 2, + "authorType": 8, + "imageName": "baowu4", + "seid": 0, + "effectId": "20070801&", + "content": "获得纵横流派特性卡概率提高", + "useCount": 0, + "label": 2, + "collectReward": "31002&50", + "purchasePrice": 20, + "getLimit": 1 + }, + { + "id": 20024, + "name": "圣物24", + "quality": 2, + "authorType": 0, + "imageName": "baowu15", + "seid": 0, + "effectId": "20080101&", + "content": "进入战斗后,所有敌军扣减30%的生命,触发3次后损毁", + "useCount": 3, + "label": 3, + "collectReward": "31002&50", + "purchasePrice": 30, + "getLimit": 1 + }, + { + "id": 20025, + "name": "圣物25", + "quality": 3, + "authorType": 0, + "imageName": "baowu11", + "seid": 0, + "effectId": "20090101&", + "content": "非首领敌人战斗失败视为胜利,并且满血复活,生效1次后损毁", + "useCount": 1, + "label": 1, + "collectReward": "31002&50", + "purchasePrice": 10, + "getLimit": 1 + }, + { + "id": 20026, + "name": "圣物26", + "quality": 2, + "authorType": 0, + "imageName": "baowu20", + "seid": 0, + "effectId": "20100101&", + "content": "战斗胜利后若有学员死亡,则满血复活一名死亡学员,触发1次后损毁", + "useCount": 1, + "label": 2, + "collectReward": "31002&50", + "purchasePrice": 20, + "getLimit": 1 + }, + { + "id": 20027, + "name": "圣物27", + "quality": 2, + "authorType": 0, + "imageName": "baowu6", + "seid": 0, + "effectId": "20110101&", + "content": "试炼商店中所有商品7折出售", + "useCount": 0, + "label": 3, + "collectReward": "31002&50", + "purchasePrice": 30, + "getLimit": 1 + }, + { + "id": 20028, + "name": "圣物28", + "quality": 3, + "authorType": 0, + "imageName": "baowu7", + "seid": 0, + "effectId": "20120101&", + "content": "获得该圣物时立即升级所有1星特性卡", + "useCount": 0, + "label": 1, + "collectReward": "31002&50", + "purchasePrice": 10, + "getLimit": 1 + }, + { + "id": 20029, + "name": "圣物29", + "quality": 3, + "authorType": 0, + "imageName": "baowu5", + "seid": 0, + "effectId": "20130101&", + "content": "下次选择特性卡时必定出现2星特性卡,触发1次后损毁", + "useCount": 1, + "label": 2, + "collectReward": "31002&50", + "purchasePrice": 20, + "getLimit": 1 + }, + { + "id": 20030, + "name": "圣物30", + "quality": 2, + "authorType": 0, + "imageName": "baowu13", + "seid": 0, + "effectId": "20140101&", + "content": "下次选择特性卡时可多选1张特性卡,触发2次后损毁", + "useCount": 2, + "label": 3, + "collectReward": "31002&50", + "purchasePrice": 30, + "getLimit": 1 + }, + { + "id": 20031, + "name": "圣物31", + "quality": 2, + "authorType": 0, + "imageName": "baowu14", + "seid": 0, + "effectId": "20150101&", + "content": "获得该圣物后,随机修复2个已损毁的圣物", + "useCount": 0, + "label": 3, + "collectReward": "31002&50", + "purchasePrice": 40, + "getLimit": 1 + }, + { + "id": 20032, + "name": "圣物33", + "quality": 2, + "authorType": 0, + "imageName": "baowu17", + "seid": 0, + "effectId": "20170101&", + "content": "休整点额外恢复10%的生命", + "useCount": 0, + "label": 3, + "collectReward": "31002&50", + "purchasePrice": 40, + "getLimit": 1 + }, + { + "id": 20033, + "name": "圣物34", + "quality": 2, + "authorType": 0, + "imageName": "baowu18", + "seid": 0, + "effectId": "20180101&", + "content": "休整点特训价格降低20%", + "useCount": 0, + "label": 3, + "collectReward": "31002&50", + "purchasePrice": 30, + "getLimit": 1 + }, + { + "id": 20034, + "name": "圣物35", + "quality": 2, + "authorType": 0, + "imageName": "baowu14", + "seid": 0, + "effectId": "20230101&", + "content": "拥有该圣物时,所有角色解锁1号位特性槽", + "useCount": 0, + "label": 3, + "collectReward": "31002&50", + "purchasePrice": 40, + "getLimit": 1 + }, + { + "id": 20035, + "name": "圣物36", + "quality": 2, + "authorType": 0, + "imageName": "baowu17", + "seid": 0, + "effectId": "20230102&", + "content": "拥有该圣物时,所有角色解锁2号位特性槽", + "useCount": 0, + "label": 3, + "collectReward": "31002&50", + "purchasePrice": 40, + "getLimit": 1 + }, + { + "id": 20036, + "name": "圣物37", + "quality": 2, + "authorType": 0, + "imageName": "baowu18", + "seid": 0, + "effectId": "20230103&", + "content": "拥有该圣物时,所有角色解锁3号位特性槽", + "useCount": 0, + "label": 3, + "collectReward": "31002&50", + "purchasePrice": 30, + "getLimit": 1 + } +] \ No newline at end of file diff --git a/shared/resource/jsons/dic_rougeHoly_cardPlan.json b/shared/resource/jsons/dic_rougeHoly_cardPlan.json new file mode 100644 index 000000000..a3c8399f9 --- /dev/null +++ b/shared/resource/jsons/dic_rougeHoly_cardPlan.json @@ -0,0 +1,404 @@ +[ + { + "id": 1, + "planId": 1, + "cardId": 20001, + "weight": 1 + }, + { + "id": 2, + "planId": 1, + "cardId": 20002, + "weight": 1 + }, + { + "id": 3, + "planId": 1, + "cardId": 20003, + "weight": 1 + }, + { + "id": 4, + "planId": 1, + "cardId": 20004, + "weight": 1 + }, + { + "id": 5, + "planId": 1, + "cardId": 20005, + "weight": 1 + }, + { + "id": 6, + "planId": 1, + "cardId": 20006, + "weight": 1 + }, + { + "id": 7, + "planId": 1, + "cardId": 20007, + "weight": 1 + }, + { + "id": 8, + "planId": 1, + "cardId": 20008, + "weight": 1 + }, + { + "id": 9, + "planId": 2, + "cardId": 20009, + "weight": 1 + }, + { + "id": 10, + "planId": 2, + "cardId": 20010, + "weight": 1 + }, + { + "id": 11, + "planId": 2, + "cardId": 20011, + "weight": 1 + }, + { + "id": 12, + "planId": 2, + "cardId": 20012, + "weight": 1 + }, + { + "id": 13, + "planId": 2, + "cardId": 20013, + "weight": 1 + }, + { + "id": 14, + "planId": 2, + "cardId": 20014, + "weight": 1 + }, + { + "id": 15, + "planId": 2, + "cardId": 20015, + "weight": 1 + }, + { + "id": 16, + "planId": 2, + "cardId": 20016, + "weight": 1 + }, + { + "id": 17, + "planId": 2, + "cardId": 20017, + "weight": 1 + }, + { + "id": 18, + "planId": 2, + "cardId": 20018, + "weight": 1 + }, + { + "id": 19, + "planId": 2, + "cardId": 20019, + "weight": 1 + }, + { + "id": 20, + "planId": 2, + "cardId": 20020, + "weight": 1 + }, + { + "id": 21, + "planId": 3, + "cardId": 20021, + "weight": 1 + }, + { + "id": 22, + "planId": 3, + "cardId": 20022, + "weight": 1 + }, + { + "id": 23, + "planId": 3, + "cardId": 20023, + "weight": 1 + }, + { + "id": 24, + "planId": 3, + "cardId": 20024, + "weight": 1 + }, + { + "id": 25, + "planId": 3, + "cardId": 20025, + "weight": 1 + }, + { + "id": 26, + "planId": 3, + "cardId": 20026, + "weight": 1 + }, + { + "id": 27, + "planId": 3, + "cardId": 20027, + "weight": 1 + }, + { + "id": 28, + "planId": 3, + "cardId": 20028, + "weight": 1 + }, + { + "id": 29, + "planId": 3, + "cardId": 20029, + "weight": 1 + }, + { + "id": 30, + "planId": 3, + "cardId": 20030, + "weight": 1 + }, + { + "id": 31, + "planId": 3, + "cardId": 20031, + "weight": 1 + }, + { + "id": 32, + "planId": 3, + "cardId": 20032, + "weight": 1 + }, + { + "id": 33, + "planId": 3, + "cardId": 20033, + "weight": 1 + }, + { + "id": 34, + "planId": 7, + "cardId": 20011, + "weight": 1 + }, + { + "id": 35, + "planId": 8, + "cardId": 20001, + "weight": 1 + }, + { + "id": 36, + "planId": 9, + "cardId": 20002, + "weight": 1 + }, + { + "id": 37, + "planId": 10, + "cardId": 20003, + "weight": 1 + }, + { + "id": 38, + "planId": 11, + "cardId": 20004, + "weight": 1 + }, + { + "id": 39, + "planId": 12, + "cardId": 20005, + "weight": 1 + }, + { + "id": 40, + "planId": 13, + "cardId": 20006, + "weight": 1 + }, + { + "id": 41, + "planId": 14, + "cardId": 20007, + "weight": 1 + }, + { + "id": 42, + "planId": 15, + "cardId": 20008, + "weight": 1 + }, + { + "id": 43, + "planId": 16, + "cardId": 20009, + "weight": 1 + }, + { + "id": 44, + "planId": 17, + "cardId": 20010, + "weight": 1 + }, + { + "id": 45, + "planId": 18, + "cardId": 20011, + "weight": 1 + }, + { + "id": 46, + "planId": 19, + "cardId": 20012, + "weight": 1 + }, + { + "id": 47, + "planId": 20, + "cardId": 20013, + "weight": 1 + }, + { + "id": 48, + "planId": 21, + "cardId": 20014, + "weight": 1 + }, + { + "id": 49, + "planId": 22, + "cardId": 20015, + "weight": 1 + }, + { + "id": 50, + "planId": 23, + "cardId": 20016, + "weight": 1 + }, + { + "id": 51, + "planId": 24, + "cardId": 20017, + "weight": 1 + }, + { + "id": 52, + "planId": 25, + "cardId": 20018, + "weight": 1 + }, + { + "id": 53, + "planId": 26, + "cardId": 20019, + "weight": 1 + }, + { + "id": 54, + "planId": 27, + "cardId": 20020, + "weight": 1 + }, + { + "id": 55, + "planId": 28, + "cardId": 20021, + "weight": 1 + }, + { + "id": 56, + "planId": 29, + "cardId": 20022, + "weight": 1 + }, + { + "id": 57, + "planId": 30, + "cardId": 20023, + "weight": 1 + }, + { + "id": 58, + "planId": 31, + "cardId": 20024, + "weight": 1 + }, + { + "id": 59, + "planId": 32, + "cardId": 20025, + "weight": 1 + }, + { + "id": 60, + "planId": 33, + "cardId": 20026, + "weight": 1 + }, + { + "id": 61, + "planId": 34, + "cardId": 20027, + "weight": 1 + }, + { + "id": 62, + "planId": 35, + "cardId": 20028, + "weight": 1 + }, + { + "id": 63, + "planId": 36, + "cardId": 20029, + "weight": 1 + }, + { + "id": 64, + "planId": 37, + "cardId": 20030, + "weight": 1 + }, + { + "id": 65, + "planId": 38, + "cardId": 20031, + "weight": 1 + }, + { + "id": 66, + "planId": 39, + "cardId": 20032, + "weight": 1 + }, + { + "id": 67, + "planId": 40, + "cardId": 20033, + "weight": 1 + } +] \ No newline at end of file diff --git a/shared/resource/jsons/dic_rougeLayer_nodeNumPlan.json b/shared/resource/jsons/dic_rougeLayer_nodeNumPlan.json new file mode 100644 index 000000000..be06a120a --- /dev/null +++ b/shared/resource/jsons/dic_rougeLayer_nodeNumPlan.json @@ -0,0 +1,68 @@ +[ + { + "id": 1, + "nodeNumPlanId": 1, + "nodeNum": 1, + "weight": 100 + }, + { + "id": 3, + "nodeNumPlanId": 2, + "nodeNum": 2, + "weight": 30 + }, + { + "id": 4, + "nodeNumPlanId": 2, + "nodeNum": 3, + "weight": 50 + }, + { + "id": 5, + "nodeNumPlanId": 2, + "nodeNum": 4, + "weight": 20 + }, + { + "id": 6, + "nodeNumPlanId": 3, + "nodeNum": 1, + "weight": 10 + }, + { + "id": 7, + "nodeNumPlanId": 3, + "nodeNum": 2, + "weight": 50 + }, + { + "id": 8, + "nodeNumPlanId": 3, + "nodeNum": 3, + "weight": 40 + }, + { + "id": 9, + "nodeNumPlanId": 4, + "nodeNum": 1, + "weight": 30 + }, + { + "id": 10, + "nodeNumPlanId": 4, + "nodeNum": 2, + "weight": 70 + }, + { + "id": 11, + "nodeNumPlanId": 5, + "nodeNum": 2, + "weight": 40 + }, + { + "id": 12, + "nodeNumPlanId": 5, + "nodeNum": 3, + "weight": 60 + } +] \ No newline at end of file diff --git a/shared/resource/jsons/dic_rougeLayer_nodePlan.json b/shared/resource/jsons/dic_rougeLayer_nodePlan.json new file mode 100644 index 000000000..7c360ca26 --- /dev/null +++ b/shared/resource/jsons/dic_rougeLayer_nodePlan.json @@ -0,0 +1,36368 @@ +[ + { + "id": 1, + "nodePlanId": 10101, + "nodeId": 1110101, + "weight": 1 + }, + { + "id": 2, + "nodePlanId": 10101, + "nodeId": 1110201, + "weight": 1 + }, + { + "id": 3, + "nodePlanId": 10102, + "nodeId": 1110301, + "weight": 1 + }, + { + "id": 4, + "nodePlanId": 10102, + "nodeId": 1110401, + "weight": 1 + }, + { + "id": 5, + "nodePlanId": 10102, + "nodeId": 1110501, + "weight": 1 + }, + { + "id": 6, + "nodePlanId": 10102, + "nodeId": 1110601, + "weight": 1 + }, + { + "id": 7, + "nodePlanId": 10103, + "nodeId": 1110301, + "weight": 1 + }, + { + "id": 8, + "nodePlanId": 10103, + "nodeId": 4110101, + "weight": 1 + }, + { + "id": 9, + "nodePlanId": 10104, + "nodeId": 5110101, + "weight": 1 + }, + { + "id": 10, + "nodePlanId": 10105, + "nodeId": 2110201, + "weight": 1 + }, + { + "id": 11, + "nodePlanId": 20101, + "nodeId": 1110101, + "weight": 1 + }, + { + "id": 12, + "nodePlanId": 20101, + "nodeId": 1110201, + "weight": 1 + }, + { + "id": 13, + "nodePlanId": 20101, + "nodeId": 1110301, + "weight": 1 + }, + { + "id": 14, + "nodePlanId": 20101, + "nodeId": 1110401, + "weight": 1 + }, + { + "id": 15, + "nodePlanId": 20101, + "nodeId": 1110501, + "weight": 1 + }, + { + "id": 16, + "nodePlanId": 20101, + "nodeId": 1110601, + "weight": 1 + }, + { + "id": 17, + "nodePlanId": 20101, + "nodeId": 1110701, + "weight": 1 + }, + { + "id": 18, + "nodePlanId": 20101, + "nodeId": 1110801, + "weight": 1 + }, + { + "id": 19, + "nodePlanId": 20101, + "nodeId": 1110101, + "weight": 1 + }, + { + "id": 20, + "nodePlanId": 20101, + "nodeId": 1110201, + "weight": 1 + }, + { + "id": 21, + "nodePlanId": 20101, + "nodeId": 1110301, + "weight": 1 + }, + { + "id": 22, + "nodePlanId": 20101, + "nodeId": 1110401, + "weight": 1 + }, + { + "id": 23, + "nodePlanId": 20101, + "nodeId": 1110501, + "weight": 1 + }, + { + "id": 24, + "nodePlanId": 20101, + "nodeId": 1110601, + "weight": 1 + }, + { + "id": 25, + "nodePlanId": 20101, + "nodeId": 1110701, + "weight": 1 + }, + { + "id": 26, + "nodePlanId": 20101, + "nodeId": 1110801, + "weight": 1 + }, + { + "id": 27, + "nodePlanId": 20101, + "nodeId": 1110101, + "weight": 1 + }, + { + "id": 28, + "nodePlanId": 20102, + "nodeId": 1110201, + "weight": 1 + }, + { + "id": 29, + "nodePlanId": 20102, + "nodeId": 1110301, + "weight": 1 + }, + { + "id": 30, + "nodePlanId": 20102, + "nodeId": 1110401, + "weight": 1 + }, + { + "id": 31, + "nodePlanId": 20102, + "nodeId": 1110501, + "weight": 1 + }, + { + "id": 32, + "nodePlanId": 20102, + "nodeId": 1110601, + "weight": 1 + }, + { + "id": 33, + "nodePlanId": 20102, + "nodeId": 1110701, + "weight": 1 + }, + { + "id": 34, + "nodePlanId": 20102, + "nodeId": 1110801, + "weight": 1 + }, + { + "id": 35, + "nodePlanId": 20102, + "nodeId": 2110101, + "weight": 4 + }, + { + "id": 36, + "nodePlanId": 20102, + "nodeId": 2110201, + "weight": 4 + }, + { + "id": 37, + "nodePlanId": 20102, + "nodeId": 6110101, + "weight": 8 + }, + { + "id": 38, + "nodePlanId": 20102, + "nodeId": 2110301, + "weight": 1 + }, + { + "id": 39, + "nodePlanId": 20102, + "nodeId": 2110401, + "weight": 1 + }, + { + "id": 40, + "nodePlanId": 20102, + "nodeId": 2110501, + "weight": 1 + }, + { + "id": 41, + "nodePlanId": 20102, + "nodeId": 2110601, + "weight": 1 + }, + { + "id": 42, + "nodePlanId": 20102, + "nodeId": 5110101, + "weight": 1 + }, + { + "id": 43, + "nodePlanId": 20102, + "nodeId": 1120101, + "weight": 1 + }, + { + "id": 44, + "nodePlanId": 20102, + "nodeId": 1120201, + "weight": 1 + }, + { + "id": 45, + "nodePlanId": 20102, + "nodeId": 1120301, + "weight": 1 + }, + { + "id": 46, + "nodePlanId": 20102, + "nodeId": 1120401, + "weight": 1 + }, + { + "id": 47, + "nodePlanId": 20102, + "nodeId": 1120501, + "weight": 1 + }, + { + "id": 48, + "nodePlanId": 20102, + "nodeId": 1120601, + "weight": 1 + }, + { + "id": 49, + "nodePlanId": 20103, + "nodeId": 1120701, + "weight": 1 + }, + { + "id": 50, + "nodePlanId": 20103, + "nodeId": 1120801, + "weight": 1 + }, + { + "id": 51, + "nodePlanId": 20103, + "nodeId": 2120101, + "weight": 2 + }, + { + "id": 52, + "nodePlanId": 20103, + "nodeId": 2120201, + "weight": 2 + }, + { + "id": 53, + "nodePlanId": 20103, + "nodeId": 2120301, + "weight": 1 + }, + { + "id": 54, + "nodePlanId": 20103, + "nodeId": 2120401, + "weight": 1 + }, + { + "id": 55, + "nodePlanId": 20103, + "nodeId": 2120501, + "weight": 1 + }, + { + "id": 56, + "nodePlanId": 20103, + "nodeId": 2120601, + "weight": 1 + }, + { + "id": 57, + "nodePlanId": 20103, + "nodeId": 4110101, + "weight": 3 + }, + { + "id": 58, + "nodePlanId": 20103, + "nodeId": 6110101, + "weight": 3 + }, + { + "id": 59, + "nodePlanId": 20103, + "nodeId": 1120101, + "weight": 1 + }, + { + "id": 60, + "nodePlanId": 20103, + "nodeId": 1120201, + "weight": 1 + }, + { + "id": 61, + "nodePlanId": 20103, + "nodeId": 1120301, + "weight": 1 + }, + { + "id": 62, + "nodePlanId": 20103, + "nodeId": 1120401, + "weight": 1 + }, + { + "id": 63, + "nodePlanId": 20103, + "nodeId": 1120501, + "weight": 1 + }, + { + "id": 64, + "nodePlanId": 20103, + "nodeId": 1120601, + "weight": 1 + }, + { + "id": 65, + "nodePlanId": 20103, + "nodeId": 1120701, + "weight": 1 + }, + { + "id": 66, + "nodePlanId": 20103, + "nodeId": 1120801, + "weight": 1 + }, + { + "id": 67, + "nodePlanId": 20103, + "nodeId": 2120101, + "weight": 1 + }, + { + "id": 68, + "nodePlanId": 20103, + "nodeId": 2120201, + "weight": 1 + }, + { + "id": 69, + "nodePlanId": 20103, + "nodeId": 2120301, + "weight": 2 + }, + { + "id": 70, + "nodePlanId": 20103, + "nodeId": 2120401, + "weight": 2 + }, + { + "id": 71, + "nodePlanId": 20103, + "nodeId": 2120501, + "weight": 1 + }, + { + "id": 72, + "nodePlanId": 20104, + "nodeId": 2120601, + "weight": 1 + }, + { + "id": 73, + "nodePlanId": 20104, + "nodeId": 5110101, + "weight": 3 + }, + { + "id": 74, + "nodePlanId": 20104, + "nodeId": 1120101, + "weight": 1 + }, + { + "id": 75, + "nodePlanId": 20104, + "nodeId": 1120201, + "weight": 1 + }, + { + "id": 76, + "nodePlanId": 20104, + "nodeId": 1120301, + "weight": 1 + }, + { + "id": 77, + "nodePlanId": 20104, + "nodeId": 1120401, + "weight": 1 + }, + { + "id": 78, + "nodePlanId": 20104, + "nodeId": 1120501, + "weight": 1 + }, + { + "id": 79, + "nodePlanId": 20104, + "nodeId": 1120601, + "weight": 1 + }, + { + "id": 80, + "nodePlanId": 20104, + "nodeId": 1120701, + "weight": 1 + }, + { + "id": 81, + "nodePlanId": 20104, + "nodeId": 1120801, + "weight": 1 + }, + { + "id": 82, + "nodePlanId": 20104, + "nodeId": 2120101, + "weight": 1 + }, + { + "id": 83, + "nodePlanId": 20104, + "nodeId": 2120201, + "weight": 1 + }, + { + "id": 84, + "nodePlanId": 20104, + "nodeId": 2120301, + "weight": 1 + }, + { + "id": 85, + "nodePlanId": 20104, + "nodeId": 2120401, + "weight": 1 + }, + { + "id": 86, + "nodePlanId": 20104, + "nodeId": 2120501, + "weight": 2 + }, + { + "id": 87, + "nodePlanId": 20104, + "nodeId": 2120601, + "weight": 2 + }, + { + "id": 88, + "nodePlanId": 20104, + "nodeId": 5110101, + "weight": 3 + }, + { + "id": 89, + "nodePlanId": 20104, + "nodeId": 6110101, + "weight": 3 + }, + { + "id": 90, + "nodePlanId": 20104, + "nodeId": 3110101, + "weight": 1 + }, + { + "id": 91, + "nodePlanId": 20104, + "nodeId": 1120101, + "weight": 1 + }, + { + "id": 92, + "nodePlanId": 20104, + "nodeId": 1120201, + "weight": 1 + }, + { + "id": 93, + "nodePlanId": 20104, + "nodeId": 1120301, + "weight": 1 + }, + { + "id": 94, + "nodePlanId": 20105, + "nodeId": 1120401, + "weight": 1 + }, + { + "id": 95, + "nodePlanId": 20105, + "nodeId": 1120501, + "weight": 1 + }, + { + "id": 96, + "nodePlanId": 20105, + "nodeId": 1120601, + "weight": 1 + }, + { + "id": 97, + "nodePlanId": 20105, + "nodeId": 1120701, + "weight": 1 + }, + { + "id": 98, + "nodePlanId": 20105, + "nodeId": 1120801, + "weight": 1 + }, + { + "id": 99, + "nodePlanId": 20105, + "nodeId": 2120101, + "weight": 1 + }, + { + "id": 100, + "nodePlanId": 20105, + "nodeId": 2120201, + "weight": 1 + }, + { + "id": 101, + "nodePlanId": 20105, + "nodeId": 2120301, + "weight": 1 + }, + { + "id": 102, + "nodePlanId": 20105, + "nodeId": 2120401, + "weight": 1 + }, + { + "id": 103, + "nodePlanId": 20105, + "nodeId": 2120501, + "weight": 2 + }, + { + "id": 104, + "nodePlanId": 20105, + "nodeId": 2120601, + "weight": 2 + }, + { + "id": 105, + "nodePlanId": 20105, + "nodeId": 5110101, + "weight": 3 + }, + { + "id": 106, + "nodePlanId": 20105, + "nodeId": 6110101, + "weight": 3 + }, + { + "id": 107, + "nodePlanId": 20105, + "nodeId": 1120101, + "weight": 1 + }, + { + "id": 108, + "nodePlanId": 20105, + "nodeId": 1120201, + "weight": 1 + }, + { + "id": 109, + "nodePlanId": 20105, + "nodeId": 1120301, + "weight": 1 + }, + { + "id": 110, + "nodePlanId": 20105, + "nodeId": 1120401, + "weight": 1 + }, + { + "id": 111, + "nodePlanId": 20105, + "nodeId": 1120501, + "weight": 1 + }, + { + "id": 112, + "nodePlanId": 20105, + "nodeId": 1120601, + "weight": 1 + }, + { + "id": 113, + "nodePlanId": 20105, + "nodeId": 1120701, + "weight": 1 + }, + { + "id": 114, + "nodePlanId": 20105, + "nodeId": 1120801, + "weight": 1 + }, + { + "id": 115, + "nodePlanId": 20105, + "nodeId": 2120101, + "weight": 1 + }, + { + "id": 116, + "nodePlanId": 20105, + "nodeId": 2120201, + "weight": 1 + }, + { + "id": 117, + "nodePlanId": 20105, + "nodeId": 2120301, + "weight": 1 + }, + { + "id": 118, + "nodePlanId": 20105, + "nodeId": 2120401, + "weight": 1 + }, + { + "id": 119, + "nodePlanId": 20105, + "nodeId": 2120501, + "weight": 2 + }, + { + "id": 120, + "nodePlanId": 20105, + "nodeId": 2120601, + "weight": 2 + }, + { + "id": 121, + "nodePlanId": 20106, + "nodeId": 4110101, + "weight": 2 + }, + { + "id": 122, + "nodePlanId": 20106, + "nodeId": 6110101, + "weight": 2 + }, + { + "id": 123, + "nodePlanId": 20106, + "nodeId": 6110101, + "weight": 2 + }, + { + "id": 124, + "nodePlanId": 20106, + "nodeId": 1130101, + "weight": 1 + }, + { + "id": 125, + "nodePlanId": 20106, + "nodeId": 1130201, + "weight": 1 + }, + { + "id": 126, + "nodePlanId": 20106, + "nodeId": 1130301, + "weight": 1 + }, + { + "id": 127, + "nodePlanId": 20106, + "nodeId": 1130401, + "weight": 1 + }, + { + "id": 128, + "nodePlanId": 20106, + "nodeId": 1130501, + "weight": 1 + }, + { + "id": 129, + "nodePlanId": 20106, + "nodeId": 2130101, + "weight": 1.5 + }, + { + "id": 130, + "nodePlanId": 20106, + "nodeId": 2130201, + "weight": 1.5 + }, + { + "id": 131, + "nodePlanId": 20106, + "nodeId": 2130301, + "weight": 1 + }, + { + "id": 132, + "nodePlanId": 20106, + "nodeId": 2130401, + "weight": 1 + }, + { + "id": 133, + "nodePlanId": 20106, + "nodeId": 2130501, + "weight": 1 + }, + { + "id": 134, + "nodePlanId": 20106, + "nodeId": 2130601, + "weight": 1 + }, + { + "id": 135, + "nodePlanId": 20106, + "nodeId": 1130601, + "weight": 1 + }, + { + "id": 136, + "nodePlanId": 20106, + "nodeId": 1130701, + "weight": 1 + }, + { + "id": 137, + "nodePlanId": 20106, + "nodeId": 1130801, + "weight": 1 + }, + { + "id": 138, + "nodePlanId": 20106, + "nodeId": 2130101, + "weight": 1 + }, + { + "id": 139, + "nodePlanId": 20106, + "nodeId": 2130201, + "weight": 1 + }, + { + "id": 140, + "nodePlanId": 20106, + "nodeId": 2130301, + "weight": 2 + }, + { + "id": 141, + "nodePlanId": 20106, + "nodeId": 2130401, + "weight": 2 + }, + { + "id": 142, + "nodePlanId": 20106, + "nodeId": 2130501, + "weight": 1 + }, + { + "id": 143, + "nodePlanId": 20106, + "nodeId": 2130601, + "weight": 1 + }, + { + "id": 144, + "nodePlanId": 20106, + "nodeId": 5110101, + "weight": 3 + }, + { + "id": 145, + "nodePlanId": 20106, + "nodeId": 6110101, + "weight": 2 + }, + { + "id": 146, + "nodePlanId": 20106, + "nodeId": 4110101, + "weight": 1 + }, + { + "id": 147, + "nodePlanId": 20106, + "nodeId": 7110101, + "weight": 1 + }, + { + "id": 148, + "nodePlanId": 20106, + "nodeId": 1110102, + "weight": 1 + }, + { + "id": 149, + "nodePlanId": 20106, + "nodeId": 1110202, + "weight": 1 + }, + { + "id": 150, + "nodePlanId": 20106, + "nodeId": 1110302, + "weight": 1 + }, + { + "id": 151, + "nodePlanId": 20106, + "nodeId": 1110402, + "weight": 1 + }, + { + "id": 152, + "nodePlanId": 20106, + "nodeId": 1110502, + "weight": 1 + }, + { + "id": 153, + "nodePlanId": 20106, + "nodeId": 1110602, + "weight": 1 + }, + { + "id": 154, + "nodePlanId": 20106, + "nodeId": 1110702, + "weight": 1 + }, + { + "id": 155, + "nodePlanId": 20106, + "nodeId": 1110802, + "weight": 1 + }, + { + "id": 156, + "nodePlanId": 20106, + "nodeId": 1110102, + "weight": 1 + }, + { + "id": 157, + "nodePlanId": 20106, + "nodeId": 1110202, + "weight": 1 + }, + { + "id": 158, + "nodePlanId": 20106, + "nodeId": 1110302, + "weight": 1 + }, + { + "id": 159, + "nodePlanId": 20106, + "nodeId": 1110402, + "weight": 1 + }, + { + "id": 160, + "nodePlanId": 20106, + "nodeId": 1110502, + "weight": 1 + }, + { + "id": 161, + "nodePlanId": 20106, + "nodeId": 1110602, + "weight": 1 + }, + { + "id": 162, + "nodePlanId": 20106, + "nodeId": 1110702, + "weight": 1 + }, + { + "id": 163, + "nodePlanId": 20106, + "nodeId": 1110802, + "weight": 1 + }, + { + "id": 164, + "nodePlanId": 20106, + "nodeId": 1110102, + "weight": 1 + }, + { + "id": 165, + "nodePlanId": 20106, + "nodeId": 1110202, + "weight": 1 + }, + { + "id": 166, + "nodePlanId": 20106, + "nodeId": 1110302, + "weight": 1 + }, + { + "id": 167, + "nodePlanId": 20106, + "nodeId": 1110402, + "weight": 1 + }, + { + "id": 168, + "nodePlanId": 20106, + "nodeId": 1110502, + "weight": 1 + }, + { + "id": 169, + "nodePlanId": 20106, + "nodeId": 1110602, + "weight": 1 + }, + { + "id": 170, + "nodePlanId": 20106, + "nodeId": 1110702, + "weight": 1 + }, + { + "id": 171, + "nodePlanId": 20106, + "nodeId": 1110802, + "weight": 1 + }, + { + "id": 172, + "nodePlanId": 20106, + "nodeId": 2110102, + "weight": 4 + }, + { + "id": 173, + "nodePlanId": 20106, + "nodeId": 2110202, + "weight": 4 + }, + { + "id": 174, + "nodePlanId": 20106, + "nodeId": 6110102, + "weight": 8 + }, + { + "id": 175, + "nodePlanId": 20106, + "nodeId": 2110302, + "weight": 1 + }, + { + "id": 176, + "nodePlanId": 20106, + "nodeId": 2110402, + "weight": 1 + }, + { + "id": 177, + "nodePlanId": 20106, + "nodeId": 2110502, + "weight": 1 + }, + { + "id": 178, + "nodePlanId": 20106, + "nodeId": 2110602, + "weight": 1 + }, + { + "id": 179, + "nodePlanId": 20106, + "nodeId": 5110102, + "weight": 1 + }, + { + "id": 180, + "nodePlanId": 20106, + "nodeId": 1120102, + "weight": 1 + }, + { + "id": 181, + "nodePlanId": 20106, + "nodeId": 1120202, + "weight": 1 + }, + { + "id": 182, + "nodePlanId": 20106, + "nodeId": 1120302, + "weight": 1 + }, + { + "id": 183, + "nodePlanId": 20106, + "nodeId": 1120402, + "weight": 1 + }, + { + "id": 184, + "nodePlanId": 20106, + "nodeId": 1120502, + "weight": 1 + }, + { + "id": 185, + "nodePlanId": 20106, + "nodeId": 1120602, + "weight": 1 + }, + { + "id": 186, + "nodePlanId": 20106, + "nodeId": 1120702, + "weight": 1 + }, + { + "id": 187, + "nodePlanId": 20106, + "nodeId": 1120802, + "weight": 1 + }, + { + "id": 188, + "nodePlanId": 20106, + "nodeId": 2120102, + "weight": 2 + }, + { + "id": 189, + "nodePlanId": 20107, + "nodeId": 2120202, + "weight": 2 + }, + { + "id": 190, + "nodePlanId": 20107, + "nodeId": 2120302, + "weight": 1 + }, + { + "id": 191, + "nodePlanId": 20107, + "nodeId": 2120402, + "weight": 1 + }, + { + "id": 192, + "nodePlanId": 20107, + "nodeId": 2120502, + "weight": 1 + }, + { + "id": 193, + "nodePlanId": 20107, + "nodeId": 2120602, + "weight": 1 + }, + { + "id": 194, + "nodePlanId": 20107, + "nodeId": 4110102, + "weight": 3 + }, + { + "id": 195, + "nodePlanId": 20107, + "nodeId": 6110102, + "weight": 3 + }, + { + "id": 196, + "nodePlanId": 20107, + "nodeId": 1120102, + "weight": 1 + }, + { + "id": 197, + "nodePlanId": 20107, + "nodeId": 1120202, + "weight": 1 + }, + { + "id": 198, + "nodePlanId": 20107, + "nodeId": 1120302, + "weight": 1 + }, + { + "id": 199, + "nodePlanId": 20107, + "nodeId": 1120402, + "weight": 1 + }, + { + "id": 200, + "nodePlanId": 20107, + "nodeId": 1120502, + "weight": 1 + }, + { + "id": 201, + "nodePlanId": 20107, + "nodeId": 1120602, + "weight": 1 + }, + { + "id": 202, + "nodePlanId": 20107, + "nodeId": 1120702, + "weight": 1 + }, + { + "id": 203, + "nodePlanId": 20107, + "nodeId": 1120802, + "weight": 1 + }, + { + "id": 204, + "nodePlanId": 20107, + "nodeId": 2120102, + "weight": 1 + }, + { + "id": 205, + "nodePlanId": 20107, + "nodeId": 2120202, + "weight": 1 + }, + { + "id": 206, + "nodePlanId": 20107, + "nodeId": 2120302, + "weight": 2 + }, + { + "id": 207, + "nodePlanId": 20107, + "nodeId": 2120402, + "weight": 2 + }, + { + "id": 208, + "nodePlanId": 20107, + "nodeId": 2120502, + "weight": 1 + }, + { + "id": 209, + "nodePlanId": 20107, + "nodeId": 2120602, + "weight": 1 + }, + { + "id": 210, + "nodePlanId": 20107, + "nodeId": 5110102, + "weight": 3 + }, + { + "id": 211, + "nodePlanId": 20107, + "nodeId": 1120102, + "weight": 1 + }, + { + "id": 212, + "nodePlanId": 20107, + "nodeId": 1120202, + "weight": 1 + }, + { + "id": 213, + "nodePlanId": 20107, + "nodeId": 1120302, + "weight": 1 + }, + { + "id": 214, + "nodePlanId": 20107, + "nodeId": 1120402, + "weight": 1 + }, + { + "id": 215, + "nodePlanId": 20107, + "nodeId": 1120502, + "weight": 1 + }, + { + "id": 216, + "nodePlanId": 20107, + "nodeId": 1120602, + "weight": 1 + }, + { + "id": 217, + "nodePlanId": 20107, + "nodeId": 1120702, + "weight": 1 + }, + { + "id": 218, + "nodePlanId": 20107, + "nodeId": 1120802, + "weight": 1 + }, + { + "id": 219, + "nodePlanId": 20107, + "nodeId": 2120102, + "weight": 1 + }, + { + "id": 220, + "nodePlanId": 20107, + "nodeId": 2120202, + "weight": 1 + }, + { + "id": 221, + "nodePlanId": 20107, + "nodeId": 2120302, + "weight": 1 + }, + { + "id": 222, + "nodePlanId": 20107, + "nodeId": 2120402, + "weight": 1 + }, + { + "id": 223, + "nodePlanId": 20107, + "nodeId": 2120502, + "weight": 2 + }, + { + "id": 224, + "nodePlanId": 20107, + "nodeId": 2120602, + "weight": 2 + }, + { + "id": 225, + "nodePlanId": 20107, + "nodeId": 5110102, + "weight": 3 + }, + { + "id": 226, + "nodePlanId": 20107, + "nodeId": 6110102, + "weight": 3 + }, + { + "id": 227, + "nodePlanId": 20107, + "nodeId": 3110102, + "weight": 1 + }, + { + "id": 228, + "nodePlanId": 20107, + "nodeId": 1120102, + "weight": 1 + }, + { + "id": 229, + "nodePlanId": 20107, + "nodeId": 1120202, + "weight": 1 + }, + { + "id": 230, + "nodePlanId": 20107, + "nodeId": 1120302, + "weight": 1 + }, + { + "id": 231, + "nodePlanId": 20107, + "nodeId": 1120402, + "weight": 1 + }, + { + "id": 232, + "nodePlanId": 20107, + "nodeId": 1120502, + "weight": 1 + }, + { + "id": 233, + "nodePlanId": 20107, + "nodeId": 1120602, + "weight": 1 + }, + { + "id": 234, + "nodePlanId": 20107, + "nodeId": 1120702, + "weight": 1 + }, + { + "id": 235, + "nodePlanId": 20107, + "nodeId": 1120802, + "weight": 1 + }, + { + "id": 236, + "nodePlanId": 20107, + "nodeId": 2120102, + "weight": 1 + }, + { + "id": 237, + "nodePlanId": 20107, + "nodeId": 2120202, + "weight": 1 + }, + { + "id": 238, + "nodePlanId": 20107, + "nodeId": 2120302, + "weight": 1 + }, + { + "id": 239, + "nodePlanId": 20108, + "nodeId": 2120402, + "weight": 1 + }, + { + "id": 240, + "nodePlanId": 20108, + "nodeId": 2120502, + "weight": 2 + }, + { + "id": 241, + "nodePlanId": 20108, + "nodeId": 2120602, + "weight": 2 + }, + { + "id": 242, + "nodePlanId": 20108, + "nodeId": 5110102, + "weight": 3 + }, + { + "id": 243, + "nodePlanId": 20108, + "nodeId": 6110102, + "weight": 3 + }, + { + "id": 244, + "nodePlanId": 20108, + "nodeId": 1120102, + "weight": 1 + }, + { + "id": 245, + "nodePlanId": 20108, + "nodeId": 1120202, + "weight": 1 + }, + { + "id": 246, + "nodePlanId": 20108, + "nodeId": 1120302, + "weight": 1 + }, + { + "id": 247, + "nodePlanId": 20108, + "nodeId": 1120402, + "weight": 1 + }, + { + "id": 248, + "nodePlanId": 20108, + "nodeId": 1120502, + "weight": 1 + }, + { + "id": 249, + "nodePlanId": 20108, + "nodeId": 1120602, + "weight": 1 + }, + { + "id": 250, + "nodePlanId": 20108, + "nodeId": 1120702, + "weight": 1 + }, + { + "id": 251, + "nodePlanId": 20108, + "nodeId": 1120802, + "weight": 1 + }, + { + "id": 252, + "nodePlanId": 20108, + "nodeId": 2120102, + "weight": 1 + }, + { + "id": 253, + "nodePlanId": 20108, + "nodeId": 2120202, + "weight": 1 + }, + { + "id": 254, + "nodePlanId": 20108, + "nodeId": 2120302, + "weight": 1 + }, + { + "id": 255, + "nodePlanId": 20108, + "nodeId": 2120402, + "weight": 1 + }, + { + "id": 256, + "nodePlanId": 20108, + "nodeId": 2120502, + "weight": 2 + }, + { + "id": 257, + "nodePlanId": 20108, + "nodeId": 2120602, + "weight": 2 + }, + { + "id": 258, + "nodePlanId": 20108, + "nodeId": 4110102, + "weight": 2 + }, + { + "id": 259, + "nodePlanId": 20108, + "nodeId": 6110102, + "weight": 2 + }, + { + "id": 260, + "nodePlanId": 20108, + "nodeId": 6110102, + "weight": 2 + }, + { + "id": 261, + "nodePlanId": 20108, + "nodeId": 1130102, + "weight": 1 + }, + { + "id": 262, + "nodePlanId": 20108, + "nodeId": 1130202, + "weight": 1 + }, + { + "id": 263, + "nodePlanId": 20108, + "nodeId": 1130302, + "weight": 1 + }, + { + "id": 264, + "nodePlanId": 20108, + "nodeId": 1130402, + "weight": 1 + }, + { + "id": 265, + "nodePlanId": 20108, + "nodeId": 1130502, + "weight": 1 + }, + { + "id": 266, + "nodePlanId": 20108, + "nodeId": 2130102, + "weight": 1.5 + }, + { + "id": 267, + "nodePlanId": 20108, + "nodeId": 2130202, + "weight": 1.5 + }, + { + "id": 268, + "nodePlanId": 20108, + "nodeId": 2130302, + "weight": 1 + }, + { + "id": 269, + "nodePlanId": 20108, + "nodeId": 2130402, + "weight": 1 + }, + { + "id": 270, + "nodePlanId": 20108, + "nodeId": 2130502, + "weight": 1 + }, + { + "id": 271, + "nodePlanId": 20108, + "nodeId": 2130602, + "weight": 1 + }, + { + "id": 272, + "nodePlanId": 20108, + "nodeId": 1130602, + "weight": 1 + }, + { + "id": 273, + "nodePlanId": 20108, + "nodeId": 1130702, + "weight": 1 + }, + { + "id": 274, + "nodePlanId": 20108, + "nodeId": 1130802, + "weight": 1 + }, + { + "id": 275, + "nodePlanId": 20108, + "nodeId": 2130102, + "weight": 1 + }, + { + "id": 276, + "nodePlanId": 20108, + "nodeId": 2130202, + "weight": 1 + }, + { + "id": 277, + "nodePlanId": 20108, + "nodeId": 2130302, + "weight": 2 + }, + { + "id": 278, + "nodePlanId": 20108, + "nodeId": 2130402, + "weight": 2 + }, + { + "id": 279, + "nodePlanId": 20108, + "nodeId": 2130502, + "weight": 1 + }, + { + "id": 280, + "nodePlanId": 20108, + "nodeId": 2130602, + "weight": 1 + }, + { + "id": 281, + "nodePlanId": 20108, + "nodeId": 5110102, + "weight": 3 + }, + { + "id": 282, + "nodePlanId": 20108, + "nodeId": 6110102, + "weight": 2 + }, + { + "id": 283, + "nodePlanId": 20108, + "nodeId": 4110102, + "weight": 1 + }, + { + "id": 284, + "nodePlanId": 20108, + "nodeId": 7110102, + "weight": 1 + }, + { + "id": 285, + "nodePlanId": 20108, + "nodeId": 1110103, + "weight": 1 + }, + { + "id": 286, + "nodePlanId": 20108, + "nodeId": 1110203, + "weight": 1 + }, + { + "id": 287, + "nodePlanId": 20108, + "nodeId": 1110303, + "weight": 1 + }, + { + "id": 288, + "nodePlanId": 20108, + "nodeId": 1110403, + "weight": 1 + }, + { + "id": 289, + "nodePlanId": 20108, + "nodeId": 1110503, + "weight": 1 + }, + { + "id": 290, + "nodePlanId": 20108, + "nodeId": 1110603, + "weight": 1 + }, + { + "id": 291, + "nodePlanId": 20108, + "nodeId": 1110703, + "weight": 1 + }, + { + "id": 292, + "nodePlanId": 20108, + "nodeId": 1110803, + "weight": 1 + }, + { + "id": 293, + "nodePlanId": 20108, + "nodeId": 1110103, + "weight": 1 + }, + { + "id": 294, + "nodePlanId": 20108, + "nodeId": 1110203, + "weight": 1 + }, + { + "id": 295, + "nodePlanId": 20108, + "nodeId": 1110303, + "weight": 1 + }, + { + "id": 296, + "nodePlanId": 20108, + "nodeId": 1110403, + "weight": 1 + }, + { + "id": 297, + "nodePlanId": 20108, + "nodeId": 1110503, + "weight": 1 + }, + { + "id": 298, + "nodePlanId": 20108, + "nodeId": 1110603, + "weight": 1 + }, + { + "id": 299, + "nodePlanId": 20108, + "nodeId": 1110703, + "weight": 1 + }, + { + "id": 300, + "nodePlanId": 20108, + "nodeId": 1110803, + "weight": 1 + }, + { + "id": 301, + "nodePlanId": 20108, + "nodeId": 1110103, + "weight": 1 + }, + { + "id": 302, + "nodePlanId": 20108, + "nodeId": 1110203, + "weight": 1 + }, + { + "id": 303, + "nodePlanId": 20108, + "nodeId": 1110303, + "weight": 1 + }, + { + "id": 304, + "nodePlanId": 20108, + "nodeId": 1110403, + "weight": 1 + }, + { + "id": 305, + "nodePlanId": 20108, + "nodeId": 1110503, + "weight": 1 + }, + { + "id": 306, + "nodePlanId": 20108, + "nodeId": 1110603, + "weight": 1 + }, + { + "id": 307, + "nodePlanId": 20108, + "nodeId": 1110703, + "weight": 1 + }, + { + "id": 308, + "nodePlanId": 20108, + "nodeId": 1110803, + "weight": 1 + }, + { + "id": 309, + "nodePlanId": 20108, + "nodeId": 2110103, + "weight": 4 + }, + { + "id": 310, + "nodePlanId": 20108, + "nodeId": 2110203, + "weight": 4 + }, + { + "id": 311, + "nodePlanId": 20108, + "nodeId": 6110103, + "weight": 8 + }, + { + "id": 312, + "nodePlanId": 20108, + "nodeId": 2110303, + "weight": 1 + }, + { + "id": 313, + "nodePlanId": 20108, + "nodeId": 2110403, + "weight": 1 + }, + { + "id": 314, + "nodePlanId": 20108, + "nodeId": 2110503, + "weight": 1 + }, + { + "id": 315, + "nodePlanId": 20108, + "nodeId": 2110603, + "weight": 1 + }, + { + "id": 316, + "nodePlanId": 20108, + "nodeId": 5110103, + "weight": 1 + }, + { + "id": 317, + "nodePlanId": 20108, + "nodeId": 1120103, + "weight": 1 + }, + { + "id": 318, + "nodePlanId": 20108, + "nodeId": 1120203, + "weight": 1 + }, + { + "id": 319, + "nodePlanId": 20108, + "nodeId": 1120303, + "weight": 1 + }, + { + "id": 320, + "nodePlanId": 20108, + "nodeId": 1120403, + "weight": 1 + }, + { + "id": 321, + "nodePlanId": 20108, + "nodeId": 1120503, + "weight": 1 + }, + { + "id": 322, + "nodePlanId": 20108, + "nodeId": 1120603, + "weight": 1 + }, + { + "id": 323, + "nodePlanId": 20108, + "nodeId": 1120703, + "weight": 1 + }, + { + "id": 324, + "nodePlanId": 20108, + "nodeId": 1120803, + "weight": 1 + }, + { + "id": 325, + "nodePlanId": 20108, + "nodeId": 2120103, + "weight": 2 + }, + { + "id": 326, + "nodePlanId": 20108, + "nodeId": 2120203, + "weight": 2 + }, + { + "id": 327, + "nodePlanId": 20108, + "nodeId": 2120303, + "weight": 1 + }, + { + "id": 328, + "nodePlanId": 20108, + "nodeId": 2120403, + "weight": 1 + }, + { + "id": 329, + "nodePlanId": 20108, + "nodeId": 2120503, + "weight": 1 + }, + { + "id": 330, + "nodePlanId": 20108, + "nodeId": 2120603, + "weight": 1 + }, + { + "id": 331, + "nodePlanId": 20108, + "nodeId": 4110103, + "weight": 3 + }, + { + "id": 332, + "nodePlanId": 20108, + "nodeId": 6110103, + "weight": 3 + }, + { + "id": 333, + "nodePlanId": 20108, + "nodeId": 1120103, + "weight": 1 + }, + { + "id": 334, + "nodePlanId": 20108, + "nodeId": 1120203, + "weight": 1 + }, + { + "id": 335, + "nodePlanId": 20108, + "nodeId": 1120303, + "weight": 1 + }, + { + "id": 336, + "nodePlanId": 20108, + "nodeId": 1120403, + "weight": 1 + }, + { + "id": 337, + "nodePlanId": 20108, + "nodeId": 1120503, + "weight": 1 + }, + { + "id": 338, + "nodePlanId": 20108, + "nodeId": 1120603, + "weight": 1 + }, + { + "id": 339, + "nodePlanId": 20108, + "nodeId": 1120703, + "weight": 1 + }, + { + "id": 340, + "nodePlanId": 20108, + "nodeId": 1120803, + "weight": 1 + }, + { + "id": 341, + "nodePlanId": 20108, + "nodeId": 2120103, + "weight": 1 + }, + { + "id": 342, + "nodePlanId": 20108, + "nodeId": 2120203, + "weight": 1 + }, + { + "id": 343, + "nodePlanId": 20108, + "nodeId": 1110101, + "weight": 1 + }, + { + "id": 344, + "nodePlanId": 20108, + "nodeId": 1110201, + "weight": 1 + }, + { + "id": 345, + "nodePlanId": 20108, + "nodeId": 1110301, + "weight": 1 + }, + { + "id": 346, + "nodePlanId": 20108, + "nodeId": 1110401, + "weight": 1 + }, + { + "id": 347, + "nodePlanId": 20108, + "nodeId": 1110501, + "weight": 2 + }, + { + "id": 348, + "nodePlanId": 20108, + "nodeId": 1110101, + "weight": 1 + }, + { + "id": 349, + "nodePlanId": 20108, + "nodeId": 1110201, + "weight": 1 + }, + { + "id": 350, + "nodePlanId": 20108, + "nodeId": 1110301, + "weight": 1 + }, + { + "id": 351, + "nodePlanId": 20108, + "nodeId": 1110401, + "weight": 1 + }, + { + "id": 352, + "nodePlanId": 20108, + "nodeId": 1110501, + "weight": 1 + }, + { + "id": 353, + "nodePlanId": 20108, + "nodeId": 1110101, + "weight": 1 + }, + { + "id": 354, + "nodePlanId": 20108, + "nodeId": 1110201, + "weight": 1 + }, + { + "id": 355, + "nodePlanId": 20108, + "nodeId": 1110301, + "weight": 1 + }, + { + "id": 356, + "nodePlanId": 20108, + "nodeId": 1110401, + "weight": 1 + }, + { + "id": 357, + "nodePlanId": 20108, + "nodeId": 1110501, + "weight": 1 + }, + { + "id": 358, + "nodePlanId": 20108, + "nodeId": 1110101, + "weight": 1 + }, + { + "id": 359, + "nodePlanId": 20108, + "nodeId": 1110201, + "weight": 1 + }, + { + "id": 360, + "nodePlanId": 20108, + "nodeId": 1110301, + "weight": 1 + }, + { + "id": 361, + "nodePlanId": 20108, + "nodeId": 1110401, + "weight": 1 + }, + { + "id": 362, + "nodePlanId": 20108, + "nodeId": 1110501, + "weight": 1 + }, + { + "id": 363, + "nodePlanId": 20108, + "nodeId": 1110201, + "weight": 1 + }, + { + "id": 364, + "nodePlanId": 20109, + "nodeId": 5110101, + "weight": 1 + }, + { + "id": 365, + "nodePlanId": 20110, + "nodeId": 7110101, + "weight": 1 + }, + { + "id": 366, + "nodePlanId": 30101, + "nodeId": 1110101, + "weight": 1 + }, + { + "id": 367, + "nodePlanId": 30101, + "nodeId": 1110201, + "weight": 1 + }, + { + "id": 368, + "nodePlanId": 30101, + "nodeId": 1110301, + "weight": 1 + }, + { + "id": 369, + "nodePlanId": 30101, + "nodeId": 1110401, + "weight": 1 + }, + { + "id": 370, + "nodePlanId": 30101, + "nodeId": 1110501, + "weight": 1 + }, + { + "id": 371, + "nodePlanId": 30101, + "nodeId": 1110601, + "weight": 1 + }, + { + "id": 372, + "nodePlanId": 30101, + "nodeId": 1110701, + "weight": 1 + }, + { + "id": 373, + "nodePlanId": 30101, + "nodeId": 1110801, + "weight": 1 + }, + { + "id": 374, + "nodePlanId": 30102, + "nodeId": 1110101, + "weight": 1 + }, + { + "id": 375, + "nodePlanId": 30102, + "nodeId": 1110201, + "weight": 1 + }, + { + "id": 376, + "nodePlanId": 30102, + "nodeId": 1110301, + "weight": 1 + }, + { + "id": 377, + "nodePlanId": 30102, + "nodeId": 1110401, + "weight": 1 + }, + { + "id": 378, + "nodePlanId": 30102, + "nodeId": 1110501, + "weight": 1 + }, + { + "id": 379, + "nodePlanId": 30102, + "nodeId": 1110601, + "weight": 1 + }, + { + "id": 380, + "nodePlanId": 30102, + "nodeId": 1110701, + "weight": 1 + }, + { + "id": 381, + "nodePlanId": 30102, + "nodeId": 1110801, + "weight": 1 + }, + { + "id": 382, + "nodePlanId": 30103, + "nodeId": 1110101, + "weight": 1 + }, + { + "id": 383, + "nodePlanId": 30103, + "nodeId": 1110201, + "weight": 1 + }, + { + "id": 384, + "nodePlanId": 30103, + "nodeId": 1110301, + "weight": 1 + }, + { + "id": 385, + "nodePlanId": 30103, + "nodeId": 1110401, + "weight": 1 + }, + { + "id": 386, + "nodePlanId": 30103, + "nodeId": 1110501, + "weight": 1 + }, + { + "id": 387, + "nodePlanId": 30103, + "nodeId": 1110601, + "weight": 1 + }, + { + "id": 388, + "nodePlanId": 30103, + "nodeId": 1110701, + "weight": 1 + }, + { + "id": 389, + "nodePlanId": 30103, + "nodeId": 1110801, + "weight": 1 + }, + { + "id": 390, + "nodePlanId": 30103, + "nodeId": 2110101, + "weight": 4 + }, + { + "id": 391, + "nodePlanId": 30103, + "nodeId": 2110201, + "weight": 4 + }, + { + "id": 392, + "nodePlanId": 30103, + "nodeId": 6110101, + "weight": 8 + }, + { + "id": 393, + "nodePlanId": 30104, + "nodeId": 2110301, + "weight": 1 + }, + { + "id": 394, + "nodePlanId": 30104, + "nodeId": 2110401, + "weight": 1 + }, + { + "id": 395, + "nodePlanId": 30104, + "nodeId": 2110501, + "weight": 1 + }, + { + "id": 396, + "nodePlanId": 30104, + "nodeId": 2110601, + "weight": 1 + }, + { + "id": 397, + "nodePlanId": 30105, + "nodeId": 5110101, + "weight": 1 + }, + { + "id": 398, + "nodePlanId": 30106, + "nodeId": 1120101, + "weight": 1 + }, + { + "id": 399, + "nodePlanId": 30106, + "nodeId": 1120201, + "weight": 1 + }, + { + "id": 400, + "nodePlanId": 30106, + "nodeId": 1120301, + "weight": 1 + }, + { + "id": 401, + "nodePlanId": 30106, + "nodeId": 1120401, + "weight": 1 + }, + { + "id": 402, + "nodePlanId": 30106, + "nodeId": 1120501, + "weight": 1 + }, + { + "id": 403, + "nodePlanId": 30106, + "nodeId": 1120601, + "weight": 1 + }, + { + "id": 404, + "nodePlanId": 30106, + "nodeId": 1120701, + "weight": 1 + }, + { + "id": 405, + "nodePlanId": 30106, + "nodeId": 1120801, + "weight": 1 + }, + { + "id": 406, + "nodePlanId": 30106, + "nodeId": 2120101, + "weight": 2 + }, + { + "id": 407, + "nodePlanId": 30106, + "nodeId": 2120201, + "weight": 2 + }, + { + "id": 408, + "nodePlanId": 30106, + "nodeId": 2120301, + "weight": 1 + }, + { + "id": 409, + "nodePlanId": 30106, + "nodeId": 2120401, + "weight": 1 + }, + { + "id": 410, + "nodePlanId": 30106, + "nodeId": 2120501, + "weight": 1 + }, + { + "id": 411, + "nodePlanId": 30106, + "nodeId": 2120601, + "weight": 1 + }, + { + "id": 412, + "nodePlanId": 30106, + "nodeId": 4110101, + "weight": 3 + }, + { + "id": 413, + "nodePlanId": 30106, + "nodeId": 6110101, + "weight": 3 + }, + { + "id": 414, + "nodePlanId": 30107, + "nodeId": 1120101, + "weight": 1 + }, + { + "id": 415, + "nodePlanId": 30107, + "nodeId": 1120201, + "weight": 1 + }, + { + "id": 416, + "nodePlanId": 30107, + "nodeId": 1120301, + "weight": 1 + }, + { + "id": 417, + "nodePlanId": 30107, + "nodeId": 1120401, + "weight": 1 + }, + { + "id": 418, + "nodePlanId": 30107, + "nodeId": 1120501, + "weight": 1 + }, + { + "id": 419, + "nodePlanId": 30107, + "nodeId": 1120601, + "weight": 1 + }, + { + "id": 420, + "nodePlanId": 30107, + "nodeId": 1120701, + "weight": 1 + }, + { + "id": 421, + "nodePlanId": 30107, + "nodeId": 1120801, + "weight": 1 + }, + { + "id": 422, + "nodePlanId": 30107, + "nodeId": 2120101, + "weight": 1 + }, + { + "id": 423, + "nodePlanId": 30107, + "nodeId": 2120201, + "weight": 1 + }, + { + "id": 424, + "nodePlanId": 30107, + "nodeId": 2120301, + "weight": 2 + }, + { + "id": 425, + "nodePlanId": 30107, + "nodeId": 2120401, + "weight": 2 + }, + { + "id": 426, + "nodePlanId": 30107, + "nodeId": 2120501, + "weight": 1 + }, + { + "id": 427, + "nodePlanId": 30107, + "nodeId": 2120601, + "weight": 1 + }, + { + "id": 428, + "nodePlanId": 30107, + "nodeId": 5110101, + "weight": 3 + }, + { + "id": 429, + "nodePlanId": 30108, + "nodeId": 1120101, + "weight": 1 + }, + { + "id": 430, + "nodePlanId": 30108, + "nodeId": 1120201, + "weight": 1 + }, + { + "id": 431, + "nodePlanId": 30108, + "nodeId": 1120301, + "weight": 1 + }, + { + "id": 432, + "nodePlanId": 30108, + "nodeId": 1120401, + "weight": 1 + }, + { + "id": 433, + "nodePlanId": 30108, + "nodeId": 1120501, + "weight": 1 + }, + { + "id": 434, + "nodePlanId": 30108, + "nodeId": 1120601, + "weight": 1 + }, + { + "id": 435, + "nodePlanId": 30108, + "nodeId": 1120701, + "weight": 1 + }, + { + "id": 436, + "nodePlanId": 30108, + "nodeId": 1120801, + "weight": 1 + }, + { + "id": 437, + "nodePlanId": 30108, + "nodeId": 2120101, + "weight": 1 + }, + { + "id": 438, + "nodePlanId": 30108, + "nodeId": 2120201, + "weight": 1 + }, + { + "id": 439, + "nodePlanId": 30108, + "nodeId": 2120301, + "weight": 1 + }, + { + "id": 440, + "nodePlanId": 30108, + "nodeId": 2120401, + "weight": 1 + }, + { + "id": 441, + "nodePlanId": 30108, + "nodeId": 2120501, + "weight": 2 + }, + { + "id": 442, + "nodePlanId": 30108, + "nodeId": 2120601, + "weight": 2 + }, + { + "id": 443, + "nodePlanId": 30108, + "nodeId": 5110101, + "weight": 3 + }, + { + "id": 444, + "nodePlanId": 30108, + "nodeId": 6110101, + "weight": 3 + }, + { + "id": 445, + "nodePlanId": 30109, + "nodeId": 3110101, + "weight": 1 + }, + { + "id": 446, + "nodePlanId": 30110, + "nodeId": 1120101, + "weight": 1 + }, + { + "id": 447, + "nodePlanId": 30110, + "nodeId": 1120201, + "weight": 1 + }, + { + "id": 448, + "nodePlanId": 30110, + "nodeId": 1120301, + "weight": 1 + }, + { + "id": 449, + "nodePlanId": 30110, + "nodeId": 1120401, + "weight": 1 + }, + { + "id": 450, + "nodePlanId": 30110, + "nodeId": 1120501, + "weight": 1 + }, + { + "id": 451, + "nodePlanId": 30110, + "nodeId": 1120601, + "weight": 1 + }, + { + "id": 452, + "nodePlanId": 30110, + "nodeId": 1120701, + "weight": 1 + }, + { + "id": 453, + "nodePlanId": 30110, + "nodeId": 1120801, + "weight": 1 + }, + { + "id": 454, + "nodePlanId": 30110, + "nodeId": 2120101, + "weight": 1 + }, + { + "id": 455, + "nodePlanId": 30110, + "nodeId": 2120201, + "weight": 1 + }, + { + "id": 456, + "nodePlanId": 30110, + "nodeId": 2120301, + "weight": 1 + }, + { + "id": 457, + "nodePlanId": 30110, + "nodeId": 2120401, + "weight": 1 + }, + { + "id": 458, + "nodePlanId": 30110, + "nodeId": 2120501, + "weight": 2 + }, + { + "id": 459, + "nodePlanId": 30110, + "nodeId": 2120601, + "weight": 2 + }, + { + "id": 460, + "nodePlanId": 30110, + "nodeId": 5110101, + "weight": 3 + }, + { + "id": 461, + "nodePlanId": 30110, + "nodeId": 6110101, + "weight": 3 + }, + { + "id": 462, + "nodePlanId": 30111, + "nodeId": 1120101, + "weight": 1 + }, + { + "id": 463, + "nodePlanId": 30111, + "nodeId": 1120201, + "weight": 1 + }, + { + "id": 464, + "nodePlanId": 30111, + "nodeId": 1120301, + "weight": 1 + }, + { + "id": 465, + "nodePlanId": 30111, + "nodeId": 1120401, + "weight": 1 + }, + { + "id": 466, + "nodePlanId": 30111, + "nodeId": 1120501, + "weight": 1 + }, + { + "id": 467, + "nodePlanId": 30111, + "nodeId": 1120601, + "weight": 1 + }, + { + "id": 468, + "nodePlanId": 30111, + "nodeId": 1120701, + "weight": 1 + }, + { + "id": 469, + "nodePlanId": 30111, + "nodeId": 1120801, + "weight": 1 + }, + { + "id": 470, + "nodePlanId": 30111, + "nodeId": 2120101, + "weight": 1 + }, + { + "id": 471, + "nodePlanId": 30111, + "nodeId": 2120201, + "weight": 1 + }, + { + "id": 472, + "nodePlanId": 30111, + "nodeId": 2120301, + "weight": 1 + }, + { + "id": 473, + "nodePlanId": 30111, + "nodeId": 2120401, + "weight": 1 + }, + { + "id": 474, + "nodePlanId": 30111, + "nodeId": 2120501, + "weight": 2 + }, + { + "id": 475, + "nodePlanId": 30111, + "nodeId": 2120601, + "weight": 2 + }, + { + "id": 476, + "nodePlanId": 30111, + "nodeId": 4110101, + "weight": 2 + }, + { + "id": 477, + "nodePlanId": 30111, + "nodeId": 6110101, + "weight": 2 + }, + { + "id": 478, + "nodePlanId": 30111, + "nodeId": 6110101, + "weight": 2 + }, + { + "id": 479, + "nodePlanId": 30112, + "nodeId": 1130101, + "weight": 1 + }, + { + "id": 480, + "nodePlanId": 30112, + "nodeId": 1130201, + "weight": 1 + }, + { + "id": 481, + "nodePlanId": 30112, + "nodeId": 1130301, + "weight": 1 + }, + { + "id": 482, + "nodePlanId": 30112, + "nodeId": 1130401, + "weight": 1 + }, + { + "id": 483, + "nodePlanId": 30112, + "nodeId": 1130501, + "weight": 1 + }, + { + "id": 484, + "nodePlanId": 30112, + "nodeId": 2130101, + "weight": 1.5 + }, + { + "id": 485, + "nodePlanId": 30112, + "nodeId": 2130201, + "weight": 1.5 + }, + { + "id": 486, + "nodePlanId": 30112, + "nodeId": 2130301, + "weight": 1 + }, + { + "id": 487, + "nodePlanId": 30112, + "nodeId": 2130401, + "weight": 1 + }, + { + "id": 488, + "nodePlanId": 30112, + "nodeId": 2130501, + "weight": 1 + }, + { + "id": 489, + "nodePlanId": 30112, + "nodeId": 2130601, + "weight": 1 + }, + { + "id": 490, + "nodePlanId": 30113, + "nodeId": 1130601, + "weight": 1 + }, + { + "id": 491, + "nodePlanId": 30113, + "nodeId": 1130701, + "weight": 1 + }, + { + "id": 492, + "nodePlanId": 30113, + "nodeId": 1130801, + "weight": 1 + }, + { + "id": 493, + "nodePlanId": 30113, + "nodeId": 2130101, + "weight": 1 + }, + { + "id": 494, + "nodePlanId": 30113, + "nodeId": 2130201, + "weight": 1 + }, + { + "id": 495, + "nodePlanId": 30113, + "nodeId": 2130301, + "weight": 2 + }, + { + "id": 496, + "nodePlanId": 30113, + "nodeId": 2130401, + "weight": 2 + }, + { + "id": 497, + "nodePlanId": 30113, + "nodeId": 2130501, + "weight": 1 + }, + { + "id": 498, + "nodePlanId": 30113, + "nodeId": 2130601, + "weight": 1 + }, + { + "id": 499, + "nodePlanId": 30113, + "nodeId": 5110101, + "weight": 3 + }, + { + "id": 500, + "nodePlanId": 30113, + "nodeId": 6110101, + "weight": 2 + }, + { + "id": 501, + "nodePlanId": 30114, + "nodeId": 4110101, + "weight": 1 + }, + { + "id": 502, + "nodePlanId": 30115, + "nodeId": 7110101, + "weight": 1 + }, + { + "id": 503, + "nodePlanId": 30201, + "nodeId": 1110102, + "weight": 1 + }, + { + "id": 504, + "nodePlanId": 30201, + "nodeId": 1110202, + "weight": 1 + }, + { + "id": 505, + "nodePlanId": 30201, + "nodeId": 1110302, + "weight": 1 + }, + { + "id": 506, + "nodePlanId": 30201, + "nodeId": 1110402, + "weight": 1 + }, + { + "id": 507, + "nodePlanId": 30201, + "nodeId": 1110502, + "weight": 1 + }, + { + "id": 508, + "nodePlanId": 30201, + "nodeId": 1110602, + "weight": 1 + }, + { + "id": 509, + "nodePlanId": 30201, + "nodeId": 1110702, + "weight": 1 + }, + { + "id": 510, + "nodePlanId": 30201, + "nodeId": 1110802, + "weight": 1 + }, + { + "id": 511, + "nodePlanId": 30202, + "nodeId": 1110102, + "weight": 1 + }, + { + "id": 512, + "nodePlanId": 30202, + "nodeId": 1110202, + "weight": 1 + }, + { + "id": 513, + "nodePlanId": 30202, + "nodeId": 1110302, + "weight": 1 + }, + { + "id": 514, + "nodePlanId": 30202, + "nodeId": 1110402, + "weight": 1 + }, + { + "id": 515, + "nodePlanId": 30202, + "nodeId": 1110502, + "weight": 1 + }, + { + "id": 516, + "nodePlanId": 30202, + "nodeId": 1110602, + "weight": 1 + }, + { + "id": 517, + "nodePlanId": 30202, + "nodeId": 1110702, + "weight": 1 + }, + { + "id": 518, + "nodePlanId": 30202, + "nodeId": 1110802, + "weight": 1 + }, + { + "id": 519, + "nodePlanId": 30203, + "nodeId": 1110102, + "weight": 1 + }, + { + "id": 520, + "nodePlanId": 30203, + "nodeId": 1110202, + "weight": 1 + }, + { + "id": 521, + "nodePlanId": 30203, + "nodeId": 1110302, + "weight": 1 + }, + { + "id": 522, + "nodePlanId": 30203, + "nodeId": 1110402, + "weight": 1 + }, + { + "id": 523, + "nodePlanId": 30203, + "nodeId": 1110502, + "weight": 1 + }, + { + "id": 524, + "nodePlanId": 30203, + "nodeId": 1110602, + "weight": 1 + }, + { + "id": 525, + "nodePlanId": 30203, + "nodeId": 1110702, + "weight": 1 + }, + { + "id": 526, + "nodePlanId": 30203, + "nodeId": 1110802, + "weight": 1 + }, + { + "id": 527, + "nodePlanId": 30203, + "nodeId": 2110102, + "weight": 4 + }, + { + "id": 528, + "nodePlanId": 30203, + "nodeId": 2110202, + "weight": 4 + }, + { + "id": 529, + "nodePlanId": 30203, + "nodeId": 6110102, + "weight": 8 + }, + { + "id": 530, + "nodePlanId": 30204, + "nodeId": 2110302, + "weight": 1 + }, + { + "id": 531, + "nodePlanId": 30204, + "nodeId": 2110402, + "weight": 1 + }, + { + "id": 532, + "nodePlanId": 30204, + "nodeId": 2110502, + "weight": 1 + }, + { + "id": 533, + "nodePlanId": 30204, + "nodeId": 2110602, + "weight": 1 + }, + { + "id": 534, + "nodePlanId": 30205, + "nodeId": 5110102, + "weight": 1 + }, + { + "id": 535, + "nodePlanId": 30206, + "nodeId": 1120102, + "weight": 1 + }, + { + "id": 536, + "nodePlanId": 30206, + "nodeId": 1120202, + "weight": 1 + }, + { + "id": 537, + "nodePlanId": 30206, + "nodeId": 1120302, + "weight": 1 + }, + { + "id": 538, + "nodePlanId": 30206, + "nodeId": 1120402, + "weight": 1 + }, + { + "id": 539, + "nodePlanId": 30206, + "nodeId": 1120502, + "weight": 1 + }, + { + "id": 540, + "nodePlanId": 30206, + "nodeId": 1120602, + "weight": 1 + }, + { + "id": 541, + "nodePlanId": 30206, + "nodeId": 1120702, + "weight": 1 + }, + { + "id": 542, + "nodePlanId": 30206, + "nodeId": 1120802, + "weight": 1 + }, + { + "id": 543, + "nodePlanId": 30206, + "nodeId": 2120102, + "weight": 2 + }, + { + "id": 544, + "nodePlanId": 30206, + "nodeId": 2120202, + "weight": 2 + }, + { + "id": 545, + "nodePlanId": 30206, + "nodeId": 2120302, + "weight": 1 + }, + { + "id": 546, + "nodePlanId": 30206, + "nodeId": 2120402, + "weight": 1 + }, + { + "id": 547, + "nodePlanId": 30206, + "nodeId": 2120502, + "weight": 1 + }, + { + "id": 548, + "nodePlanId": 30206, + "nodeId": 2120602, + "weight": 1 + }, + { + "id": 549, + "nodePlanId": 30206, + "nodeId": 4110102, + "weight": 3 + }, + { + "id": 550, + "nodePlanId": 30206, + "nodeId": 6110102, + "weight": 3 + }, + { + "id": 551, + "nodePlanId": 30207, + "nodeId": 1120102, + "weight": 1 + }, + { + "id": 552, + "nodePlanId": 30207, + "nodeId": 1120202, + "weight": 1 + }, + { + "id": 553, + "nodePlanId": 30207, + "nodeId": 1120302, + "weight": 1 + }, + { + "id": 554, + "nodePlanId": 30207, + "nodeId": 1120402, + "weight": 1 + }, + { + "id": 555, + "nodePlanId": 30207, + "nodeId": 1120502, + "weight": 1 + }, + { + "id": 556, + "nodePlanId": 30207, + "nodeId": 1120602, + "weight": 1 + }, + { + "id": 557, + "nodePlanId": 30207, + "nodeId": 1120702, + "weight": 1 + }, + { + "id": 558, + "nodePlanId": 30207, + "nodeId": 1120802, + "weight": 1 + }, + { + "id": 559, + "nodePlanId": 30207, + "nodeId": 2120102, + "weight": 1 + }, + { + "id": 560, + "nodePlanId": 30207, + "nodeId": 2120202, + "weight": 1 + }, + { + "id": 561, + "nodePlanId": 30207, + "nodeId": 2120302, + "weight": 2 + }, + { + "id": 562, + "nodePlanId": 30207, + "nodeId": 2120402, + "weight": 2 + }, + { + "id": 563, + "nodePlanId": 30207, + "nodeId": 2120502, + "weight": 1 + }, + { + "id": 564, + "nodePlanId": 30207, + "nodeId": 2120602, + "weight": 1 + }, + { + "id": 565, + "nodePlanId": 30207, + "nodeId": 5110102, + "weight": 3 + }, + { + "id": 566, + "nodePlanId": 30208, + "nodeId": 1120102, + "weight": 1 + }, + { + "id": 567, + "nodePlanId": 30208, + "nodeId": 1120202, + "weight": 1 + }, + { + "id": 568, + "nodePlanId": 30208, + "nodeId": 1120302, + "weight": 1 + }, + { + "id": 569, + "nodePlanId": 30208, + "nodeId": 1120402, + "weight": 1 + }, + { + "id": 570, + "nodePlanId": 30208, + "nodeId": 1120502, + "weight": 1 + }, + { + "id": 571, + "nodePlanId": 30208, + "nodeId": 1120602, + "weight": 1 + }, + { + "id": 572, + "nodePlanId": 30208, + "nodeId": 1120702, + "weight": 1 + }, + { + "id": 573, + "nodePlanId": 30208, + "nodeId": 1120802, + "weight": 1 + }, + { + "id": 574, + "nodePlanId": 30208, + "nodeId": 2120102, + "weight": 1 + }, + { + "id": 575, + "nodePlanId": 30208, + "nodeId": 2120202, + "weight": 1 + }, + { + "id": 576, + "nodePlanId": 30208, + "nodeId": 2120302, + "weight": 1 + }, + { + "id": 577, + "nodePlanId": 30208, + "nodeId": 2120402, + "weight": 1 + }, + { + "id": 578, + "nodePlanId": 30208, + "nodeId": 2120502, + "weight": 2 + }, + { + "id": 579, + "nodePlanId": 30208, + "nodeId": 2120602, + "weight": 2 + }, + { + "id": 580, + "nodePlanId": 30208, + "nodeId": 5110102, + "weight": 3 + }, + { + "id": 581, + "nodePlanId": 30208, + "nodeId": 6110102, + "weight": 3 + }, + { + "id": 582, + "nodePlanId": 30209, + "nodeId": 3110102, + "weight": 1 + }, + { + "id": 583, + "nodePlanId": 30210, + "nodeId": 1120102, + "weight": 1 + }, + { + "id": 584, + "nodePlanId": 30210, + "nodeId": 1120202, + "weight": 1 + }, + { + "id": 585, + "nodePlanId": 30210, + "nodeId": 1120302, + "weight": 1 + }, + { + "id": 586, + "nodePlanId": 30210, + "nodeId": 1120402, + "weight": 1 + }, + { + "id": 587, + "nodePlanId": 30210, + "nodeId": 1120502, + "weight": 1 + }, + { + "id": 588, + "nodePlanId": 30210, + "nodeId": 1120602, + "weight": 1 + }, + { + "id": 589, + "nodePlanId": 30210, + "nodeId": 1120702, + "weight": 1 + }, + { + "id": 590, + "nodePlanId": 30210, + "nodeId": 1120802, + "weight": 1 + }, + { + "id": 591, + "nodePlanId": 30210, + "nodeId": 2120102, + "weight": 1 + }, + { + "id": 592, + "nodePlanId": 30210, + "nodeId": 2120202, + "weight": 1 + }, + { + "id": 593, + "nodePlanId": 30210, + "nodeId": 2120302, + "weight": 1 + }, + { + "id": 594, + "nodePlanId": 30210, + "nodeId": 2120402, + "weight": 1 + }, + { + "id": 595, + "nodePlanId": 30210, + "nodeId": 2120502, + "weight": 2 + }, + { + "id": 596, + "nodePlanId": 30210, + "nodeId": 2120602, + "weight": 2 + }, + { + "id": 597, + "nodePlanId": 30210, + "nodeId": 5110102, + "weight": 3 + }, + { + "id": 598, + "nodePlanId": 30210, + "nodeId": 6110102, + "weight": 3 + }, + { + "id": 599, + "nodePlanId": 30211, + "nodeId": 1120102, + "weight": 1 + }, + { + "id": 600, + "nodePlanId": 30211, + "nodeId": 1120202, + "weight": 1 + }, + { + "id": 601, + "nodePlanId": 30211, + "nodeId": 1120302, + "weight": 1 + }, + { + "id": 602, + "nodePlanId": 30211, + "nodeId": 1120402, + "weight": 1 + }, + { + "id": 603, + "nodePlanId": 30211, + "nodeId": 1120502, + "weight": 1 + }, + { + "id": 604, + "nodePlanId": 30211, + "nodeId": 1120602, + "weight": 1 + }, + { + "id": 605, + "nodePlanId": 30211, + "nodeId": 1120702, + "weight": 1 + }, + { + "id": 606, + "nodePlanId": 30211, + "nodeId": 1120802, + "weight": 1 + }, + { + "id": 607, + "nodePlanId": 30211, + "nodeId": 2120102, + "weight": 1 + }, + { + "id": 608, + "nodePlanId": 30211, + "nodeId": 2120202, + "weight": 1 + }, + { + "id": 609, + "nodePlanId": 30211, + "nodeId": 2120302, + "weight": 1 + }, + { + "id": 610, + "nodePlanId": 30211, + "nodeId": 2120402, + "weight": 1 + }, + { + "id": 611, + "nodePlanId": 30211, + "nodeId": 2120502, + "weight": 2 + }, + { + "id": 612, + "nodePlanId": 30211, + "nodeId": 2120602, + "weight": 2 + }, + { + "id": 613, + "nodePlanId": 30211, + "nodeId": 4110102, + "weight": 2 + }, + { + "id": 614, + "nodePlanId": 30211, + "nodeId": 6110102, + "weight": 2 + }, + { + "id": 615, + "nodePlanId": 30211, + "nodeId": 6110102, + "weight": 2 + }, + { + "id": 616, + "nodePlanId": 30212, + "nodeId": 1130102, + "weight": 1 + }, + { + "id": 617, + "nodePlanId": 30212, + "nodeId": 1130202, + "weight": 1 + }, + { + "id": 618, + "nodePlanId": 30212, + "nodeId": 1130302, + "weight": 1 + }, + { + "id": 619, + "nodePlanId": 30212, + "nodeId": 1130402, + "weight": 1 + }, + { + "id": 620, + "nodePlanId": 30212, + "nodeId": 1130502, + "weight": 1 + }, + { + "id": 621, + "nodePlanId": 30212, + "nodeId": 2130102, + "weight": 1.5 + }, + { + "id": 622, + "nodePlanId": 30212, + "nodeId": 2130202, + "weight": 1.5 + }, + { + "id": 623, + "nodePlanId": 30212, + "nodeId": 2130302, + "weight": 1 + }, + { + "id": 624, + "nodePlanId": 30212, + "nodeId": 2130402, + "weight": 1 + }, + { + "id": 625, + "nodePlanId": 30212, + "nodeId": 2130502, + "weight": 1 + }, + { + "id": 626, + "nodePlanId": 30212, + "nodeId": 2130602, + "weight": 1 + }, + { + "id": 627, + "nodePlanId": 30213, + "nodeId": 1130602, + "weight": 1 + }, + { + "id": 628, + "nodePlanId": 30213, + "nodeId": 1130702, + "weight": 1 + }, + { + "id": 629, + "nodePlanId": 30213, + "nodeId": 1130802, + "weight": 1 + }, + { + "id": 630, + "nodePlanId": 30213, + "nodeId": 2130102, + "weight": 1 + }, + { + "id": 631, + "nodePlanId": 30213, + "nodeId": 2130202, + "weight": 1 + }, + { + "id": 632, + "nodePlanId": 30213, + "nodeId": 2130302, + "weight": 2 + }, + { + "id": 633, + "nodePlanId": 30213, + "nodeId": 2130402, + "weight": 2 + }, + { + "id": 634, + "nodePlanId": 30213, + "nodeId": 2130502, + "weight": 1 + }, + { + "id": 635, + "nodePlanId": 30213, + "nodeId": 2130602, + "weight": 1 + }, + { + "id": 636, + "nodePlanId": 30213, + "nodeId": 5110102, + "weight": 3 + }, + { + "id": 637, + "nodePlanId": 30213, + "nodeId": 6110102, + "weight": 2 + }, + { + "id": 638, + "nodePlanId": 30214, + "nodeId": 4110102, + "weight": 1 + }, + { + "id": 639, + "nodePlanId": 30215, + "nodeId": 7110102, + "weight": 1 + }, + { + "id": 640, + "nodePlanId": 30301, + "nodeId": 1110103, + "weight": 1 + }, + { + "id": 641, + "nodePlanId": 30301, + "nodeId": 1110203, + "weight": 1 + }, + { + "id": 642, + "nodePlanId": 30301, + "nodeId": 1110303, + "weight": 1 + }, + { + "id": 643, + "nodePlanId": 30301, + "nodeId": 1110403, + "weight": 1 + }, + { + "id": 644, + "nodePlanId": 30301, + "nodeId": 1110503, + "weight": 1 + }, + { + "id": 645, + "nodePlanId": 30301, + "nodeId": 1110603, + "weight": 1 + }, + { + "id": 646, + "nodePlanId": 30301, + "nodeId": 1110703, + "weight": 1 + }, + { + "id": 647, + "nodePlanId": 30301, + "nodeId": 1110803, + "weight": 1 + }, + { + "id": 648, + "nodePlanId": 30302, + "nodeId": 1110103, + "weight": 1 + }, + { + "id": 649, + "nodePlanId": 30302, + "nodeId": 1110203, + "weight": 1 + }, + { + "id": 650, + "nodePlanId": 30302, + "nodeId": 1110303, + "weight": 1 + }, + { + "id": 651, + "nodePlanId": 30302, + "nodeId": 1110403, + "weight": 1 + }, + { + "id": 652, + "nodePlanId": 30302, + "nodeId": 1110503, + "weight": 1 + }, + { + "id": 653, + "nodePlanId": 30302, + "nodeId": 1110603, + "weight": 1 + }, + { + "id": 654, + "nodePlanId": 30302, + "nodeId": 1110703, + "weight": 1 + }, + { + "id": 655, + "nodePlanId": 30302, + "nodeId": 1110803, + "weight": 1 + }, + { + "id": 656, + "nodePlanId": 30303, + "nodeId": 1110103, + "weight": 1 + }, + { + "id": 657, + "nodePlanId": 30303, + "nodeId": 1110203, + "weight": 1 + }, + { + "id": 658, + "nodePlanId": 30303, + "nodeId": 1110303, + "weight": 1 + }, + { + "id": 659, + "nodePlanId": 30303, + "nodeId": 1110403, + "weight": 1 + }, + { + "id": 660, + "nodePlanId": 30303, + "nodeId": 1110503, + "weight": 1 + }, + { + "id": 661, + "nodePlanId": 30303, + "nodeId": 1110603, + "weight": 1 + }, + { + "id": 662, + "nodePlanId": 30303, + "nodeId": 1110703, + "weight": 1 + }, + { + "id": 663, + "nodePlanId": 30303, + "nodeId": 1110803, + "weight": 1 + }, + { + "id": 664, + "nodePlanId": 30303, + "nodeId": 2110103, + "weight": 4 + }, + { + "id": 665, + "nodePlanId": 30303, + "nodeId": 2110203, + "weight": 4 + }, + { + "id": 666, + "nodePlanId": 30303, + "nodeId": 6110103, + "weight": 8 + }, + { + "id": 667, + "nodePlanId": 30304, + "nodeId": 2110303, + "weight": 1 + }, + { + "id": 668, + "nodePlanId": 30304, + "nodeId": 2110403, + "weight": 1 + }, + { + "id": 669, + "nodePlanId": 30304, + "nodeId": 2110503, + "weight": 1 + }, + { + "id": 670, + "nodePlanId": 30304, + "nodeId": 2110603, + "weight": 1 + }, + { + "id": 671, + "nodePlanId": 30305, + "nodeId": 5110103, + "weight": 1 + }, + { + "id": 672, + "nodePlanId": 30306, + "nodeId": 1120103, + "weight": 1 + }, + { + "id": 673, + "nodePlanId": 30306, + "nodeId": 1120203, + "weight": 1 + }, + { + "id": 674, + "nodePlanId": 30306, + "nodeId": 1120303, + "weight": 1 + }, + { + "id": 675, + "nodePlanId": 30306, + "nodeId": 1120403, + "weight": 1 + }, + { + "id": 676, + "nodePlanId": 30306, + "nodeId": 1120503, + "weight": 1 + }, + { + "id": 677, + "nodePlanId": 30306, + "nodeId": 1120603, + "weight": 1 + }, + { + "id": 678, + "nodePlanId": 30306, + "nodeId": 1120703, + "weight": 1 + }, + { + "id": 679, + "nodePlanId": 30306, + "nodeId": 1120803, + "weight": 1 + }, + { + "id": 680, + "nodePlanId": 30306, + "nodeId": 2120103, + "weight": 2 + }, + { + "id": 681, + "nodePlanId": 30306, + "nodeId": 2120203, + "weight": 2 + }, + { + "id": 682, + "nodePlanId": 30306, + "nodeId": 2120303, + "weight": 1 + }, + { + "id": 683, + "nodePlanId": 30306, + "nodeId": 2120403, + "weight": 1 + }, + { + "id": 684, + "nodePlanId": 30306, + "nodeId": 2120503, + "weight": 1 + }, + { + "id": 685, + "nodePlanId": 30306, + "nodeId": 2120603, + "weight": 1 + }, + { + "id": 686, + "nodePlanId": 30306, + "nodeId": 4110103, + "weight": 3 + }, + { + "id": 687, + "nodePlanId": 30306, + "nodeId": 6110103, + "weight": 3 + }, + { + "id": 688, + "nodePlanId": 30307, + "nodeId": 1120103, + "weight": 1 + }, + { + "id": 689, + "nodePlanId": 30307, + "nodeId": 1120203, + "weight": 1 + }, + { + "id": 690, + "nodePlanId": 30307, + "nodeId": 1120303, + "weight": 1 + }, + { + "id": 691, + "nodePlanId": 30307, + "nodeId": 1120403, + "weight": 1 + }, + { + "id": 692, + "nodePlanId": 30307, + "nodeId": 1120503, + "weight": 1 + }, + { + "id": 693, + "nodePlanId": 30307, + "nodeId": 1120603, + "weight": 1 + }, + { + "id": 694, + "nodePlanId": 30307, + "nodeId": 1120703, + "weight": 1 + }, + { + "id": 695, + "nodePlanId": 30307, + "nodeId": 1120803, + "weight": 1 + }, + { + "id": 696, + "nodePlanId": 30307, + "nodeId": 2120103, + "weight": 1 + }, + { + "id": 697, + "nodePlanId": 30307, + "nodeId": 2120203, + "weight": 1 + }, + { + "id": 698, + "nodePlanId": 30307, + "nodeId": 2120303, + "weight": 2 + }, + { + "id": 699, + "nodePlanId": 30307, + "nodeId": 2120403, + "weight": 2 + }, + { + "id": 700, + "nodePlanId": 30307, + "nodeId": 2120503, + "weight": 1 + }, + { + "id": 701, + "nodePlanId": 30307, + "nodeId": 2120603, + "weight": 1 + }, + { + "id": 702, + "nodePlanId": 30307, + "nodeId": 5110103, + "weight": 3 + }, + { + "id": 703, + "nodePlanId": 30308, + "nodeId": 1120103, + "weight": 1 + }, + { + "id": 704, + "nodePlanId": 30308, + "nodeId": 1120203, + "weight": 1 + }, + { + "id": 705, + "nodePlanId": 30308, + "nodeId": 1120303, + "weight": 1 + }, + { + "id": 706, + "nodePlanId": 30308, + "nodeId": 1120403, + "weight": 1 + }, + { + "id": 707, + "nodePlanId": 30308, + "nodeId": 1120503, + "weight": 1 + }, + { + "id": 708, + "nodePlanId": 30308, + "nodeId": 1120603, + "weight": 1 + }, + { + "id": 709, + "nodePlanId": 30308, + "nodeId": 1120703, + "weight": 1 + }, + { + "id": 710, + "nodePlanId": 30308, + "nodeId": 1120803, + "weight": 1 + }, + { + "id": 711, + "nodePlanId": 30308, + "nodeId": 2120103, + "weight": 1 + }, + { + "id": 712, + "nodePlanId": 30308, + "nodeId": 2120203, + "weight": 1 + }, + { + "id": 713, + "nodePlanId": 30308, + "nodeId": 2120303, + "weight": 1 + }, + { + "id": 714, + "nodePlanId": 30308, + "nodeId": 2120403, + "weight": 1 + }, + { + "id": 715, + "nodePlanId": 30308, + "nodeId": 2120503, + "weight": 2 + }, + { + "id": 716, + "nodePlanId": 30308, + "nodeId": 2120603, + "weight": 2 + }, + { + "id": 717, + "nodePlanId": 30308, + "nodeId": 5110103, + "weight": 3 + }, + { + "id": 718, + "nodePlanId": 30308, + "nodeId": 6110103, + "weight": 3 + }, + { + "id": 719, + "nodePlanId": 30309, + "nodeId": 3110103, + "weight": 1 + }, + { + "id": 720, + "nodePlanId": 30310, + "nodeId": 1120103, + "weight": 1 + }, + { + "id": 721, + "nodePlanId": 30310, + "nodeId": 1120203, + "weight": 1 + }, + { + "id": 722, + "nodePlanId": 30310, + "nodeId": 1120303, + "weight": 1 + }, + { + "id": 723, + "nodePlanId": 30310, + "nodeId": 1120403, + "weight": 1 + }, + { + "id": 724, + "nodePlanId": 30310, + "nodeId": 1120503, + "weight": 1 + }, + { + "id": 725, + "nodePlanId": 30310, + "nodeId": 1120603, + "weight": 1 + }, + { + "id": 726, + "nodePlanId": 30310, + "nodeId": 1120703, + "weight": 1 + }, + { + "id": 727, + "nodePlanId": 30310, + "nodeId": 1120803, + "weight": 1 + }, + { + "id": 728, + "nodePlanId": 30310, + "nodeId": 2120103, + "weight": 1 + }, + { + "id": 729, + "nodePlanId": 30310, + "nodeId": 2120203, + "weight": 1 + }, + { + "id": 730, + "nodePlanId": 30310, + "nodeId": 2120303, + "weight": 1 + }, + { + "id": 731, + "nodePlanId": 30310, + "nodeId": 2120403, + "weight": 1 + }, + { + "id": 732, + "nodePlanId": 30310, + "nodeId": 2120503, + "weight": 2 + }, + { + "id": 733, + "nodePlanId": 30310, + "nodeId": 2120603, + "weight": 2 + }, + { + "id": 734, + "nodePlanId": 30310, + "nodeId": 5110103, + "weight": 3 + }, + { + "id": 735, + "nodePlanId": 30310, + "nodeId": 6110103, + "weight": 3 + }, + { + "id": 736, + "nodePlanId": 30311, + "nodeId": 1120103, + "weight": 1 + }, + { + "id": 737, + "nodePlanId": 30311, + "nodeId": 1120203, + "weight": 1 + }, + { + "id": 738, + "nodePlanId": 30311, + "nodeId": 1120303, + "weight": 1 + }, + { + "id": 739, + "nodePlanId": 30311, + "nodeId": 1120403, + "weight": 1 + }, + { + "id": 740, + "nodePlanId": 30311, + "nodeId": 1120503, + "weight": 1 + }, + { + "id": 741, + "nodePlanId": 30311, + "nodeId": 1120603, + "weight": 1 + }, + { + "id": 742, + "nodePlanId": 30311, + "nodeId": 1120703, + "weight": 1 + }, + { + "id": 743, + "nodePlanId": 30311, + "nodeId": 1120803, + "weight": 1 + }, + { + "id": 744, + "nodePlanId": 30311, + "nodeId": 2120103, + "weight": 1 + }, + { + "id": 745, + "nodePlanId": 30311, + "nodeId": 2120203, + "weight": 1 + }, + { + "id": 746, + "nodePlanId": 30311, + "nodeId": 2120303, + "weight": 1 + }, + { + "id": 747, + "nodePlanId": 30311, + "nodeId": 2120403, + "weight": 1 + }, + { + "id": 748, + "nodePlanId": 30311, + "nodeId": 2120503, + "weight": 2 + }, + { + "id": 749, + "nodePlanId": 30311, + "nodeId": 2120603, + "weight": 2 + }, + { + "id": 750, + "nodePlanId": 30311, + "nodeId": 4110103, + "weight": 2 + }, + { + "id": 751, + "nodePlanId": 30311, + "nodeId": 6110103, + "weight": 2 + }, + { + "id": 752, + "nodePlanId": 30311, + "nodeId": 6110103, + "weight": 2 + }, + { + "id": 753, + "nodePlanId": 30312, + "nodeId": 1130103, + "weight": 1 + }, + { + "id": 754, + "nodePlanId": 30312, + "nodeId": 1130203, + "weight": 1 + }, + { + "id": 755, + "nodePlanId": 30312, + "nodeId": 1130303, + "weight": 1 + }, + { + "id": 756, + "nodePlanId": 30312, + "nodeId": 1130403, + "weight": 1 + }, + { + "id": 757, + "nodePlanId": 30312, + "nodeId": 1130503, + "weight": 1 + }, + { + "id": 758, + "nodePlanId": 30312, + "nodeId": 2130103, + "weight": 1.5 + }, + { + "id": 759, + "nodePlanId": 30312, + "nodeId": 2130203, + "weight": 1.5 + }, + { + "id": 760, + "nodePlanId": 30312, + "nodeId": 2130303, + "weight": 1 + }, + { + "id": 761, + "nodePlanId": 30312, + "nodeId": 2130403, + "weight": 1 + }, + { + "id": 762, + "nodePlanId": 30312, + "nodeId": 2130503, + "weight": 1 + }, + { + "id": 763, + "nodePlanId": 30312, + "nodeId": 2130603, + "weight": 1 + }, + { + "id": 764, + "nodePlanId": 30313, + "nodeId": 1130603, + "weight": 1 + }, + { + "id": 765, + "nodePlanId": 30313, + "nodeId": 1130703, + "weight": 1 + }, + { + "id": 766, + "nodePlanId": 30313, + "nodeId": 1130803, + "weight": 1 + }, + { + "id": 767, + "nodePlanId": 30313, + "nodeId": 2130103, + "weight": 1 + }, + { + "id": 768, + "nodePlanId": 30313, + "nodeId": 2130203, + "weight": 1 + }, + { + "id": 769, + "nodePlanId": 30313, + "nodeId": 2130303, + "weight": 2 + }, + { + "id": 770, + "nodePlanId": 30313, + "nodeId": 2130403, + "weight": 2 + }, + { + "id": 771, + "nodePlanId": 30313, + "nodeId": 2130503, + "weight": 1 + }, + { + "id": 772, + "nodePlanId": 30313, + "nodeId": 2130603, + "weight": 1 + }, + { + "id": 773, + "nodePlanId": 30313, + "nodeId": 5110103, + "weight": 3 + }, + { + "id": 774, + "nodePlanId": 30313, + "nodeId": 6110103, + "weight": 2 + }, + { + "id": 775, + "nodePlanId": 30314, + "nodeId": 4110103, + "weight": 1 + }, + { + "id": 776, + "nodePlanId": 30315, + "nodeId": 7110103, + "weight": 1 + }, + { + "id": 777, + "nodePlanId": 30401, + "nodeId": 1110104, + "weight": 1 + }, + { + "id": 778, + "nodePlanId": 30401, + "nodeId": 1110204, + "weight": 1 + }, + { + "id": 779, + "nodePlanId": 30401, + "nodeId": 1110304, + "weight": 1 + }, + { + "id": 780, + "nodePlanId": 30401, + "nodeId": 1110404, + "weight": 1 + }, + { + "id": 781, + "nodePlanId": 30401, + "nodeId": 1110504, + "weight": 1 + }, + { + "id": 782, + "nodePlanId": 30401, + "nodeId": 1110604, + "weight": 1 + }, + { + "id": 783, + "nodePlanId": 30401, + "nodeId": 1110704, + "weight": 1 + }, + { + "id": 784, + "nodePlanId": 30401, + "nodeId": 1110804, + "weight": 1 + }, + { + "id": 785, + "nodePlanId": 30402, + "nodeId": 1110104, + "weight": 1 + }, + { + "id": 786, + "nodePlanId": 30402, + "nodeId": 1110204, + "weight": 1 + }, + { + "id": 787, + "nodePlanId": 30402, + "nodeId": 1110304, + "weight": 1 + }, + { + "id": 788, + "nodePlanId": 30402, + "nodeId": 1110404, + "weight": 1 + }, + { + "id": 789, + "nodePlanId": 30402, + "nodeId": 1110504, + "weight": 1 + }, + { + "id": 790, + "nodePlanId": 30402, + "nodeId": 1110604, + "weight": 1 + }, + { + "id": 791, + "nodePlanId": 30402, + "nodeId": 1110704, + "weight": 1 + }, + { + "id": 792, + "nodePlanId": 30402, + "nodeId": 1110804, + "weight": 1 + }, + { + "id": 793, + "nodePlanId": 30403, + "nodeId": 1110104, + "weight": 1 + }, + { + "id": 794, + "nodePlanId": 30403, + "nodeId": 1110204, + "weight": 1 + }, + { + "id": 795, + "nodePlanId": 30403, + "nodeId": 1110304, + "weight": 1 + }, + { + "id": 796, + "nodePlanId": 30403, + "nodeId": 1110404, + "weight": 1 + }, + { + "id": 797, + "nodePlanId": 30403, + "nodeId": 1110504, + "weight": 1 + }, + { + "id": 798, + "nodePlanId": 30403, + "nodeId": 1110604, + "weight": 1 + }, + { + "id": 799, + "nodePlanId": 30403, + "nodeId": 1110704, + "weight": 1 + }, + { + "id": 800, + "nodePlanId": 30403, + "nodeId": 1110804, + "weight": 1 + }, + { + "id": 801, + "nodePlanId": 30403, + "nodeId": 2110104, + "weight": 4 + }, + { + "id": 802, + "nodePlanId": 30403, + "nodeId": 2110204, + "weight": 4 + }, + { + "id": 803, + "nodePlanId": 30403, + "nodeId": 6110104, + "weight": 8 + }, + { + "id": 804, + "nodePlanId": 30404, + "nodeId": 2110304, + "weight": 1 + }, + { + "id": 805, + "nodePlanId": 30404, + "nodeId": 2110404, + "weight": 1 + }, + { + "id": 806, + "nodePlanId": 30404, + "nodeId": 2110504, + "weight": 1 + }, + { + "id": 807, + "nodePlanId": 30404, + "nodeId": 2110604, + "weight": 1 + }, + { + "id": 808, + "nodePlanId": 30405, + "nodeId": 5110104, + "weight": 1 + }, + { + "id": 809, + "nodePlanId": 30406, + "nodeId": 1120104, + "weight": 1 + }, + { + "id": 810, + "nodePlanId": 30406, + "nodeId": 1120204, + "weight": 1 + }, + { + "id": 811, + "nodePlanId": 30406, + "nodeId": 1120304, + "weight": 1 + }, + { + "id": 812, + "nodePlanId": 30406, + "nodeId": 1120404, + "weight": 1 + }, + { + "id": 813, + "nodePlanId": 30406, + "nodeId": 1120504, + "weight": 1 + }, + { + "id": 814, + "nodePlanId": 30406, + "nodeId": 1120604, + "weight": 1 + }, + { + "id": 815, + "nodePlanId": 30406, + "nodeId": 1120704, + "weight": 1 + }, + { + "id": 816, + "nodePlanId": 30406, + "nodeId": 1120804, + "weight": 1 + }, + { + "id": 817, + "nodePlanId": 30406, + "nodeId": 2120104, + "weight": 2 + }, + { + "id": 818, + "nodePlanId": 30406, + "nodeId": 2120204, + "weight": 2 + }, + { + "id": 819, + "nodePlanId": 30406, + "nodeId": 2120304, + "weight": 1 + }, + { + "id": 820, + "nodePlanId": 30406, + "nodeId": 2120404, + "weight": 1 + }, + { + "id": 821, + "nodePlanId": 30406, + "nodeId": 2120504, + "weight": 1 + }, + { + "id": 822, + "nodePlanId": 30406, + "nodeId": 2120604, + "weight": 1 + }, + { + "id": 823, + "nodePlanId": 30406, + "nodeId": 4110104, + "weight": 3 + }, + { + "id": 824, + "nodePlanId": 30406, + "nodeId": 6110104, + "weight": 3 + }, + { + "id": 825, + "nodePlanId": 30407, + "nodeId": 1120104, + "weight": 1 + }, + { + "id": 826, + "nodePlanId": 30407, + "nodeId": 1120204, + "weight": 1 + }, + { + "id": 827, + "nodePlanId": 30407, + "nodeId": 1120304, + "weight": 1 + }, + { + "id": 828, + "nodePlanId": 30407, + "nodeId": 1120404, + "weight": 1 + }, + { + "id": 829, + "nodePlanId": 30407, + "nodeId": 1120504, + "weight": 1 + }, + { + "id": 830, + "nodePlanId": 30407, + "nodeId": 1120604, + "weight": 1 + }, + { + "id": 831, + "nodePlanId": 30407, + "nodeId": 1120704, + "weight": 1 + }, + { + "id": 832, + "nodePlanId": 30407, + "nodeId": 1120804, + "weight": 1 + }, + { + "id": 833, + "nodePlanId": 30407, + "nodeId": 2120104, + "weight": 1 + }, + { + "id": 834, + "nodePlanId": 30407, + "nodeId": 2120204, + "weight": 1 + }, + { + "id": 835, + "nodePlanId": 30407, + "nodeId": 2120304, + "weight": 2 + }, + { + "id": 836, + "nodePlanId": 30407, + "nodeId": 2120404, + "weight": 2 + }, + { + "id": 837, + "nodePlanId": 30407, + "nodeId": 2120504, + "weight": 1 + }, + { + "id": 838, + "nodePlanId": 30407, + "nodeId": 2120604, + "weight": 1 + }, + { + "id": 839, + "nodePlanId": 30407, + "nodeId": 5110104, + "weight": 3 + }, + { + "id": 840, + "nodePlanId": 30408, + "nodeId": 1120104, + "weight": 1 + }, + { + "id": 841, + "nodePlanId": 30408, + "nodeId": 1120204, + "weight": 1 + }, + { + "id": 842, + "nodePlanId": 30408, + "nodeId": 1120304, + "weight": 1 + }, + { + "id": 843, + "nodePlanId": 30408, + "nodeId": 1120404, + "weight": 1 + }, + { + "id": 844, + "nodePlanId": 30408, + "nodeId": 1120504, + "weight": 1 + }, + { + "id": 845, + "nodePlanId": 30408, + "nodeId": 1120604, + "weight": 1 + }, + { + "id": 846, + "nodePlanId": 30408, + "nodeId": 1120704, + "weight": 1 + }, + { + "id": 847, + "nodePlanId": 30408, + "nodeId": 1120804, + "weight": 1 + }, + { + "id": 848, + "nodePlanId": 30408, + "nodeId": 2120104, + "weight": 1 + }, + { + "id": 849, + "nodePlanId": 30408, + "nodeId": 2120204, + "weight": 1 + }, + { + "id": 850, + "nodePlanId": 30408, + "nodeId": 2120304, + "weight": 1 + }, + { + "id": 851, + "nodePlanId": 30408, + "nodeId": 2120404, + "weight": 1 + }, + { + "id": 852, + "nodePlanId": 30408, + "nodeId": 2120504, + "weight": 2 + }, + { + "id": 853, + "nodePlanId": 30408, + "nodeId": 2120604, + "weight": 2 + }, + { + "id": 854, + "nodePlanId": 30408, + "nodeId": 5110104, + "weight": 3 + }, + { + "id": 855, + "nodePlanId": 30408, + "nodeId": 6110104, + "weight": 3 + }, + { + "id": 856, + "nodePlanId": 30409, + "nodeId": 3110104, + "weight": 1 + }, + { + "id": 857, + "nodePlanId": 30410, + "nodeId": 1120104, + "weight": 1 + }, + { + "id": 858, + "nodePlanId": 30410, + "nodeId": 1120204, + "weight": 1 + }, + { + "id": 859, + "nodePlanId": 30410, + "nodeId": 1120304, + "weight": 1 + }, + { + "id": 860, + "nodePlanId": 30410, + "nodeId": 1120404, + "weight": 1 + }, + { + "id": 861, + "nodePlanId": 30410, + "nodeId": 1120504, + "weight": 1 + }, + { + "id": 862, + "nodePlanId": 30410, + "nodeId": 1120604, + "weight": 1 + }, + { + "id": 863, + "nodePlanId": 30410, + "nodeId": 1120704, + "weight": 1 + }, + { + "id": 864, + "nodePlanId": 30410, + "nodeId": 1120804, + "weight": 1 + }, + { + "id": 865, + "nodePlanId": 30410, + "nodeId": 2120104, + "weight": 1 + }, + { + "id": 866, + "nodePlanId": 30410, + "nodeId": 2120204, + "weight": 1 + }, + { + "id": 867, + "nodePlanId": 30410, + "nodeId": 2120304, + "weight": 1 + }, + { + "id": 868, + "nodePlanId": 30410, + "nodeId": 2120404, + "weight": 1 + }, + { + "id": 869, + "nodePlanId": 30410, + "nodeId": 2120504, + "weight": 2 + }, + { + "id": 870, + "nodePlanId": 30410, + "nodeId": 2120604, + "weight": 2 + }, + { + "id": 871, + "nodePlanId": 30410, + "nodeId": 5110104, + "weight": 3 + }, + { + "id": 872, + "nodePlanId": 30410, + "nodeId": 6110104, + "weight": 3 + }, + { + "id": 873, + "nodePlanId": 30411, + "nodeId": 1120104, + "weight": 1 + }, + { + "id": 874, + "nodePlanId": 30411, + "nodeId": 1120204, + "weight": 1 + }, + { + "id": 875, + "nodePlanId": 30411, + "nodeId": 1120304, + "weight": 1 + }, + { + "id": 876, + "nodePlanId": 30411, + "nodeId": 1120404, + "weight": 1 + }, + { + "id": 877, + "nodePlanId": 30411, + "nodeId": 1120504, + "weight": 1 + }, + { + "id": 878, + "nodePlanId": 30411, + "nodeId": 1120604, + "weight": 1 + }, + { + "id": 879, + "nodePlanId": 30411, + "nodeId": 1120704, + "weight": 1 + }, + { + "id": 880, + "nodePlanId": 30411, + "nodeId": 1120804, + "weight": 1 + }, + { + "id": 881, + "nodePlanId": 30411, + "nodeId": 2120104, + "weight": 1 + }, + { + "id": 882, + "nodePlanId": 30411, + "nodeId": 2120204, + "weight": 1 + }, + { + "id": 883, + "nodePlanId": 30411, + "nodeId": 2120304, + "weight": 1 + }, + { + "id": 884, + "nodePlanId": 30411, + "nodeId": 2120404, + "weight": 1 + }, + { + "id": 885, + "nodePlanId": 30411, + "nodeId": 2120504, + "weight": 2 + }, + { + "id": 886, + "nodePlanId": 30411, + "nodeId": 2120604, + "weight": 2 + }, + { + "id": 887, + "nodePlanId": 30411, + "nodeId": 4110104, + "weight": 2 + }, + { + "id": 888, + "nodePlanId": 30411, + "nodeId": 6110104, + "weight": 2 + }, + { + "id": 889, + "nodePlanId": 30411, + "nodeId": 6110104, + "weight": 2 + }, + { + "id": 890, + "nodePlanId": 30412, + "nodeId": 1130104, + "weight": 1 + }, + { + "id": 891, + "nodePlanId": 30412, + "nodeId": 1130204, + "weight": 1 + }, + { + "id": 892, + "nodePlanId": 30412, + "nodeId": 1130304, + "weight": 1 + }, + { + "id": 893, + "nodePlanId": 30412, + "nodeId": 1130404, + "weight": 1 + }, + { + "id": 894, + "nodePlanId": 30412, + "nodeId": 1130504, + "weight": 1 + }, + { + "id": 895, + "nodePlanId": 30412, + "nodeId": 2130104, + "weight": 1.5 + }, + { + "id": 896, + "nodePlanId": 30412, + "nodeId": 2130204, + "weight": 1.5 + }, + { + "id": 897, + "nodePlanId": 30412, + "nodeId": 2130304, + "weight": 1 + }, + { + "id": 898, + "nodePlanId": 30412, + "nodeId": 2130404, + "weight": 1 + }, + { + "id": 899, + "nodePlanId": 30412, + "nodeId": 2130504, + "weight": 1 + }, + { + "id": 900, + "nodePlanId": 30412, + "nodeId": 2130604, + "weight": 1 + }, + { + "id": 901, + "nodePlanId": 30413, + "nodeId": 1130604, + "weight": 1 + }, + { + "id": 902, + "nodePlanId": 30413, + "nodeId": 1130704, + "weight": 1 + }, + { + "id": 903, + "nodePlanId": 30413, + "nodeId": 1130804, + "weight": 1 + }, + { + "id": 904, + "nodePlanId": 30413, + "nodeId": 2130104, + "weight": 1 + }, + { + "id": 905, + "nodePlanId": 30413, + "nodeId": 2130204, + "weight": 1 + }, + { + "id": 906, + "nodePlanId": 30413, + "nodeId": 2130304, + "weight": 2 + }, + { + "id": 907, + "nodePlanId": 30413, + "nodeId": 2130404, + "weight": 2 + }, + { + "id": 908, + "nodePlanId": 30413, + "nodeId": 2130504, + "weight": 1 + }, + { + "id": 909, + "nodePlanId": 30413, + "nodeId": 2130604, + "weight": 1 + }, + { + "id": 910, + "nodePlanId": 30413, + "nodeId": 5110104, + "weight": 3 + }, + { + "id": 911, + "nodePlanId": 30413, + "nodeId": 6110104, + "weight": 2 + }, + { + "id": 912, + "nodePlanId": 30414, + "nodeId": 4110104, + "weight": 1 + }, + { + "id": 913, + "nodePlanId": 30415, + "nodeId": 7110104, + "weight": 1 + }, + { + "id": 914, + "nodePlanId": 30501, + "nodeId": 1110105, + "weight": 1 + }, + { + "id": 915, + "nodePlanId": 30501, + "nodeId": 1110205, + "weight": 1 + }, + { + "id": 916, + "nodePlanId": 30501, + "nodeId": 1110305, + "weight": 1 + }, + { + "id": 917, + "nodePlanId": 30501, + "nodeId": 1110405, + "weight": 1 + }, + { + "id": 918, + "nodePlanId": 30501, + "nodeId": 1110505, + "weight": 1 + }, + { + "id": 919, + "nodePlanId": 30501, + "nodeId": 1110605, + "weight": 1 + }, + { + "id": 920, + "nodePlanId": 30501, + "nodeId": 1110705, + "weight": 1 + }, + { + "id": 921, + "nodePlanId": 30501, + "nodeId": 1110805, + "weight": 1 + }, + { + "id": 922, + "nodePlanId": 30502, + "nodeId": 1110105, + "weight": 1 + }, + { + "id": 923, + "nodePlanId": 30502, + "nodeId": 1110205, + "weight": 1 + }, + { + "id": 924, + "nodePlanId": 30502, + "nodeId": 1110305, + "weight": 1 + }, + { + "id": 925, + "nodePlanId": 30502, + "nodeId": 1110405, + "weight": 1 + }, + { + "id": 926, + "nodePlanId": 30502, + "nodeId": 1110505, + "weight": 1 + }, + { + "id": 927, + "nodePlanId": 30502, + "nodeId": 1110605, + "weight": 1 + }, + { + "id": 928, + "nodePlanId": 30502, + "nodeId": 1110705, + "weight": 1 + }, + { + "id": 929, + "nodePlanId": 30502, + "nodeId": 1110805, + "weight": 1 + }, + { + "id": 930, + "nodePlanId": 30503, + "nodeId": 1110105, + "weight": 1 + }, + { + "id": 931, + "nodePlanId": 30503, + "nodeId": 1110205, + "weight": 1 + }, + { + "id": 932, + "nodePlanId": 30503, + "nodeId": 1110305, + "weight": 1 + }, + { + "id": 933, + "nodePlanId": 30503, + "nodeId": 1110405, + "weight": 1 + }, + { + "id": 934, + "nodePlanId": 30503, + "nodeId": 1110505, + "weight": 1 + }, + { + "id": 935, + "nodePlanId": 30503, + "nodeId": 1110605, + "weight": 1 + }, + { + "id": 936, + "nodePlanId": 30503, + "nodeId": 1110705, + "weight": 1 + }, + { + "id": 937, + "nodePlanId": 30503, + "nodeId": 1110805, + "weight": 1 + }, + { + "id": 938, + "nodePlanId": 30503, + "nodeId": 2110105, + "weight": 4 + }, + { + "id": 939, + "nodePlanId": 30503, + "nodeId": 2110205, + "weight": 4 + }, + { + "id": 940, + "nodePlanId": 30503, + "nodeId": 6110105, + "weight": 8 + }, + { + "id": 941, + "nodePlanId": 30504, + "nodeId": 2110305, + "weight": 1 + }, + { + "id": 942, + "nodePlanId": 30504, + "nodeId": 2110405, + "weight": 1 + }, + { + "id": 943, + "nodePlanId": 30504, + "nodeId": 2110505, + "weight": 1 + }, + { + "id": 944, + "nodePlanId": 30504, + "nodeId": 2110605, + "weight": 1 + }, + { + "id": 945, + "nodePlanId": 30505, + "nodeId": 5110105, + "weight": 1 + }, + { + "id": 946, + "nodePlanId": 30506, + "nodeId": 1120105, + "weight": 1 + }, + { + "id": 947, + "nodePlanId": 30506, + "nodeId": 1120205, + "weight": 1 + }, + { + "id": 948, + "nodePlanId": 30506, + "nodeId": 1120305, + "weight": 1 + }, + { + "id": 949, + "nodePlanId": 30506, + "nodeId": 1120405, + "weight": 1 + }, + { + "id": 950, + "nodePlanId": 30506, + "nodeId": 1120505, + "weight": 1 + }, + { + "id": 951, + "nodePlanId": 30506, + "nodeId": 1120605, + "weight": 1 + }, + { + "id": 952, + "nodePlanId": 30506, + "nodeId": 1120705, + "weight": 1 + }, + { + "id": 953, + "nodePlanId": 30506, + "nodeId": 1120805, + "weight": 1 + }, + { + "id": 954, + "nodePlanId": 30506, + "nodeId": 2120105, + "weight": 2 + }, + { + "id": 955, + "nodePlanId": 30506, + "nodeId": 2120205, + "weight": 2 + }, + { + "id": 956, + "nodePlanId": 30506, + "nodeId": 2120305, + "weight": 1 + }, + { + "id": 957, + "nodePlanId": 30506, + "nodeId": 2120405, + "weight": 1 + }, + { + "id": 958, + "nodePlanId": 30506, + "nodeId": 2120505, + "weight": 1 + }, + { + "id": 959, + "nodePlanId": 30506, + "nodeId": 2120605, + "weight": 1 + }, + { + "id": 960, + "nodePlanId": 30506, + "nodeId": 4110105, + "weight": 3 + }, + { + "id": 961, + "nodePlanId": 30506, + "nodeId": 6110105, + "weight": 3 + }, + { + "id": 962, + "nodePlanId": 30507, + "nodeId": 1120105, + "weight": 1 + }, + { + "id": 963, + "nodePlanId": 30507, + "nodeId": 1120205, + "weight": 1 + }, + { + "id": 964, + "nodePlanId": 30507, + "nodeId": 1120305, + "weight": 1 + }, + { + "id": 965, + "nodePlanId": 30507, + "nodeId": 1120405, + "weight": 1 + }, + { + "id": 966, + "nodePlanId": 30507, + "nodeId": 1120505, + "weight": 1 + }, + { + "id": 967, + "nodePlanId": 30507, + "nodeId": 1120605, + "weight": 1 + }, + { + "id": 968, + "nodePlanId": 30507, + "nodeId": 1120705, + "weight": 1 + }, + { + "id": 969, + "nodePlanId": 30507, + "nodeId": 1120805, + "weight": 1 + }, + { + "id": 970, + "nodePlanId": 30507, + "nodeId": 2120105, + "weight": 1 + }, + { + "id": 971, + "nodePlanId": 30507, + "nodeId": 2120205, + "weight": 1 + }, + { + "id": 972, + "nodePlanId": 30507, + "nodeId": 2120305, + "weight": 2 + }, + { + "id": 973, + "nodePlanId": 30507, + "nodeId": 2120405, + "weight": 2 + }, + { + "id": 974, + "nodePlanId": 30507, + "nodeId": 2120505, + "weight": 1 + }, + { + "id": 975, + "nodePlanId": 30507, + "nodeId": 2120605, + "weight": 1 + }, + { + "id": 976, + "nodePlanId": 30507, + "nodeId": 5110105, + "weight": 3 + }, + { + "id": 977, + "nodePlanId": 30508, + "nodeId": 1120105, + "weight": 1 + }, + { + "id": 978, + "nodePlanId": 30508, + "nodeId": 1120205, + "weight": 1 + }, + { + "id": 979, + "nodePlanId": 30508, + "nodeId": 1120305, + "weight": 1 + }, + { + "id": 980, + "nodePlanId": 30508, + "nodeId": 1120405, + "weight": 1 + }, + { + "id": 981, + "nodePlanId": 30508, + "nodeId": 1120505, + "weight": 1 + }, + { + "id": 982, + "nodePlanId": 30508, + "nodeId": 1120605, + "weight": 1 + }, + { + "id": 983, + "nodePlanId": 30508, + "nodeId": 1120705, + "weight": 1 + }, + { + "id": 984, + "nodePlanId": 30508, + "nodeId": 1120805, + "weight": 1 + }, + { + "id": 985, + "nodePlanId": 30508, + "nodeId": 2120105, + "weight": 1 + }, + { + "id": 986, + "nodePlanId": 30508, + "nodeId": 2120205, + "weight": 1 + }, + { + "id": 987, + "nodePlanId": 30508, + "nodeId": 2120305, + "weight": 1 + }, + { + "id": 988, + "nodePlanId": 30508, + "nodeId": 2120405, + "weight": 1 + }, + { + "id": 989, + "nodePlanId": 30508, + "nodeId": 2120505, + "weight": 2 + }, + { + "id": 990, + "nodePlanId": 30508, + "nodeId": 2120605, + "weight": 2 + }, + { + "id": 991, + "nodePlanId": 30508, + "nodeId": 5110105, + "weight": 3 + }, + { + "id": 992, + "nodePlanId": 30508, + "nodeId": 6110105, + "weight": 3 + }, + { + "id": 993, + "nodePlanId": 30509, + "nodeId": 3110105, + "weight": 1 + }, + { + "id": 994, + "nodePlanId": 30510, + "nodeId": 1120105, + "weight": 1 + }, + { + "id": 995, + "nodePlanId": 30510, + "nodeId": 1120205, + "weight": 1 + }, + { + "id": 996, + "nodePlanId": 30510, + "nodeId": 1120305, + "weight": 1 + }, + { + "id": 997, + "nodePlanId": 30510, + "nodeId": 1120405, + "weight": 1 + }, + { + "id": 998, + "nodePlanId": 30510, + "nodeId": 1120505, + "weight": 1 + }, + { + "id": 999, + "nodePlanId": 30510, + "nodeId": 1120605, + "weight": 1 + }, + { + "id": 1000, + "nodePlanId": 30510, + "nodeId": 1120705, + "weight": 1 + }, + { + "id": 1001, + "nodePlanId": 30510, + "nodeId": 1120805, + "weight": 1 + }, + { + "id": 1002, + "nodePlanId": 30510, + "nodeId": 2120105, + "weight": 1 + }, + { + "id": 1003, + "nodePlanId": 30510, + "nodeId": 2120205, + "weight": 1 + }, + { + "id": 1004, + "nodePlanId": 30510, + "nodeId": 2120305, + "weight": 1 + }, + { + "id": 1005, + "nodePlanId": 30510, + "nodeId": 2120405, + "weight": 1 + }, + { + "id": 1006, + "nodePlanId": 30510, + "nodeId": 2120505, + "weight": 2 + }, + { + "id": 1007, + "nodePlanId": 30510, + "nodeId": 2120605, + "weight": 2 + }, + { + "id": 1008, + "nodePlanId": 30510, + "nodeId": 5110105, + "weight": 3 + }, + { + "id": 1009, + "nodePlanId": 30510, + "nodeId": 6110105, + "weight": 3 + }, + { + "id": 1010, + "nodePlanId": 30511, + "nodeId": 1120105, + "weight": 1 + }, + { + "id": 1011, + "nodePlanId": 30511, + "nodeId": 1120205, + "weight": 1 + }, + { + "id": 1012, + "nodePlanId": 30511, + "nodeId": 1120305, + "weight": 1 + }, + { + "id": 1013, + "nodePlanId": 30511, + "nodeId": 1120405, + "weight": 1 + }, + { + "id": 1014, + "nodePlanId": 30511, + "nodeId": 1120505, + "weight": 1 + }, + { + "id": 1015, + "nodePlanId": 30511, + "nodeId": 1120605, + "weight": 1 + }, + { + "id": 1016, + "nodePlanId": 30511, + "nodeId": 1120705, + "weight": 1 + }, + { + "id": 1017, + "nodePlanId": 30511, + "nodeId": 1120805, + "weight": 1 + }, + { + "id": 1018, + "nodePlanId": 30511, + "nodeId": 2120105, + "weight": 1 + }, + { + "id": 1019, + "nodePlanId": 30511, + "nodeId": 2120205, + "weight": 1 + }, + { + "id": 1020, + "nodePlanId": 30511, + "nodeId": 2120305, + "weight": 1 + }, + { + "id": 1021, + "nodePlanId": 30511, + "nodeId": 2120405, + "weight": 1 + }, + { + "id": 1022, + "nodePlanId": 30511, + "nodeId": 2120505, + "weight": 2 + }, + { + "id": 1023, + "nodePlanId": 30511, + "nodeId": 2120605, + "weight": 2 + }, + { + "id": 1024, + "nodePlanId": 30511, + "nodeId": 4110105, + "weight": 2 + }, + { + "id": 1025, + "nodePlanId": 30511, + "nodeId": 6110105, + "weight": 2 + }, + { + "id": 1026, + "nodePlanId": 30511, + "nodeId": 6110105, + "weight": 2 + }, + { + "id": 1027, + "nodePlanId": 30512, + "nodeId": 1130105, + "weight": 1 + }, + { + "id": 1028, + "nodePlanId": 30512, + "nodeId": 1130205, + "weight": 1 + }, + { + "id": 1029, + "nodePlanId": 30512, + "nodeId": 1130305, + "weight": 1 + }, + { + "id": 1030, + "nodePlanId": 30512, + "nodeId": 1130405, + "weight": 1 + }, + { + "id": 1031, + "nodePlanId": 30512, + "nodeId": 1130505, + "weight": 1 + }, + { + "id": 1032, + "nodePlanId": 30512, + "nodeId": 2130105, + "weight": 1.5 + }, + { + "id": 1033, + "nodePlanId": 30512, + "nodeId": 2130205, + "weight": 1.5 + }, + { + "id": 1034, + "nodePlanId": 30512, + "nodeId": 2130305, + "weight": 1 + }, + { + "id": 1035, + "nodePlanId": 30512, + "nodeId": 2130405, + "weight": 1 + }, + { + "id": 1036, + "nodePlanId": 30512, + "nodeId": 2130505, + "weight": 1 + }, + { + "id": 1037, + "nodePlanId": 30512, + "nodeId": 2130605, + "weight": 1 + }, + { + "id": 1038, + "nodePlanId": 30513, + "nodeId": 1130605, + "weight": 1 + }, + { + "id": 1039, + "nodePlanId": 30513, + "nodeId": 1130705, + "weight": 1 + }, + { + "id": 1040, + "nodePlanId": 30513, + "nodeId": 1130805, + "weight": 1 + }, + { + "id": 1041, + "nodePlanId": 30513, + "nodeId": 2130105, + "weight": 1 + }, + { + "id": 1042, + "nodePlanId": 30513, + "nodeId": 2130205, + "weight": 1 + }, + { + "id": 1043, + "nodePlanId": 30513, + "nodeId": 2130305, + "weight": 2 + }, + { + "id": 1044, + "nodePlanId": 30513, + "nodeId": 2130405, + "weight": 2 + }, + { + "id": 1045, + "nodePlanId": 30513, + "nodeId": 2130505, + "weight": 1 + }, + { + "id": 1046, + "nodePlanId": 30513, + "nodeId": 2130605, + "weight": 1 + }, + { + "id": 1047, + "nodePlanId": 30513, + "nodeId": 5110105, + "weight": 3 + }, + { + "id": 1048, + "nodePlanId": 30513, + "nodeId": 6110105, + "weight": 2 + }, + { + "id": 1049, + "nodePlanId": 30514, + "nodeId": 4110105, + "weight": 1 + }, + { + "id": 1050, + "nodePlanId": 30514, + "nodeId": 6110105, + "weight": 1 + }, + { + "id": 1051, + "nodePlanId": 30514, + "nodeId": 6110105, + "weight": 1 + }, + { + "id": 1052, + "nodePlanId": 30514, + "nodeId": 2130505, + "weight": 1 + }, + { + "id": 1053, + "nodePlanId": 30514, + "nodeId": 2130605, + "weight": 1 + }, + { + "id": 1054, + "nodePlanId": 30515, + "nodeId": 1130105, + "weight": 1 + }, + { + "id": 1055, + "nodePlanId": 30515, + "nodeId": 1130205, + "weight": 1 + }, + { + "id": 1056, + "nodePlanId": 30515, + "nodeId": 1130305, + "weight": 1 + }, + { + "id": 1057, + "nodePlanId": 30515, + "nodeId": 1130405, + "weight": 1 + }, + { + "id": 1058, + "nodePlanId": 30515, + "nodeId": 1130505, + "weight": 1 + }, + { + "id": 1059, + "nodePlanId": 30515, + "nodeId": 1130605, + "weight": 1 + }, + { + "id": 1060, + "nodePlanId": 30515, + "nodeId": 1130705, + "weight": 1 + }, + { + "id": 1061, + "nodePlanId": 30515, + "nodeId": 1130805, + "weight": 1 + }, + { + "id": 1062, + "nodePlanId": 30515, + "nodeId": 6110105, + "weight": 3 + }, + { + "id": 1063, + "nodePlanId": 30515, + "nodeId": 6110105, + "weight": 2 + }, + { + "id": 1064, + "nodePlanId": 30516, + "nodeId": 5110105, + "weight": 1 + }, + { + "id": 1065, + "nodePlanId": 30516, + "nodeId": 5110105, + "weight": 1 + }, + { + "id": 1066, + "nodePlanId": 30516, + "nodeId": 1130105, + "weight": 1 + }, + { + "id": 1067, + "nodePlanId": 30516, + "nodeId": 1130205, + "weight": 1 + }, + { + "id": 1068, + "nodePlanId": 30517, + "nodeId": 2130105, + "weight": 1 + }, + { + "id": 1069, + "nodePlanId": 30517, + "nodeId": 2130205, + "weight": 1 + }, + { + "id": 1070, + "nodePlanId": 30517, + "nodeId": 2130305, + "weight": 1 + }, + { + "id": 1071, + "nodePlanId": 30517, + "nodeId": 2130405, + "weight": 1 + }, + { + "id": 1072, + "nodePlanId": 30517, + "nodeId": 2130505, + "weight": 1 + }, + { + "id": 1073, + "nodePlanId": 30517, + "nodeId": 2130605, + "weight": 1 + }, + { + "id": 1074, + "nodePlanId": 30518, + "nodeId": 5110105, + "weight": 1 + }, + { + "id": 1075, + "nodePlanId": 30518, + "nodeId": 6110105, + "weight": 1 + }, + { + "id": 1076, + "nodePlanId": 30519, + "nodeId": 4110105, + "weight": 1 + }, + { + "id": 1077, + "nodePlanId": 30520, + "nodeId": 7110105, + "weight": 1 + }, + { + "id": 1078, + "nodePlanId": 40101, + "nodeId": 1210101, + "weight": 1 + }, + { + "id": 1079, + "nodePlanId": 40101, + "nodeId": 1210201, + "weight": 1 + }, + { + "id": 1080, + "nodePlanId": 40101, + "nodeId": 1210301, + "weight": 1 + }, + { + "id": 1081, + "nodePlanId": 40101, + "nodeId": 1210401, + "weight": 1 + }, + { + "id": 1082, + "nodePlanId": 40101, + "nodeId": 1210501, + "weight": 1 + }, + { + "id": 1083, + "nodePlanId": 40101, + "nodeId": 1210601, + "weight": 1 + }, + { + "id": 1084, + "nodePlanId": 40101, + "nodeId": 1210701, + "weight": 1 + }, + { + "id": 1085, + "nodePlanId": 40101, + "nodeId": 1210801, + "weight": 1 + }, + { + "id": 1086, + "nodePlanId": 40102, + "nodeId": 1210101, + "weight": 1 + }, + { + "id": 1087, + "nodePlanId": 40102, + "nodeId": 1210201, + "weight": 1 + }, + { + "id": 1088, + "nodePlanId": 40102, + "nodeId": 1210301, + "weight": 1 + }, + { + "id": 1089, + "nodePlanId": 40102, + "nodeId": 1210401, + "weight": 1 + }, + { + "id": 1090, + "nodePlanId": 40102, + "nodeId": 1210501, + "weight": 1 + }, + { + "id": 1091, + "nodePlanId": 40102, + "nodeId": 1210601, + "weight": 1 + }, + { + "id": 1092, + "nodePlanId": 40102, + "nodeId": 1210701, + "weight": 1 + }, + { + "id": 1093, + "nodePlanId": 40102, + "nodeId": 1210801, + "weight": 1 + }, + { + "id": 1094, + "nodePlanId": 40103, + "nodeId": 1210101, + "weight": 1 + }, + { + "id": 1095, + "nodePlanId": 40103, + "nodeId": 1210201, + "weight": 1 + }, + { + "id": 1096, + "nodePlanId": 40103, + "nodeId": 1210301, + "weight": 1 + }, + { + "id": 1097, + "nodePlanId": 40103, + "nodeId": 1210401, + "weight": 1 + }, + { + "id": 1098, + "nodePlanId": 40103, + "nodeId": 1210501, + "weight": 1 + }, + { + "id": 1099, + "nodePlanId": 40103, + "nodeId": 1210601, + "weight": 1 + }, + { + "id": 1100, + "nodePlanId": 40103, + "nodeId": 1210701, + "weight": 1 + }, + { + "id": 1101, + "nodePlanId": 40103, + "nodeId": 1210801, + "weight": 1 + }, + { + "id": 1102, + "nodePlanId": 40103, + "nodeId": 2210101, + "weight": 4 + }, + { + "id": 1103, + "nodePlanId": 40103, + "nodeId": 2210201, + "weight": 4 + }, + { + "id": 1104, + "nodePlanId": 40103, + "nodeId": 6210101, + "weight": 8 + }, + { + "id": 1105, + "nodePlanId": 40104, + "nodeId": 2210301, + "weight": 1 + }, + { + "id": 1106, + "nodePlanId": 40104, + "nodeId": 2210401, + "weight": 1 + }, + { + "id": 1107, + "nodePlanId": 40104, + "nodeId": 2210501, + "weight": 1 + }, + { + "id": 1108, + "nodePlanId": 40104, + "nodeId": 2210601, + "weight": 1 + }, + { + "id": 1109, + "nodePlanId": 40105, + "nodeId": 5210101, + "weight": 1 + }, + { + "id": 1110, + "nodePlanId": 40106, + "nodeId": 1220101, + "weight": 1 + }, + { + "id": 1111, + "nodePlanId": 40106, + "nodeId": 1220201, + "weight": 1 + }, + { + "id": 1112, + "nodePlanId": 40106, + "nodeId": 1220301, + "weight": 1 + }, + { + "id": 1113, + "nodePlanId": 40106, + "nodeId": 1220401, + "weight": 1 + }, + { + "id": 1114, + "nodePlanId": 40106, + "nodeId": 1220501, + "weight": 1 + }, + { + "id": 1115, + "nodePlanId": 40106, + "nodeId": 1220601, + "weight": 1 + }, + { + "id": 1116, + "nodePlanId": 40106, + "nodeId": 1220701, + "weight": 1 + }, + { + "id": 1117, + "nodePlanId": 40106, + "nodeId": 1220801, + "weight": 1 + }, + { + "id": 1118, + "nodePlanId": 40106, + "nodeId": 2220101, + "weight": 2 + }, + { + "id": 1119, + "nodePlanId": 40106, + "nodeId": 2220201, + "weight": 2 + }, + { + "id": 1120, + "nodePlanId": 40106, + "nodeId": 2220301, + "weight": 1 + }, + { + "id": 1121, + "nodePlanId": 40106, + "nodeId": 2220401, + "weight": 1 + }, + { + "id": 1122, + "nodePlanId": 40106, + "nodeId": 2220501, + "weight": 1 + }, + { + "id": 1123, + "nodePlanId": 40106, + "nodeId": 2220601, + "weight": 1 + }, + { + "id": 1124, + "nodePlanId": 40106, + "nodeId": 4210101, + "weight": 3 + }, + { + "id": 1125, + "nodePlanId": 40106, + "nodeId": 6210101, + "weight": 3 + }, + { + "id": 1126, + "nodePlanId": 40107, + "nodeId": 1220101, + "weight": 1 + }, + { + "id": 1127, + "nodePlanId": 40107, + "nodeId": 1220201, + "weight": 1 + }, + { + "id": 1128, + "nodePlanId": 40107, + "nodeId": 1220301, + "weight": 1 + }, + { + "id": 1129, + "nodePlanId": 40107, + "nodeId": 1220401, + "weight": 1 + }, + { + "id": 1130, + "nodePlanId": 40107, + "nodeId": 1220501, + "weight": 1 + }, + { + "id": 1131, + "nodePlanId": 40107, + "nodeId": 1220601, + "weight": 1 + }, + { + "id": 1132, + "nodePlanId": 40107, + "nodeId": 1220701, + "weight": 1 + }, + { + "id": 1133, + "nodePlanId": 40107, + "nodeId": 1220801, + "weight": 1 + }, + { + "id": 1134, + "nodePlanId": 40107, + "nodeId": 2220101, + "weight": 1 + }, + { + "id": 1135, + "nodePlanId": 40107, + "nodeId": 2220201, + "weight": 1 + }, + { + "id": 1136, + "nodePlanId": 40107, + "nodeId": 2220301, + "weight": 2 + }, + { + "id": 1137, + "nodePlanId": 40107, + "nodeId": 2220401, + "weight": 2 + }, + { + "id": 1138, + "nodePlanId": 40107, + "nodeId": 2220501, + "weight": 1 + }, + { + "id": 1139, + "nodePlanId": 40107, + "nodeId": 2220601, + "weight": 1 + }, + { + "id": 1140, + "nodePlanId": 40107, + "nodeId": 5210101, + "weight": 3 + }, + { + "id": 1141, + "nodePlanId": 40108, + "nodeId": 1220101, + "weight": 1 + }, + { + "id": 1142, + "nodePlanId": 40108, + "nodeId": 1220201, + "weight": 1 + }, + { + "id": 1143, + "nodePlanId": 40108, + "nodeId": 1220301, + "weight": 1 + }, + { + "id": 1144, + "nodePlanId": 40108, + "nodeId": 1220401, + "weight": 1 + }, + { + "id": 1145, + "nodePlanId": 40108, + "nodeId": 1220501, + "weight": 1 + }, + { + "id": 1146, + "nodePlanId": 40108, + "nodeId": 1220601, + "weight": 1 + }, + { + "id": 1147, + "nodePlanId": 40108, + "nodeId": 1220701, + "weight": 1 + }, + { + "id": 1148, + "nodePlanId": 40108, + "nodeId": 1220801, + "weight": 1 + }, + { + "id": 1149, + "nodePlanId": 40108, + "nodeId": 2220101, + "weight": 1 + }, + { + "id": 1150, + "nodePlanId": 40108, + "nodeId": 2220201, + "weight": 1 + }, + { + "id": 1151, + "nodePlanId": 40108, + "nodeId": 2220301, + "weight": 1 + }, + { + "id": 1152, + "nodePlanId": 40108, + "nodeId": 2220401, + "weight": 1 + }, + { + "id": 1153, + "nodePlanId": 40108, + "nodeId": 2220501, + "weight": 2 + }, + { + "id": 1154, + "nodePlanId": 40108, + "nodeId": 2220601, + "weight": 2 + }, + { + "id": 1155, + "nodePlanId": 40108, + "nodeId": 5210101, + "weight": 3 + }, + { + "id": 1156, + "nodePlanId": 40108, + "nodeId": 6210101, + "weight": 3 + }, + { + "id": 1157, + "nodePlanId": 40109, + "nodeId": 3210101, + "weight": 1 + }, + { + "id": 1158, + "nodePlanId": 40110, + "nodeId": 1220101, + "weight": 1 + }, + { + "id": 1159, + "nodePlanId": 40110, + "nodeId": 1220201, + "weight": 1 + }, + { + "id": 1160, + "nodePlanId": 40110, + "nodeId": 1220301, + "weight": 1 + }, + { + "id": 1161, + "nodePlanId": 40110, + "nodeId": 1220401, + "weight": 1 + }, + { + "id": 1162, + "nodePlanId": 40110, + "nodeId": 1220501, + "weight": 1 + }, + { + "id": 1163, + "nodePlanId": 40110, + "nodeId": 1220601, + "weight": 1 + }, + { + "id": 1164, + "nodePlanId": 40110, + "nodeId": 1220701, + "weight": 1 + }, + { + "id": 1165, + "nodePlanId": 40110, + "nodeId": 1220801, + "weight": 1 + }, + { + "id": 1166, + "nodePlanId": 40110, + "nodeId": 2220101, + "weight": 1 + }, + { + "id": 1167, + "nodePlanId": 40110, + "nodeId": 2220201, + "weight": 1 + }, + { + "id": 1168, + "nodePlanId": 40110, + "nodeId": 2220301, + "weight": 1 + }, + { + "id": 1169, + "nodePlanId": 40110, + "nodeId": 2220401, + "weight": 1 + }, + { + "id": 1170, + "nodePlanId": 40110, + "nodeId": 2220501, + "weight": 2 + }, + { + "id": 1171, + "nodePlanId": 40110, + "nodeId": 2220601, + "weight": 2 + }, + { + "id": 1172, + "nodePlanId": 40110, + "nodeId": 5210101, + "weight": 3 + }, + { + "id": 1173, + "nodePlanId": 40110, + "nodeId": 6210101, + "weight": 3 + }, + { + "id": 1174, + "nodePlanId": 40111, + "nodeId": 1220101, + "weight": 1 + }, + { + "id": 1175, + "nodePlanId": 40111, + "nodeId": 1220201, + "weight": 1 + }, + { + "id": 1176, + "nodePlanId": 40111, + "nodeId": 1220301, + "weight": 1 + }, + { + "id": 1177, + "nodePlanId": 40111, + "nodeId": 1220401, + "weight": 1 + }, + { + "id": 1178, + "nodePlanId": 40111, + "nodeId": 1220501, + "weight": 1 + }, + { + "id": 1179, + "nodePlanId": 40111, + "nodeId": 1220601, + "weight": 1 + }, + { + "id": 1180, + "nodePlanId": 40111, + "nodeId": 1220701, + "weight": 1 + }, + { + "id": 1181, + "nodePlanId": 40111, + "nodeId": 1220801, + "weight": 1 + }, + { + "id": 1182, + "nodePlanId": 40111, + "nodeId": 2220101, + "weight": 1 + }, + { + "id": 1183, + "nodePlanId": 40111, + "nodeId": 2220201, + "weight": 1 + }, + { + "id": 1184, + "nodePlanId": 40111, + "nodeId": 2220301, + "weight": 1 + }, + { + "id": 1185, + "nodePlanId": 40111, + "nodeId": 2220401, + "weight": 1 + }, + { + "id": 1186, + "nodePlanId": 40111, + "nodeId": 2220501, + "weight": 2 + }, + { + "id": 1187, + "nodePlanId": 40111, + "nodeId": 2220601, + "weight": 2 + }, + { + "id": 1188, + "nodePlanId": 40111, + "nodeId": 4210101, + "weight": 2 + }, + { + "id": 1189, + "nodePlanId": 40111, + "nodeId": 6210101, + "weight": 2 + }, + { + "id": 1190, + "nodePlanId": 40111, + "nodeId": 6210101, + "weight": 2 + }, + { + "id": 1191, + "nodePlanId": 40112, + "nodeId": 1230101, + "weight": 1 + }, + { + "id": 1192, + "nodePlanId": 40112, + "nodeId": 1230201, + "weight": 1 + }, + { + "id": 1193, + "nodePlanId": 40112, + "nodeId": 1230301, + "weight": 1 + }, + { + "id": 1194, + "nodePlanId": 40112, + "nodeId": 1230401, + "weight": 1 + }, + { + "id": 1195, + "nodePlanId": 40112, + "nodeId": 1230501, + "weight": 1 + }, + { + "id": 1196, + "nodePlanId": 40112, + "nodeId": 2230101, + "weight": 1.5 + }, + { + "id": 1197, + "nodePlanId": 40112, + "nodeId": 2230201, + "weight": 1.5 + }, + { + "id": 1198, + "nodePlanId": 40112, + "nodeId": 2230301, + "weight": 1 + }, + { + "id": 1199, + "nodePlanId": 40112, + "nodeId": 2230401, + "weight": 1 + }, + { + "id": 1200, + "nodePlanId": 40112, + "nodeId": 2230501, + "weight": 1 + }, + { + "id": 1201, + "nodePlanId": 40112, + "nodeId": 2230601, + "weight": 1 + }, + { + "id": 1202, + "nodePlanId": 40113, + "nodeId": 1230601, + "weight": 1 + }, + { + "id": 1203, + "nodePlanId": 40113, + "nodeId": 1230701, + "weight": 1 + }, + { + "id": 1204, + "nodePlanId": 40113, + "nodeId": 1230801, + "weight": 1 + }, + { + "id": 1205, + "nodePlanId": 40113, + "nodeId": 2230101, + "weight": 1 + }, + { + "id": 1206, + "nodePlanId": 40113, + "nodeId": 2230201, + "weight": 1 + }, + { + "id": 1207, + "nodePlanId": 40113, + "nodeId": 2230301, + "weight": 2 + }, + { + "id": 1208, + "nodePlanId": 40113, + "nodeId": 2230401, + "weight": 2 + }, + { + "id": 1209, + "nodePlanId": 40113, + "nodeId": 2230501, + "weight": 1 + }, + { + "id": 1210, + "nodePlanId": 40113, + "nodeId": 2230601, + "weight": 1 + }, + { + "id": 1211, + "nodePlanId": 40113, + "nodeId": 5210101, + "weight": 3 + }, + { + "id": 1212, + "nodePlanId": 40113, + "nodeId": 6210101, + "weight": 2 + }, + { + "id": 1213, + "nodePlanId": 40114, + "nodeId": 4210101, + "weight": 1 + }, + { + "id": 1214, + "nodePlanId": 40115, + "nodeId": 7210101, + "weight": 1 + }, + { + "id": 1215, + "nodePlanId": 40201, + "nodeId": 1210102, + "weight": 1 + }, + { + "id": 1216, + "nodePlanId": 40201, + "nodeId": 1210202, + "weight": 1 + }, + { + "id": 1217, + "nodePlanId": 40201, + "nodeId": 1210302, + "weight": 1 + }, + { + "id": 1218, + "nodePlanId": 40201, + "nodeId": 1210402, + "weight": 1 + }, + { + "id": 1219, + "nodePlanId": 40201, + "nodeId": 1210502, + "weight": 1 + }, + { + "id": 1220, + "nodePlanId": 40201, + "nodeId": 1210602, + "weight": 1 + }, + { + "id": 1221, + "nodePlanId": 40201, + "nodeId": 1210702, + "weight": 1 + }, + { + "id": 1222, + "nodePlanId": 40201, + "nodeId": 1210802, + "weight": 1 + }, + { + "id": 1223, + "nodePlanId": 40202, + "nodeId": 1210102, + "weight": 1 + }, + { + "id": 1224, + "nodePlanId": 40202, + "nodeId": 1210202, + "weight": 1 + }, + { + "id": 1225, + "nodePlanId": 40202, + "nodeId": 1210302, + "weight": 1 + }, + { + "id": 1226, + "nodePlanId": 40202, + "nodeId": 1210402, + "weight": 1 + }, + { + "id": 1227, + "nodePlanId": 40202, + "nodeId": 1210502, + "weight": 1 + }, + { + "id": 1228, + "nodePlanId": 40202, + "nodeId": 1210602, + "weight": 1 + }, + { + "id": 1229, + "nodePlanId": 40202, + "nodeId": 1210702, + "weight": 1 + }, + { + "id": 1230, + "nodePlanId": 40202, + "nodeId": 1210802, + "weight": 1 + }, + { + "id": 1231, + "nodePlanId": 40203, + "nodeId": 1210102, + "weight": 1 + }, + { + "id": 1232, + "nodePlanId": 40203, + "nodeId": 1210202, + "weight": 1 + }, + { + "id": 1233, + "nodePlanId": 40203, + "nodeId": 1210302, + "weight": 1 + }, + { + "id": 1234, + "nodePlanId": 40203, + "nodeId": 1210402, + "weight": 1 + }, + { + "id": 1235, + "nodePlanId": 40203, + "nodeId": 1210502, + "weight": 1 + }, + { + "id": 1236, + "nodePlanId": 40203, + "nodeId": 1210602, + "weight": 1 + }, + { + "id": 1237, + "nodePlanId": 40203, + "nodeId": 1210702, + "weight": 1 + }, + { + "id": 1238, + "nodePlanId": 40203, + "nodeId": 1210802, + "weight": 1 + }, + { + "id": 1239, + "nodePlanId": 40203, + "nodeId": 2210102, + "weight": 4 + }, + { + "id": 1240, + "nodePlanId": 40203, + "nodeId": 2210202, + "weight": 4 + }, + { + "id": 1241, + "nodePlanId": 40203, + "nodeId": 6210102, + "weight": 8 + }, + { + "id": 1242, + "nodePlanId": 40204, + "nodeId": 2210302, + "weight": 1 + }, + { + "id": 1243, + "nodePlanId": 40204, + "nodeId": 2210402, + "weight": 1 + }, + { + "id": 1244, + "nodePlanId": 40204, + "nodeId": 2210502, + "weight": 1 + }, + { + "id": 1245, + "nodePlanId": 40204, + "nodeId": 2210602, + "weight": 1 + }, + { + "id": 1246, + "nodePlanId": 40205, + "nodeId": 5210102, + "weight": 1 + }, + { + "id": 1247, + "nodePlanId": 40206, + "nodeId": 1220102, + "weight": 1 + }, + { + "id": 1248, + "nodePlanId": 40206, + "nodeId": 1220202, + "weight": 1 + }, + { + "id": 1249, + "nodePlanId": 40206, + "nodeId": 1220302, + "weight": 1 + }, + { + "id": 1250, + "nodePlanId": 40206, + "nodeId": 1220402, + "weight": 1 + }, + { + "id": 1251, + "nodePlanId": 40206, + "nodeId": 1220502, + "weight": 1 + }, + { + "id": 1252, + "nodePlanId": 40206, + "nodeId": 1220602, + "weight": 1 + }, + { + "id": 1253, + "nodePlanId": 40206, + "nodeId": 1220702, + "weight": 1 + }, + { + "id": 1254, + "nodePlanId": 40206, + "nodeId": 1220802, + "weight": 1 + }, + { + "id": 1255, + "nodePlanId": 40206, + "nodeId": 2220102, + "weight": 2 + }, + { + "id": 1256, + "nodePlanId": 40206, + "nodeId": 2220202, + "weight": 2 + }, + { + "id": 1257, + "nodePlanId": 40206, + "nodeId": 2220302, + "weight": 1 + }, + { + "id": 1258, + "nodePlanId": 40206, + "nodeId": 2220402, + "weight": 1 + }, + { + "id": 1259, + "nodePlanId": 40206, + "nodeId": 2220502, + "weight": 1 + }, + { + "id": 1260, + "nodePlanId": 40206, + "nodeId": 2220602, + "weight": 1 + }, + { + "id": 1261, + "nodePlanId": 40206, + "nodeId": 4210102, + "weight": 3 + }, + { + "id": 1262, + "nodePlanId": 40206, + "nodeId": 6210102, + "weight": 3 + }, + { + "id": 1263, + "nodePlanId": 40207, + "nodeId": 1220102, + "weight": 1 + }, + { + "id": 1264, + "nodePlanId": 40207, + "nodeId": 1220202, + "weight": 1 + }, + { + "id": 1265, + "nodePlanId": 40207, + "nodeId": 1220302, + "weight": 1 + }, + { + "id": 1266, + "nodePlanId": 40207, + "nodeId": 1220402, + "weight": 1 + }, + { + "id": 1267, + "nodePlanId": 40207, + "nodeId": 1220502, + "weight": 1 + }, + { + "id": 1268, + "nodePlanId": 40207, + "nodeId": 1220602, + "weight": 1 + }, + { + "id": 1269, + "nodePlanId": 40207, + "nodeId": 1220702, + "weight": 1 + }, + { + "id": 1270, + "nodePlanId": 40207, + "nodeId": 1220802, + "weight": 1 + }, + { + "id": 1271, + "nodePlanId": 40207, + "nodeId": 2220102, + "weight": 1 + }, + { + "id": 1272, + "nodePlanId": 40207, + "nodeId": 2220202, + "weight": 1 + }, + { + "id": 1273, + "nodePlanId": 40207, + "nodeId": 2220302, + "weight": 2 + }, + { + "id": 1274, + "nodePlanId": 40207, + "nodeId": 2220402, + "weight": 2 + }, + { + "id": 1275, + "nodePlanId": 40207, + "nodeId": 2220502, + "weight": 1 + }, + { + "id": 1276, + "nodePlanId": 40207, + "nodeId": 2220602, + "weight": 1 + }, + { + "id": 1277, + "nodePlanId": 40207, + "nodeId": 5210102, + "weight": 3 + }, + { + "id": 1278, + "nodePlanId": 40208, + "nodeId": 1220102, + "weight": 1 + }, + { + "id": 1279, + "nodePlanId": 40208, + "nodeId": 1220202, + "weight": 1 + }, + { + "id": 1280, + "nodePlanId": 40208, + "nodeId": 1220302, + "weight": 1 + }, + { + "id": 1281, + "nodePlanId": 40208, + "nodeId": 1220402, + "weight": 1 + }, + { + "id": 1282, + "nodePlanId": 40208, + "nodeId": 1220502, + "weight": 1 + }, + { + "id": 1283, + "nodePlanId": 40208, + "nodeId": 1220602, + "weight": 1 + }, + { + "id": 1284, + "nodePlanId": 40208, + "nodeId": 1220702, + "weight": 1 + }, + { + "id": 1285, + "nodePlanId": 40208, + "nodeId": 1220802, + "weight": 1 + }, + { + "id": 1286, + "nodePlanId": 40208, + "nodeId": 2220102, + "weight": 1 + }, + { + "id": 1287, + "nodePlanId": 40208, + "nodeId": 2220202, + "weight": 1 + }, + { + "id": 1288, + "nodePlanId": 40208, + "nodeId": 2220302, + "weight": 1 + }, + { + "id": 1289, + "nodePlanId": 40208, + "nodeId": 2220402, + "weight": 1 + }, + { + "id": 1290, + "nodePlanId": 40208, + "nodeId": 2220502, + "weight": 2 + }, + { + "id": 1291, + "nodePlanId": 40208, + "nodeId": 2220602, + "weight": 2 + }, + { + "id": 1292, + "nodePlanId": 40208, + "nodeId": 5210102, + "weight": 3 + }, + { + "id": 1293, + "nodePlanId": 40208, + "nodeId": 6210102, + "weight": 3 + }, + { + "id": 1294, + "nodePlanId": 40209, + "nodeId": 3210102, + "weight": 1 + }, + { + "id": 1295, + "nodePlanId": 40210, + "nodeId": 1220102, + "weight": 1 + }, + { + "id": 1296, + "nodePlanId": 40210, + "nodeId": 1220202, + "weight": 1 + }, + { + "id": 1297, + "nodePlanId": 40210, + "nodeId": 1220302, + "weight": 1 + }, + { + "id": 1298, + "nodePlanId": 40210, + "nodeId": 1220402, + "weight": 1 + }, + { + "id": 1299, + "nodePlanId": 40210, + "nodeId": 1220502, + "weight": 1 + }, + { + "id": 1300, + "nodePlanId": 40210, + "nodeId": 1220602, + "weight": 1 + }, + { + "id": 1301, + "nodePlanId": 40210, + "nodeId": 1220702, + "weight": 1 + }, + { + "id": 1302, + "nodePlanId": 40210, + "nodeId": 1220802, + "weight": 1 + }, + { + "id": 1303, + "nodePlanId": 40210, + "nodeId": 2220102, + "weight": 1 + }, + { + "id": 1304, + "nodePlanId": 40210, + "nodeId": 2220202, + "weight": 1 + }, + { + "id": 1305, + "nodePlanId": 40210, + "nodeId": 2220302, + "weight": 1 + }, + { + "id": 1306, + "nodePlanId": 40210, + "nodeId": 2220402, + "weight": 1 + }, + { + "id": 1307, + "nodePlanId": 40210, + "nodeId": 2220502, + "weight": 2 + }, + { + "id": 1308, + "nodePlanId": 40210, + "nodeId": 2220602, + "weight": 2 + }, + { + "id": 1309, + "nodePlanId": 40210, + "nodeId": 5210102, + "weight": 3 + }, + { + "id": 1310, + "nodePlanId": 40210, + "nodeId": 6210102, + "weight": 3 + }, + { + "id": 1311, + "nodePlanId": 40211, + "nodeId": 1220102, + "weight": 1 + }, + { + "id": 1312, + "nodePlanId": 40211, + "nodeId": 1220202, + "weight": 1 + }, + { + "id": 1313, + "nodePlanId": 40211, + "nodeId": 1220302, + "weight": 1 + }, + { + "id": 1314, + "nodePlanId": 40211, + "nodeId": 1220402, + "weight": 1 + }, + { + "id": 1315, + "nodePlanId": 40211, + "nodeId": 1220502, + "weight": 1 + }, + { + "id": 1316, + "nodePlanId": 40211, + "nodeId": 1220602, + "weight": 1 + }, + { + "id": 1317, + "nodePlanId": 40211, + "nodeId": 1220702, + "weight": 1 + }, + { + "id": 1318, + "nodePlanId": 40211, + "nodeId": 1220802, + "weight": 1 + }, + { + "id": 1319, + "nodePlanId": 40211, + "nodeId": 2220102, + "weight": 1 + }, + { + "id": 1320, + "nodePlanId": 40211, + "nodeId": 2220202, + "weight": 1 + }, + { + "id": 1321, + "nodePlanId": 40211, + "nodeId": 2220302, + "weight": 1 + }, + { + "id": 1322, + "nodePlanId": 40211, + "nodeId": 2220402, + "weight": 1 + }, + { + "id": 1323, + "nodePlanId": 40211, + "nodeId": 2220502, + "weight": 2 + }, + { + "id": 1324, + "nodePlanId": 40211, + "nodeId": 2220602, + "weight": 2 + }, + { + "id": 1325, + "nodePlanId": 40211, + "nodeId": 4210102, + "weight": 2 + }, + { + "id": 1326, + "nodePlanId": 40211, + "nodeId": 6210102, + "weight": 2 + }, + { + "id": 1327, + "nodePlanId": 40211, + "nodeId": 6210102, + "weight": 2 + }, + { + "id": 1328, + "nodePlanId": 40212, + "nodeId": 1230102, + "weight": 1 + }, + { + "id": 1329, + "nodePlanId": 40212, + "nodeId": 1230202, + "weight": 1 + }, + { + "id": 1330, + "nodePlanId": 40212, + "nodeId": 1230302, + "weight": 1 + }, + { + "id": 1331, + "nodePlanId": 40212, + "nodeId": 1230402, + "weight": 1 + }, + { + "id": 1332, + "nodePlanId": 40212, + "nodeId": 1230502, + "weight": 1 + }, + { + "id": 1333, + "nodePlanId": 40212, + "nodeId": 2230102, + "weight": 1.5 + }, + { + "id": 1334, + "nodePlanId": 40212, + "nodeId": 2230202, + "weight": 1.5 + }, + { + "id": 1335, + "nodePlanId": 40212, + "nodeId": 2230302, + "weight": 1 + }, + { + "id": 1336, + "nodePlanId": 40212, + "nodeId": 2230402, + "weight": 1 + }, + { + "id": 1337, + "nodePlanId": 40212, + "nodeId": 2230502, + "weight": 1 + }, + { + "id": 1338, + "nodePlanId": 40212, + "nodeId": 2230602, + "weight": 1 + }, + { + "id": 1339, + "nodePlanId": 40213, + "nodeId": 1230602, + "weight": 1 + }, + { + "id": 1340, + "nodePlanId": 40213, + "nodeId": 1230702, + "weight": 1 + }, + { + "id": 1341, + "nodePlanId": 40213, + "nodeId": 1230802, + "weight": 1 + }, + { + "id": 1342, + "nodePlanId": 40213, + "nodeId": 2230102, + "weight": 1 + }, + { + "id": 1343, + "nodePlanId": 40213, + "nodeId": 2230202, + "weight": 1 + }, + { + "id": 1344, + "nodePlanId": 40213, + "nodeId": 2230302, + "weight": 2 + }, + { + "id": 1345, + "nodePlanId": 40213, + "nodeId": 2230402, + "weight": 2 + }, + { + "id": 1346, + "nodePlanId": 40213, + "nodeId": 2230502, + "weight": 1 + }, + { + "id": 1347, + "nodePlanId": 40213, + "nodeId": 2230602, + "weight": 1 + }, + { + "id": 1348, + "nodePlanId": 40213, + "nodeId": 5210102, + "weight": 3 + }, + { + "id": 1349, + "nodePlanId": 40213, + "nodeId": 6210102, + "weight": 2 + }, + { + "id": 1350, + "nodePlanId": 40214, + "nodeId": 4210102, + "weight": 1 + }, + { + "id": 1351, + "nodePlanId": 40215, + "nodeId": 7210102, + "weight": 1 + }, + { + "id": 1352, + "nodePlanId": 40301, + "nodeId": 1210103, + "weight": 1 + }, + { + "id": 1353, + "nodePlanId": 40301, + "nodeId": 1210203, + "weight": 1 + }, + { + "id": 1354, + "nodePlanId": 40301, + "nodeId": 1210303, + "weight": 1 + }, + { + "id": 1355, + "nodePlanId": 40301, + "nodeId": 1210403, + "weight": 1 + }, + { + "id": 1356, + "nodePlanId": 40301, + "nodeId": 1210503, + "weight": 1 + }, + { + "id": 1357, + "nodePlanId": 40301, + "nodeId": 1210603, + "weight": 1 + }, + { + "id": 1358, + "nodePlanId": 40301, + "nodeId": 1210703, + "weight": 1 + }, + { + "id": 1359, + "nodePlanId": 40301, + "nodeId": 1210803, + "weight": 1 + }, + { + "id": 1360, + "nodePlanId": 40302, + "nodeId": 1210103, + "weight": 1 + }, + { + "id": 1361, + "nodePlanId": 40302, + "nodeId": 1210203, + "weight": 1 + }, + { + "id": 1362, + "nodePlanId": 40302, + "nodeId": 1210303, + "weight": 1 + }, + { + "id": 1363, + "nodePlanId": 40302, + "nodeId": 1210403, + "weight": 1 + }, + { + "id": 1364, + "nodePlanId": 40302, + "nodeId": 1210503, + "weight": 1 + }, + { + "id": 1365, + "nodePlanId": 40302, + "nodeId": 1210603, + "weight": 1 + }, + { + "id": 1366, + "nodePlanId": 40302, + "nodeId": 1210703, + "weight": 1 + }, + { + "id": 1367, + "nodePlanId": 40302, + "nodeId": 1210803, + "weight": 1 + }, + { + "id": 1368, + "nodePlanId": 40303, + "nodeId": 1210103, + "weight": 1 + }, + { + "id": 1369, + "nodePlanId": 40303, + "nodeId": 1210203, + "weight": 1 + }, + { + "id": 1370, + "nodePlanId": 40303, + "nodeId": 1210303, + "weight": 1 + }, + { + "id": 1371, + "nodePlanId": 40303, + "nodeId": 1210403, + "weight": 1 + }, + { + "id": 1372, + "nodePlanId": 40303, + "nodeId": 1210503, + "weight": 1 + }, + { + "id": 1373, + "nodePlanId": 40303, + "nodeId": 1210603, + "weight": 1 + }, + { + "id": 1374, + "nodePlanId": 40303, + "nodeId": 1210703, + "weight": 1 + }, + { + "id": 1375, + "nodePlanId": 40303, + "nodeId": 1210803, + "weight": 1 + }, + { + "id": 1376, + "nodePlanId": 40303, + "nodeId": 2210103, + "weight": 4 + }, + { + "id": 1377, + "nodePlanId": 40303, + "nodeId": 2210203, + "weight": 4 + }, + { + "id": 1378, + "nodePlanId": 40303, + "nodeId": 6210103, + "weight": 8 + }, + { + "id": 1379, + "nodePlanId": 40304, + "nodeId": 2210303, + "weight": 1 + }, + { + "id": 1380, + "nodePlanId": 40304, + "nodeId": 2210403, + "weight": 1 + }, + { + "id": 1381, + "nodePlanId": 40304, + "nodeId": 2210503, + "weight": 1 + }, + { + "id": 1382, + "nodePlanId": 40304, + "nodeId": 2210603, + "weight": 1 + }, + { + "id": 1383, + "nodePlanId": 40305, + "nodeId": 5210103, + "weight": 1 + }, + { + "id": 1384, + "nodePlanId": 40306, + "nodeId": 1220103, + "weight": 1 + }, + { + "id": 1385, + "nodePlanId": 40306, + "nodeId": 1220203, + "weight": 1 + }, + { + "id": 1386, + "nodePlanId": 40306, + "nodeId": 1220303, + "weight": 1 + }, + { + "id": 1387, + "nodePlanId": 40306, + "nodeId": 1220403, + "weight": 1 + }, + { + "id": 1388, + "nodePlanId": 40306, + "nodeId": 1220503, + "weight": 1 + }, + { + "id": 1389, + "nodePlanId": 40306, + "nodeId": 1220603, + "weight": 1 + }, + { + "id": 1390, + "nodePlanId": 40306, + "nodeId": 1220703, + "weight": 1 + }, + { + "id": 1391, + "nodePlanId": 40306, + "nodeId": 1220803, + "weight": 1 + }, + { + "id": 1392, + "nodePlanId": 40306, + "nodeId": 2220103, + "weight": 2 + }, + { + "id": 1393, + "nodePlanId": 40306, + "nodeId": 2220203, + "weight": 2 + }, + { + "id": 1394, + "nodePlanId": 40306, + "nodeId": 2220303, + "weight": 1 + }, + { + "id": 1395, + "nodePlanId": 40306, + "nodeId": 2220403, + "weight": 1 + }, + { + "id": 1396, + "nodePlanId": 40306, + "nodeId": 2220503, + "weight": 1 + }, + { + "id": 1397, + "nodePlanId": 40306, + "nodeId": 2220603, + "weight": 1 + }, + { + "id": 1398, + "nodePlanId": 40306, + "nodeId": 4210103, + "weight": 3 + }, + { + "id": 1399, + "nodePlanId": 40306, + "nodeId": 6210103, + "weight": 3 + }, + { + "id": 1400, + "nodePlanId": 40307, + "nodeId": 1220103, + "weight": 1 + }, + { + "id": 1401, + "nodePlanId": 40307, + "nodeId": 1220203, + "weight": 1 + }, + { + "id": 1402, + "nodePlanId": 40307, + "nodeId": 1220303, + "weight": 1 + }, + { + "id": 1403, + "nodePlanId": 40307, + "nodeId": 1220403, + "weight": 1 + }, + { + "id": 1404, + "nodePlanId": 40307, + "nodeId": 1220503, + "weight": 1 + }, + { + "id": 1405, + "nodePlanId": 40307, + "nodeId": 1220603, + "weight": 1 + }, + { + "id": 1406, + "nodePlanId": 40307, + "nodeId": 1220703, + "weight": 1 + }, + { + "id": 1407, + "nodePlanId": 40307, + "nodeId": 1220803, + "weight": 1 + }, + { + "id": 1408, + "nodePlanId": 40307, + "nodeId": 2220103, + "weight": 1 + }, + { + "id": 1409, + "nodePlanId": 40307, + "nodeId": 2220203, + "weight": 1 + }, + { + "id": 1410, + "nodePlanId": 40307, + "nodeId": 2220303, + "weight": 2 + }, + { + "id": 1411, + "nodePlanId": 40307, + "nodeId": 2220403, + "weight": 2 + }, + { + "id": 1412, + "nodePlanId": 40307, + "nodeId": 2220503, + "weight": 1 + }, + { + "id": 1413, + "nodePlanId": 40307, + "nodeId": 2220603, + "weight": 1 + }, + { + "id": 1414, + "nodePlanId": 40307, + "nodeId": 5210103, + "weight": 3 + }, + { + "id": 1415, + "nodePlanId": 40308, + "nodeId": 1220103, + "weight": 1 + }, + { + "id": 1416, + "nodePlanId": 40308, + "nodeId": 1220203, + "weight": 1 + }, + { + "id": 1417, + "nodePlanId": 40308, + "nodeId": 1220303, + "weight": 1 + }, + { + "id": 1418, + "nodePlanId": 40308, + "nodeId": 1220403, + "weight": 1 + }, + { + "id": 1419, + "nodePlanId": 40308, + "nodeId": 1220503, + "weight": 1 + }, + { + "id": 1420, + "nodePlanId": 40308, + "nodeId": 1220603, + "weight": 1 + }, + { + "id": 1421, + "nodePlanId": 40308, + "nodeId": 1220703, + "weight": 1 + }, + { + "id": 1422, + "nodePlanId": 40308, + "nodeId": 1220803, + "weight": 1 + }, + { + "id": 1423, + "nodePlanId": 40308, + "nodeId": 2220103, + "weight": 1 + }, + { + "id": 1424, + "nodePlanId": 40308, + "nodeId": 2220203, + "weight": 1 + }, + { + "id": 1425, + "nodePlanId": 40308, + "nodeId": 2220303, + "weight": 1 + }, + { + "id": 1426, + "nodePlanId": 40308, + "nodeId": 2220403, + "weight": 1 + }, + { + "id": 1427, + "nodePlanId": 40308, + "nodeId": 2220503, + "weight": 2 + }, + { + "id": 1428, + "nodePlanId": 40308, + "nodeId": 2220603, + "weight": 2 + }, + { + "id": 1429, + "nodePlanId": 40308, + "nodeId": 5210103, + "weight": 3 + }, + { + "id": 1430, + "nodePlanId": 40308, + "nodeId": 6210103, + "weight": 3 + }, + { + "id": 1431, + "nodePlanId": 40309, + "nodeId": 3210103, + "weight": 1 + }, + { + "id": 1432, + "nodePlanId": 40310, + "nodeId": 1220103, + "weight": 1 + }, + { + "id": 1433, + "nodePlanId": 40310, + "nodeId": 1220203, + "weight": 1 + }, + { + "id": 1434, + "nodePlanId": 40310, + "nodeId": 1220303, + "weight": 1 + }, + { + "id": 1435, + "nodePlanId": 40310, + "nodeId": 1220403, + "weight": 1 + }, + { + "id": 1436, + "nodePlanId": 40310, + "nodeId": 1220503, + "weight": 1 + }, + { + "id": 1437, + "nodePlanId": 40310, + "nodeId": 1220603, + "weight": 1 + }, + { + "id": 1438, + "nodePlanId": 40310, + "nodeId": 1220703, + "weight": 1 + }, + { + "id": 1439, + "nodePlanId": 40310, + "nodeId": 1220803, + "weight": 1 + }, + { + "id": 1440, + "nodePlanId": 40310, + "nodeId": 2220103, + "weight": 1 + }, + { + "id": 1441, + "nodePlanId": 40310, + "nodeId": 2220203, + "weight": 1 + }, + { + "id": 1442, + "nodePlanId": 40310, + "nodeId": 2220303, + "weight": 1 + }, + { + "id": 1443, + "nodePlanId": 40310, + "nodeId": 2220403, + "weight": 1 + }, + { + "id": 1444, + "nodePlanId": 40310, + "nodeId": 2220503, + "weight": 2 + }, + { + "id": 1445, + "nodePlanId": 40310, + "nodeId": 2220603, + "weight": 2 + }, + { + "id": 1446, + "nodePlanId": 40310, + "nodeId": 5210103, + "weight": 3 + }, + { + "id": 1447, + "nodePlanId": 40310, + "nodeId": 6210103, + "weight": 3 + }, + { + "id": 1448, + "nodePlanId": 40311, + "nodeId": 1220103, + "weight": 1 + }, + { + "id": 1449, + "nodePlanId": 40311, + "nodeId": 1220203, + "weight": 1 + }, + { + "id": 1450, + "nodePlanId": 40311, + "nodeId": 1220303, + "weight": 1 + }, + { + "id": 1451, + "nodePlanId": 40311, + "nodeId": 1220403, + "weight": 1 + }, + { + "id": 1452, + "nodePlanId": 40311, + "nodeId": 1220503, + "weight": 1 + }, + { + "id": 1453, + "nodePlanId": 40311, + "nodeId": 1220603, + "weight": 1 + }, + { + "id": 1454, + "nodePlanId": 40311, + "nodeId": 1220703, + "weight": 1 + }, + { + "id": 1455, + "nodePlanId": 40311, + "nodeId": 1220803, + "weight": 1 + }, + { + "id": 1456, + "nodePlanId": 40311, + "nodeId": 2220103, + "weight": 1 + }, + { + "id": 1457, + "nodePlanId": 40311, + "nodeId": 2220203, + "weight": 1 + }, + { + "id": 1458, + "nodePlanId": 40311, + "nodeId": 2220303, + "weight": 1 + }, + { + "id": 1459, + "nodePlanId": 40311, + "nodeId": 2220403, + "weight": 1 + }, + { + "id": 1460, + "nodePlanId": 40311, + "nodeId": 2220503, + "weight": 2 + }, + { + "id": 1461, + "nodePlanId": 40311, + "nodeId": 2220603, + "weight": 2 + }, + { + "id": 1462, + "nodePlanId": 40311, + "nodeId": 4210103, + "weight": 2 + }, + { + "id": 1463, + "nodePlanId": 40311, + "nodeId": 6210103, + "weight": 2 + }, + { + "id": 1464, + "nodePlanId": 40311, + "nodeId": 6210103, + "weight": 2 + }, + { + "id": 1465, + "nodePlanId": 40312, + "nodeId": 1230103, + "weight": 1 + }, + { + "id": 1466, + "nodePlanId": 40312, + "nodeId": 1230203, + "weight": 1 + }, + { + "id": 1467, + "nodePlanId": 40312, + "nodeId": 1230303, + "weight": 1 + }, + { + "id": 1468, + "nodePlanId": 40312, + "nodeId": 1230403, + "weight": 1 + }, + { + "id": 1469, + "nodePlanId": 40312, + "nodeId": 1230503, + "weight": 1 + }, + { + "id": 1470, + "nodePlanId": 40312, + "nodeId": 2230103, + "weight": 1.5 + }, + { + "id": 1471, + "nodePlanId": 40312, + "nodeId": 2230203, + "weight": 1.5 + }, + { + "id": 1472, + "nodePlanId": 40312, + "nodeId": 2230303, + "weight": 1 + }, + { + "id": 1473, + "nodePlanId": 40312, + "nodeId": 2230403, + "weight": 1 + }, + { + "id": 1474, + "nodePlanId": 40312, + "nodeId": 2230503, + "weight": 1 + }, + { + "id": 1475, + "nodePlanId": 40312, + "nodeId": 2230603, + "weight": 1 + }, + { + "id": 1476, + "nodePlanId": 40313, + "nodeId": 1230603, + "weight": 1 + }, + { + "id": 1477, + "nodePlanId": 40313, + "nodeId": 1230703, + "weight": 1 + }, + { + "id": 1478, + "nodePlanId": 40313, + "nodeId": 1230803, + "weight": 1 + }, + { + "id": 1479, + "nodePlanId": 40313, + "nodeId": 2230103, + "weight": 1 + }, + { + "id": 1480, + "nodePlanId": 40313, + "nodeId": 2230203, + "weight": 1 + }, + { + "id": 1481, + "nodePlanId": 40313, + "nodeId": 2230303, + "weight": 2 + }, + { + "id": 1482, + "nodePlanId": 40313, + "nodeId": 2230403, + "weight": 2 + }, + { + "id": 1483, + "nodePlanId": 40313, + "nodeId": 2230503, + "weight": 1 + }, + { + "id": 1484, + "nodePlanId": 40313, + "nodeId": 2230603, + "weight": 1 + }, + { + "id": 1485, + "nodePlanId": 40313, + "nodeId": 5210103, + "weight": 3 + }, + { + "id": 1486, + "nodePlanId": 40313, + "nodeId": 6210103, + "weight": 2 + }, + { + "id": 1487, + "nodePlanId": 40314, + "nodeId": 4210103, + "weight": 1 + }, + { + "id": 1488, + "nodePlanId": 40315, + "nodeId": 7210103, + "weight": 1 + }, + { + "id": 1489, + "nodePlanId": 40401, + "nodeId": 1210104, + "weight": 1 + }, + { + "id": 1490, + "nodePlanId": 40401, + "nodeId": 1210204, + "weight": 1 + }, + { + "id": 1491, + "nodePlanId": 40401, + "nodeId": 1210304, + "weight": 1 + }, + { + "id": 1492, + "nodePlanId": 40401, + "nodeId": 1210404, + "weight": 1 + }, + { + "id": 1493, + "nodePlanId": 40401, + "nodeId": 1210504, + "weight": 1 + }, + { + "id": 1494, + "nodePlanId": 40401, + "nodeId": 1210604, + "weight": 1 + }, + { + "id": 1495, + "nodePlanId": 40401, + "nodeId": 1210704, + "weight": 1 + }, + { + "id": 1496, + "nodePlanId": 40401, + "nodeId": 1210804, + "weight": 1 + }, + { + "id": 1497, + "nodePlanId": 40402, + "nodeId": 1210104, + "weight": 1 + }, + { + "id": 1498, + "nodePlanId": 40402, + "nodeId": 1210204, + "weight": 1 + }, + { + "id": 1499, + "nodePlanId": 40402, + "nodeId": 1210304, + "weight": 1 + }, + { + "id": 1500, + "nodePlanId": 40402, + "nodeId": 1210404, + "weight": 1 + }, + { + "id": 1501, + "nodePlanId": 40402, + "nodeId": 1210504, + "weight": 1 + }, + { + "id": 1502, + "nodePlanId": 40402, + "nodeId": 1210604, + "weight": 1 + }, + { + "id": 1503, + "nodePlanId": 40402, + "nodeId": 1210704, + "weight": 1 + }, + { + "id": 1504, + "nodePlanId": 40402, + "nodeId": 1210804, + "weight": 1 + }, + { + "id": 1505, + "nodePlanId": 40403, + "nodeId": 1210104, + "weight": 1 + }, + { + "id": 1506, + "nodePlanId": 40403, + "nodeId": 1210204, + "weight": 1 + }, + { + "id": 1507, + "nodePlanId": 40403, + "nodeId": 1210304, + "weight": 1 + }, + { + "id": 1508, + "nodePlanId": 40403, + "nodeId": 1210404, + "weight": 1 + }, + { + "id": 1509, + "nodePlanId": 40403, + "nodeId": 1210504, + "weight": 1 + }, + { + "id": 1510, + "nodePlanId": 40403, + "nodeId": 1210604, + "weight": 1 + }, + { + "id": 1511, + "nodePlanId": 40403, + "nodeId": 1210704, + "weight": 1 + }, + { + "id": 1512, + "nodePlanId": 40403, + "nodeId": 1210804, + "weight": 1 + }, + { + "id": 1513, + "nodePlanId": 40403, + "nodeId": 2210104, + "weight": 4 + }, + { + "id": 1514, + "nodePlanId": 40403, + "nodeId": 2210204, + "weight": 4 + }, + { + "id": 1515, + "nodePlanId": 40403, + "nodeId": 6210104, + "weight": 8 + }, + { + "id": 1516, + "nodePlanId": 40404, + "nodeId": 2210304, + "weight": 1 + }, + { + "id": 1517, + "nodePlanId": 40404, + "nodeId": 2210404, + "weight": 1 + }, + { + "id": 1518, + "nodePlanId": 40404, + "nodeId": 2210504, + "weight": 1 + }, + { + "id": 1519, + "nodePlanId": 40404, + "nodeId": 2210604, + "weight": 1 + }, + { + "id": 1520, + "nodePlanId": 40405, + "nodeId": 5210104, + "weight": 1 + }, + { + "id": 1521, + "nodePlanId": 40406, + "nodeId": 1220104, + "weight": 1 + }, + { + "id": 1522, + "nodePlanId": 40406, + "nodeId": 1220204, + "weight": 1 + }, + { + "id": 1523, + "nodePlanId": 40406, + "nodeId": 1220304, + "weight": 1 + }, + { + "id": 1524, + "nodePlanId": 40406, + "nodeId": 1220404, + "weight": 1 + }, + { + "id": 1525, + "nodePlanId": 40406, + "nodeId": 1220504, + "weight": 1 + }, + { + "id": 1526, + "nodePlanId": 40406, + "nodeId": 1220604, + "weight": 1 + }, + { + "id": 1527, + "nodePlanId": 40406, + "nodeId": 1220704, + "weight": 1 + }, + { + "id": 1528, + "nodePlanId": 40406, + "nodeId": 1220804, + "weight": 1 + }, + { + "id": 1529, + "nodePlanId": 40406, + "nodeId": 2220104, + "weight": 2 + }, + { + "id": 1530, + "nodePlanId": 40406, + "nodeId": 2220204, + "weight": 2 + }, + { + "id": 1531, + "nodePlanId": 40406, + "nodeId": 2220304, + "weight": 1 + }, + { + "id": 1532, + "nodePlanId": 40406, + "nodeId": 2220404, + "weight": 1 + }, + { + "id": 1533, + "nodePlanId": 40406, + "nodeId": 2220504, + "weight": 1 + }, + { + "id": 1534, + "nodePlanId": 40406, + "nodeId": 2220604, + "weight": 1 + }, + { + "id": 1535, + "nodePlanId": 40406, + "nodeId": 4210104, + "weight": 3 + }, + { + "id": 1536, + "nodePlanId": 40406, + "nodeId": 6210104, + "weight": 3 + }, + { + "id": 1537, + "nodePlanId": 40407, + "nodeId": 1220104, + "weight": 1 + }, + { + "id": 1538, + "nodePlanId": 40407, + "nodeId": 1220204, + "weight": 1 + }, + { + "id": 1539, + "nodePlanId": 40407, + "nodeId": 1220304, + "weight": 1 + }, + { + "id": 1540, + "nodePlanId": 40407, + "nodeId": 1220404, + "weight": 1 + }, + { + "id": 1541, + "nodePlanId": 40407, + "nodeId": 1220504, + "weight": 1 + }, + { + "id": 1542, + "nodePlanId": 40407, + "nodeId": 1220604, + "weight": 1 + }, + { + "id": 1543, + "nodePlanId": 40407, + "nodeId": 1220704, + "weight": 1 + }, + { + "id": 1544, + "nodePlanId": 40407, + "nodeId": 1220804, + "weight": 1 + }, + { + "id": 1545, + "nodePlanId": 40407, + "nodeId": 2220104, + "weight": 1 + }, + { + "id": 1546, + "nodePlanId": 40407, + "nodeId": 2220204, + "weight": 1 + }, + { + "id": 1547, + "nodePlanId": 40407, + "nodeId": 2220304, + "weight": 2 + }, + { + "id": 1548, + "nodePlanId": 40407, + "nodeId": 2220404, + "weight": 2 + }, + { + "id": 1549, + "nodePlanId": 40407, + "nodeId": 2220504, + "weight": 1 + }, + { + "id": 1550, + "nodePlanId": 40407, + "nodeId": 2220604, + "weight": 1 + }, + { + "id": 1551, + "nodePlanId": 40407, + "nodeId": 5210104, + "weight": 3 + }, + { + "id": 1552, + "nodePlanId": 40408, + "nodeId": 1220104, + "weight": 1 + }, + { + "id": 1553, + "nodePlanId": 40408, + "nodeId": 1220204, + "weight": 1 + }, + { + "id": 1554, + "nodePlanId": 40408, + "nodeId": 1220304, + "weight": 1 + }, + { + "id": 1555, + "nodePlanId": 40408, + "nodeId": 1220404, + "weight": 1 + }, + { + "id": 1556, + "nodePlanId": 40408, + "nodeId": 1220504, + "weight": 1 + }, + { + "id": 1557, + "nodePlanId": 40408, + "nodeId": 1220604, + "weight": 1 + }, + { + "id": 1558, + "nodePlanId": 40408, + "nodeId": 1220704, + "weight": 1 + }, + { + "id": 1559, + "nodePlanId": 40408, + "nodeId": 1220804, + "weight": 1 + }, + { + "id": 1560, + "nodePlanId": 40408, + "nodeId": 2220104, + "weight": 1 + }, + { + "id": 1561, + "nodePlanId": 40408, + "nodeId": 2220204, + "weight": 1 + }, + { + "id": 1562, + "nodePlanId": 40408, + "nodeId": 2220304, + "weight": 1 + }, + { + "id": 1563, + "nodePlanId": 40408, + "nodeId": 2220404, + "weight": 1 + }, + { + "id": 1564, + "nodePlanId": 40408, + "nodeId": 2220504, + "weight": 2 + }, + { + "id": 1565, + "nodePlanId": 40408, + "nodeId": 2220604, + "weight": 2 + }, + { + "id": 1566, + "nodePlanId": 40408, + "nodeId": 5210104, + "weight": 3 + }, + { + "id": 1567, + "nodePlanId": 40408, + "nodeId": 6210104, + "weight": 3 + }, + { + "id": 1568, + "nodePlanId": 40409, + "nodeId": 3210104, + "weight": 1 + }, + { + "id": 1569, + "nodePlanId": 40410, + "nodeId": 1220104, + "weight": 1 + }, + { + "id": 1570, + "nodePlanId": 40410, + "nodeId": 1220204, + "weight": 1 + }, + { + "id": 1571, + "nodePlanId": 40410, + "nodeId": 1220304, + "weight": 1 + }, + { + "id": 1572, + "nodePlanId": 40410, + "nodeId": 1220404, + "weight": 1 + }, + { + "id": 1573, + "nodePlanId": 40410, + "nodeId": 1220504, + "weight": 1 + }, + { + "id": 1574, + "nodePlanId": 40410, + "nodeId": 1220604, + "weight": 1 + }, + { + "id": 1575, + "nodePlanId": 40410, + "nodeId": 1220704, + "weight": 1 + }, + { + "id": 1576, + "nodePlanId": 40410, + "nodeId": 1220804, + "weight": 1 + }, + { + "id": 1577, + "nodePlanId": 40410, + "nodeId": 2220104, + "weight": 1 + }, + { + "id": 1578, + "nodePlanId": 40410, + "nodeId": 2220204, + "weight": 1 + }, + { + "id": 1579, + "nodePlanId": 40410, + "nodeId": 2220304, + "weight": 1 + }, + { + "id": 1580, + "nodePlanId": 40410, + "nodeId": 2220404, + "weight": 1 + }, + { + "id": 1581, + "nodePlanId": 40410, + "nodeId": 2220504, + "weight": 2 + }, + { + "id": 1582, + "nodePlanId": 40410, + "nodeId": 2220604, + "weight": 2 + }, + { + "id": 1583, + "nodePlanId": 40410, + "nodeId": 5210104, + "weight": 3 + }, + { + "id": 1584, + "nodePlanId": 40410, + "nodeId": 6210104, + "weight": 3 + }, + { + "id": 1585, + "nodePlanId": 40411, + "nodeId": 1220104, + "weight": 1 + }, + { + "id": 1586, + "nodePlanId": 40411, + "nodeId": 1220204, + "weight": 1 + }, + { + "id": 1587, + "nodePlanId": 40411, + "nodeId": 1220304, + "weight": 1 + }, + { + "id": 1588, + "nodePlanId": 40411, + "nodeId": 1220404, + "weight": 1 + }, + { + "id": 1589, + "nodePlanId": 40411, + "nodeId": 1220504, + "weight": 1 + }, + { + "id": 1590, + "nodePlanId": 40411, + "nodeId": 1220604, + "weight": 1 + }, + { + "id": 1591, + "nodePlanId": 40411, + "nodeId": 1220704, + "weight": 1 + }, + { + "id": 1592, + "nodePlanId": 40411, + "nodeId": 1220804, + "weight": 1 + }, + { + "id": 1593, + "nodePlanId": 40411, + "nodeId": 2220104, + "weight": 1 + }, + { + "id": 1594, + "nodePlanId": 40411, + "nodeId": 2220204, + "weight": 1 + }, + { + "id": 1595, + "nodePlanId": 40411, + "nodeId": 2220304, + "weight": 1 + }, + { + "id": 1596, + "nodePlanId": 40411, + "nodeId": 2220404, + "weight": 1 + }, + { + "id": 1597, + "nodePlanId": 40411, + "nodeId": 2220504, + "weight": 2 + }, + { + "id": 1598, + "nodePlanId": 40411, + "nodeId": 2220604, + "weight": 2 + }, + { + "id": 1599, + "nodePlanId": 40411, + "nodeId": 4210104, + "weight": 2 + }, + { + "id": 1600, + "nodePlanId": 40411, + "nodeId": 6210104, + "weight": 2 + }, + { + "id": 1601, + "nodePlanId": 40411, + "nodeId": 6210104, + "weight": 2 + }, + { + "id": 1602, + "nodePlanId": 40412, + "nodeId": 1230104, + "weight": 1 + }, + { + "id": 1603, + "nodePlanId": 40412, + "nodeId": 1230204, + "weight": 1 + }, + { + "id": 1604, + "nodePlanId": 40412, + "nodeId": 1230304, + "weight": 1 + }, + { + "id": 1605, + "nodePlanId": 40412, + "nodeId": 1230404, + "weight": 1 + }, + { + "id": 1606, + "nodePlanId": 40412, + "nodeId": 1230504, + "weight": 1 + }, + { + "id": 1607, + "nodePlanId": 40412, + "nodeId": 2230104, + "weight": 1.5 + }, + { + "id": 1608, + "nodePlanId": 40412, + "nodeId": 2230204, + "weight": 1.5 + }, + { + "id": 1609, + "nodePlanId": 40412, + "nodeId": 2230304, + "weight": 1 + }, + { + "id": 1610, + "nodePlanId": 40412, + "nodeId": 2230404, + "weight": 1 + }, + { + "id": 1611, + "nodePlanId": 40412, + "nodeId": 2230504, + "weight": 1 + }, + { + "id": 1612, + "nodePlanId": 40412, + "nodeId": 2230604, + "weight": 1 + }, + { + "id": 1613, + "nodePlanId": 40413, + "nodeId": 1230604, + "weight": 1 + }, + { + "id": 1614, + "nodePlanId": 40413, + "nodeId": 1230704, + "weight": 1 + }, + { + "id": 1615, + "nodePlanId": 40413, + "nodeId": 1230804, + "weight": 1 + }, + { + "id": 1616, + "nodePlanId": 40413, + "nodeId": 2230104, + "weight": 1 + }, + { + "id": 1617, + "nodePlanId": 40413, + "nodeId": 2230204, + "weight": 1 + }, + { + "id": 1618, + "nodePlanId": 40413, + "nodeId": 2230304, + "weight": 2 + }, + { + "id": 1619, + "nodePlanId": 40413, + "nodeId": 2230404, + "weight": 2 + }, + { + "id": 1620, + "nodePlanId": 40413, + "nodeId": 2230504, + "weight": 1 + }, + { + "id": 1621, + "nodePlanId": 40413, + "nodeId": 2230604, + "weight": 1 + }, + { + "id": 1622, + "nodePlanId": 40413, + "nodeId": 5210104, + "weight": 3 + }, + { + "id": 1623, + "nodePlanId": 40413, + "nodeId": 6210104, + "weight": 2 + }, + { + "id": 1624, + "nodePlanId": 40414, + "nodeId": 4210104, + "weight": 1 + }, + { + "id": 1625, + "nodePlanId": 40415, + "nodeId": 7210104, + "weight": 1 + }, + { + "id": 1626, + "nodePlanId": 40501, + "nodeId": 1210105, + "weight": 1 + }, + { + "id": 1627, + "nodePlanId": 40501, + "nodeId": 1210205, + "weight": 1 + }, + { + "id": 1628, + "nodePlanId": 40501, + "nodeId": 1210305, + "weight": 1 + }, + { + "id": 1629, + "nodePlanId": 40501, + "nodeId": 1210405, + "weight": 1 + }, + { + "id": 1630, + "nodePlanId": 40501, + "nodeId": 1210505, + "weight": 1 + }, + { + "id": 1631, + "nodePlanId": 40501, + "nodeId": 1210605, + "weight": 1 + }, + { + "id": 1632, + "nodePlanId": 40501, + "nodeId": 1210705, + "weight": 1 + }, + { + "id": 1633, + "nodePlanId": 40501, + "nodeId": 1210805, + "weight": 1 + }, + { + "id": 1634, + "nodePlanId": 40502, + "nodeId": 1210105, + "weight": 1 + }, + { + "id": 1635, + "nodePlanId": 40502, + "nodeId": 1210205, + "weight": 1 + }, + { + "id": 1636, + "nodePlanId": 40502, + "nodeId": 1210305, + "weight": 1 + }, + { + "id": 1637, + "nodePlanId": 40502, + "nodeId": 1210405, + "weight": 1 + }, + { + "id": 1638, + "nodePlanId": 40502, + "nodeId": 1210505, + "weight": 1 + }, + { + "id": 1639, + "nodePlanId": 40502, + "nodeId": 1210605, + "weight": 1 + }, + { + "id": 1640, + "nodePlanId": 40502, + "nodeId": 1210705, + "weight": 1 + }, + { + "id": 1641, + "nodePlanId": 40502, + "nodeId": 1210805, + "weight": 1 + }, + { + "id": 1642, + "nodePlanId": 40503, + "nodeId": 1210105, + "weight": 1 + }, + { + "id": 1643, + "nodePlanId": 40503, + "nodeId": 1210205, + "weight": 1 + }, + { + "id": 1644, + "nodePlanId": 40503, + "nodeId": 1210305, + "weight": 1 + }, + { + "id": 1645, + "nodePlanId": 40503, + "nodeId": 1210405, + "weight": 1 + }, + { + "id": 1646, + "nodePlanId": 40503, + "nodeId": 1210505, + "weight": 1 + }, + { + "id": 1647, + "nodePlanId": 40503, + "nodeId": 1210605, + "weight": 1 + }, + { + "id": 1648, + "nodePlanId": 40503, + "nodeId": 1210705, + "weight": 1 + }, + { + "id": 1649, + "nodePlanId": 40503, + "nodeId": 1210805, + "weight": 1 + }, + { + "id": 1650, + "nodePlanId": 40503, + "nodeId": 2210105, + "weight": 4 + }, + { + "id": 1651, + "nodePlanId": 40503, + "nodeId": 2210205, + "weight": 4 + }, + { + "id": 1652, + "nodePlanId": 40503, + "nodeId": 6210105, + "weight": 8 + }, + { + "id": 1653, + "nodePlanId": 40504, + "nodeId": 2210305, + "weight": 1 + }, + { + "id": 1654, + "nodePlanId": 40504, + "nodeId": 2210405, + "weight": 1 + }, + { + "id": 1655, + "nodePlanId": 40504, + "nodeId": 2210505, + "weight": 1 + }, + { + "id": 1656, + "nodePlanId": 40504, + "nodeId": 2210605, + "weight": 1 + }, + { + "id": 1657, + "nodePlanId": 40505, + "nodeId": 5210105, + "weight": 1 + }, + { + "id": 1658, + "nodePlanId": 40506, + "nodeId": 1220105, + "weight": 1 + }, + { + "id": 1659, + "nodePlanId": 40506, + "nodeId": 1220205, + "weight": 1 + }, + { + "id": 1660, + "nodePlanId": 40506, + "nodeId": 1220305, + "weight": 1 + }, + { + "id": 1661, + "nodePlanId": 40506, + "nodeId": 1220405, + "weight": 1 + }, + { + "id": 1662, + "nodePlanId": 40506, + "nodeId": 1220505, + "weight": 1 + }, + { + "id": 1663, + "nodePlanId": 40506, + "nodeId": 1220605, + "weight": 1 + }, + { + "id": 1664, + "nodePlanId": 40506, + "nodeId": 1220705, + "weight": 1 + }, + { + "id": 1665, + "nodePlanId": 40506, + "nodeId": 1220805, + "weight": 1 + }, + { + "id": 1666, + "nodePlanId": 40506, + "nodeId": 2220105, + "weight": 2 + }, + { + "id": 1667, + "nodePlanId": 40506, + "nodeId": 2220205, + "weight": 2 + }, + { + "id": 1668, + "nodePlanId": 40506, + "nodeId": 2220305, + "weight": 1 + }, + { + "id": 1669, + "nodePlanId": 40506, + "nodeId": 2220405, + "weight": 1 + }, + { + "id": 1670, + "nodePlanId": 40506, + "nodeId": 2220505, + "weight": 1 + }, + { + "id": 1671, + "nodePlanId": 40506, + "nodeId": 2220605, + "weight": 1 + }, + { + "id": 1672, + "nodePlanId": 40506, + "nodeId": 4210105, + "weight": 3 + }, + { + "id": 1673, + "nodePlanId": 40506, + "nodeId": 6210105, + "weight": 3 + }, + { + "id": 1674, + "nodePlanId": 40507, + "nodeId": 1220105, + "weight": 1 + }, + { + "id": 1675, + "nodePlanId": 40507, + "nodeId": 1220205, + "weight": 1 + }, + { + "id": 1676, + "nodePlanId": 40507, + "nodeId": 1220305, + "weight": 1 + }, + { + "id": 1677, + "nodePlanId": 40507, + "nodeId": 1220405, + "weight": 1 + }, + { + "id": 1678, + "nodePlanId": 40507, + "nodeId": 1220505, + "weight": 1 + }, + { + "id": 1679, + "nodePlanId": 40507, + "nodeId": 1220605, + "weight": 1 + }, + { + "id": 1680, + "nodePlanId": 40507, + "nodeId": 1220705, + "weight": 1 + }, + { + "id": 1681, + "nodePlanId": 40507, + "nodeId": 1220805, + "weight": 1 + }, + { + "id": 1682, + "nodePlanId": 40507, + "nodeId": 2220105, + "weight": 1 + }, + { + "id": 1683, + "nodePlanId": 40507, + "nodeId": 2220205, + "weight": 1 + }, + { + "id": 1684, + "nodePlanId": 40507, + "nodeId": 2220305, + "weight": 2 + }, + { + "id": 1685, + "nodePlanId": 40507, + "nodeId": 2220405, + "weight": 2 + }, + { + "id": 1686, + "nodePlanId": 40507, + "nodeId": 2220505, + "weight": 1 + }, + { + "id": 1687, + "nodePlanId": 40507, + "nodeId": 2220605, + "weight": 1 + }, + { + "id": 1688, + "nodePlanId": 40507, + "nodeId": 5210105, + "weight": 3 + }, + { + "id": 1689, + "nodePlanId": 40508, + "nodeId": 1220105, + "weight": 1 + }, + { + "id": 1690, + "nodePlanId": 40508, + "nodeId": 1220205, + "weight": 1 + }, + { + "id": 1691, + "nodePlanId": 40508, + "nodeId": 1220305, + "weight": 1 + }, + { + "id": 1692, + "nodePlanId": 40508, + "nodeId": 1220405, + "weight": 1 + }, + { + "id": 1693, + "nodePlanId": 40508, + "nodeId": 1220505, + "weight": 1 + }, + { + "id": 1694, + "nodePlanId": 40508, + "nodeId": 1220605, + "weight": 1 + }, + { + "id": 1695, + "nodePlanId": 40508, + "nodeId": 1220705, + "weight": 1 + }, + { + "id": 1696, + "nodePlanId": 40508, + "nodeId": 1220805, + "weight": 1 + }, + { + "id": 1697, + "nodePlanId": 40508, + "nodeId": 2220105, + "weight": 1 + }, + { + "id": 1698, + "nodePlanId": 40508, + "nodeId": 2220205, + "weight": 1 + }, + { + "id": 1699, + "nodePlanId": 40508, + "nodeId": 2220305, + "weight": 1 + }, + { + "id": 1700, + "nodePlanId": 40508, + "nodeId": 2220405, + "weight": 1 + }, + { + "id": 1701, + "nodePlanId": 40508, + "nodeId": 2220505, + "weight": 2 + }, + { + "id": 1702, + "nodePlanId": 40508, + "nodeId": 2220605, + "weight": 2 + }, + { + "id": 1703, + "nodePlanId": 40508, + "nodeId": 5210105, + "weight": 3 + }, + { + "id": 1704, + "nodePlanId": 40508, + "nodeId": 6210105, + "weight": 3 + }, + { + "id": 1705, + "nodePlanId": 40509, + "nodeId": 3210105, + "weight": 1 + }, + { + "id": 1706, + "nodePlanId": 40510, + "nodeId": 1220105, + "weight": 1 + }, + { + "id": 1707, + "nodePlanId": 40510, + "nodeId": 1220205, + "weight": 1 + }, + { + "id": 1708, + "nodePlanId": 40510, + "nodeId": 1220305, + "weight": 1 + }, + { + "id": 1709, + "nodePlanId": 40510, + "nodeId": 1220405, + "weight": 1 + }, + { + "id": 1710, + "nodePlanId": 40510, + "nodeId": 1220505, + "weight": 1 + }, + { + "id": 1711, + "nodePlanId": 40510, + "nodeId": 1220605, + "weight": 1 + }, + { + "id": 1712, + "nodePlanId": 40510, + "nodeId": 1220705, + "weight": 1 + }, + { + "id": 1713, + "nodePlanId": 40510, + "nodeId": 1220805, + "weight": 1 + }, + { + "id": 1714, + "nodePlanId": 40510, + "nodeId": 2220105, + "weight": 1 + }, + { + "id": 1715, + "nodePlanId": 40510, + "nodeId": 2220205, + "weight": 1 + }, + { + "id": 1716, + "nodePlanId": 40510, + "nodeId": 2220305, + "weight": 1 + }, + { + "id": 1717, + "nodePlanId": 40510, + "nodeId": 2220405, + "weight": 1 + }, + { + "id": 1718, + "nodePlanId": 40510, + "nodeId": 2220505, + "weight": 2 + }, + { + "id": 1719, + "nodePlanId": 40510, + "nodeId": 2220605, + "weight": 2 + }, + { + "id": 1720, + "nodePlanId": 40510, + "nodeId": 5210105, + "weight": 3 + }, + { + "id": 1721, + "nodePlanId": 40510, + "nodeId": 6210105, + "weight": 3 + }, + { + "id": 1722, + "nodePlanId": 40511, + "nodeId": 1220105, + "weight": 1 + }, + { + "id": 1723, + "nodePlanId": 40511, + "nodeId": 1220205, + "weight": 1 + }, + { + "id": 1724, + "nodePlanId": 40511, + "nodeId": 1220305, + "weight": 1 + }, + { + "id": 1725, + "nodePlanId": 40511, + "nodeId": 1220405, + "weight": 1 + }, + { + "id": 1726, + "nodePlanId": 40511, + "nodeId": 1220505, + "weight": 1 + }, + { + "id": 1727, + "nodePlanId": 40511, + "nodeId": 1220605, + "weight": 1 + }, + { + "id": 1728, + "nodePlanId": 40511, + "nodeId": 1220705, + "weight": 1 + }, + { + "id": 1729, + "nodePlanId": 40511, + "nodeId": 1220805, + "weight": 1 + }, + { + "id": 1730, + "nodePlanId": 40511, + "nodeId": 2220105, + "weight": 1 + }, + { + "id": 1731, + "nodePlanId": 40511, + "nodeId": 2220205, + "weight": 1 + }, + { + "id": 1732, + "nodePlanId": 40511, + "nodeId": 2220305, + "weight": 1 + }, + { + "id": 1733, + "nodePlanId": 40511, + "nodeId": 2220405, + "weight": 1 + }, + { + "id": 1734, + "nodePlanId": 40511, + "nodeId": 2220505, + "weight": 2 + }, + { + "id": 1735, + "nodePlanId": 40511, + "nodeId": 2220605, + "weight": 2 + }, + { + "id": 1736, + "nodePlanId": 40511, + "nodeId": 4210105, + "weight": 2 + }, + { + "id": 1737, + "nodePlanId": 40511, + "nodeId": 6210105, + "weight": 2 + }, + { + "id": 1738, + "nodePlanId": 40511, + "nodeId": 6210105, + "weight": 2 + }, + { + "id": 1739, + "nodePlanId": 40512, + "nodeId": 1230105, + "weight": 1 + }, + { + "id": 1740, + "nodePlanId": 40512, + "nodeId": 1230205, + "weight": 1 + }, + { + "id": 1741, + "nodePlanId": 40512, + "nodeId": 1230305, + "weight": 1 + }, + { + "id": 1742, + "nodePlanId": 40512, + "nodeId": 1230405, + "weight": 1 + }, + { + "id": 1743, + "nodePlanId": 40512, + "nodeId": 1230505, + "weight": 1 + }, + { + "id": 1744, + "nodePlanId": 40512, + "nodeId": 2230105, + "weight": 1.5 + }, + { + "id": 1745, + "nodePlanId": 40512, + "nodeId": 2230205, + "weight": 1.5 + }, + { + "id": 1746, + "nodePlanId": 40512, + "nodeId": 2230305, + "weight": 1 + }, + { + "id": 1747, + "nodePlanId": 40512, + "nodeId": 2230405, + "weight": 1 + }, + { + "id": 1748, + "nodePlanId": 40512, + "nodeId": 2230505, + "weight": 1 + }, + { + "id": 1749, + "nodePlanId": 40512, + "nodeId": 2230605, + "weight": 1 + }, + { + "id": 1750, + "nodePlanId": 40513, + "nodeId": 1230605, + "weight": 1 + }, + { + "id": 1751, + "nodePlanId": 40513, + "nodeId": 1230705, + "weight": 1 + }, + { + "id": 1752, + "nodePlanId": 40513, + "nodeId": 1230805, + "weight": 1 + }, + { + "id": 1753, + "nodePlanId": 40513, + "nodeId": 2230105, + "weight": 1 + }, + { + "id": 1754, + "nodePlanId": 40513, + "nodeId": 2230205, + "weight": 1 + }, + { + "id": 1755, + "nodePlanId": 40513, + "nodeId": 2230305, + "weight": 2 + }, + { + "id": 1756, + "nodePlanId": 40513, + "nodeId": 2230405, + "weight": 2 + }, + { + "id": 1757, + "nodePlanId": 40513, + "nodeId": 2230505, + "weight": 1 + }, + { + "id": 1758, + "nodePlanId": 40513, + "nodeId": 2230605, + "weight": 1 + }, + { + "id": 1759, + "nodePlanId": 40513, + "nodeId": 5210105, + "weight": 3 + }, + { + "id": 1760, + "nodePlanId": 40513, + "nodeId": 6210105, + "weight": 2 + }, + { + "id": 1761, + "nodePlanId": 40514, + "nodeId": 4210105, + "weight": 1 + }, + { + "id": 1762, + "nodePlanId": 40514, + "nodeId": 6210105, + "weight": 1 + }, + { + "id": 1763, + "nodePlanId": 40514, + "nodeId": 6210105, + "weight": 1 + }, + { + "id": 1764, + "nodePlanId": 40514, + "nodeId": 2230505, + "weight": 1 + }, + { + "id": 1765, + "nodePlanId": 40514, + "nodeId": 2230605, + "weight": 1 + }, + { + "id": 1766, + "nodePlanId": 40515, + "nodeId": 1230105, + "weight": 1 + }, + { + "id": 1767, + "nodePlanId": 40515, + "nodeId": 1230205, + "weight": 1 + }, + { + "id": 1768, + "nodePlanId": 40515, + "nodeId": 1230305, + "weight": 1 + }, + { + "id": 1769, + "nodePlanId": 40515, + "nodeId": 1230405, + "weight": 1 + }, + { + "id": 1770, + "nodePlanId": 40515, + "nodeId": 1230505, + "weight": 1 + }, + { + "id": 1771, + "nodePlanId": 40515, + "nodeId": 1230605, + "weight": 1 + }, + { + "id": 1772, + "nodePlanId": 40515, + "nodeId": 1230705, + "weight": 1 + }, + { + "id": 1773, + "nodePlanId": 40515, + "nodeId": 1230805, + "weight": 1 + }, + { + "id": 1774, + "nodePlanId": 40515, + "nodeId": 6210105, + "weight": 3 + }, + { + "id": 1775, + "nodePlanId": 40515, + "nodeId": 6210105, + "weight": 2 + }, + { + "id": 1776, + "nodePlanId": 40516, + "nodeId": 5210105, + "weight": 1 + }, + { + "id": 1777, + "nodePlanId": 40516, + "nodeId": 5210105, + "weight": 1 + }, + { + "id": 1778, + "nodePlanId": 40516, + "nodeId": 1230105, + "weight": 1 + }, + { + "id": 1779, + "nodePlanId": 40516, + "nodeId": 1230205, + "weight": 1 + }, + { + "id": 1780, + "nodePlanId": 40517, + "nodeId": 2230105, + "weight": 1 + }, + { + "id": 1781, + "nodePlanId": 40517, + "nodeId": 2230205, + "weight": 1 + }, + { + "id": 1782, + "nodePlanId": 40517, + "nodeId": 2230305, + "weight": 1 + }, + { + "id": 1783, + "nodePlanId": 40517, + "nodeId": 2230405, + "weight": 1 + }, + { + "id": 1784, + "nodePlanId": 40517, + "nodeId": 2230505, + "weight": 1 + }, + { + "id": 1785, + "nodePlanId": 40517, + "nodeId": 2230605, + "weight": 1 + }, + { + "id": 1786, + "nodePlanId": 40518, + "nodeId": 5210105, + "weight": 1 + }, + { + "id": 1787, + "nodePlanId": 40518, + "nodeId": 6210105, + "weight": 1 + }, + { + "id": 1788, + "nodePlanId": 40519, + "nodeId": 4210105, + "weight": 1 + }, + { + "id": 1789, + "nodePlanId": 40520, + "nodeId": 7210105, + "weight": 1 + }, + { + "id": 1790, + "nodePlanId": 50101, + "nodeId": 1310101, + "weight": 1 + }, + { + "id": 1791, + "nodePlanId": 50101, + "nodeId": 1310101, + "weight": 1 + }, + { + "id": 1792, + "nodePlanId": 50101, + "nodeId": 1310201, + "weight": 1 + }, + { + "id": 1793, + "nodePlanId": 50101, + "nodeId": 1310301, + "weight": 1 + }, + { + "id": 1794, + "nodePlanId": 50101, + "nodeId": 1310401, + "weight": 1 + }, + { + "id": 1795, + "nodePlanId": 50101, + "nodeId": 1310501, + "weight": 1 + }, + { + "id": 1796, + "nodePlanId": 50101, + "nodeId": 1310601, + "weight": 1 + }, + { + "id": 1797, + "nodePlanId": 50101, + "nodeId": 1310701, + "weight": 1 + }, + { + "id": 1798, + "nodePlanId": 50102, + "nodeId": 1310801, + "weight": 1 + }, + { + "id": 1799, + "nodePlanId": 50102, + "nodeId": 1310101, + "weight": 1 + }, + { + "id": 1800, + "nodePlanId": 50102, + "nodeId": 1310101, + "weight": 1 + }, + { + "id": 1801, + "nodePlanId": 50102, + "nodeId": 1310201, + "weight": 1 + }, + { + "id": 1802, + "nodePlanId": 50102, + "nodeId": 1310301, + "weight": 1 + }, + { + "id": 1803, + "nodePlanId": 50102, + "nodeId": 1310401, + "weight": 1 + }, + { + "id": 1804, + "nodePlanId": 50102, + "nodeId": 1310501, + "weight": 1 + }, + { + "id": 1805, + "nodePlanId": 50102, + "nodeId": 1310601, + "weight": 1 + }, + { + "id": 1806, + "nodePlanId": 50103, + "nodeId": 1310701, + "weight": 1 + }, + { + "id": 1807, + "nodePlanId": 50103, + "nodeId": 1310801, + "weight": 1 + }, + { + "id": 1808, + "nodePlanId": 50103, + "nodeId": 1310301, + "weight": 1 + }, + { + "id": 1809, + "nodePlanId": 50103, + "nodeId": 1310401, + "weight": 1 + }, + { + "id": 1810, + "nodePlanId": 50103, + "nodeId": 1310501, + "weight": 1 + }, + { + "id": 1811, + "nodePlanId": 50103, + "nodeId": 1310601, + "weight": 1 + }, + { + "id": 1812, + "nodePlanId": 50103, + "nodeId": 1310701, + "weight": 1 + }, + { + "id": 1813, + "nodePlanId": 50103, + "nodeId": 1310801, + "weight": 1 + }, + { + "id": 1814, + "nodePlanId": 50103, + "nodeId": 2310101, + "weight": 4 + }, + { + "id": 1815, + "nodePlanId": 50103, + "nodeId": 2310201, + "weight": 4 + }, + { + "id": 1816, + "nodePlanId": 50103, + "nodeId": 6310101, + "weight": 8 + }, + { + "id": 1817, + "nodePlanId": 50104, + "nodeId": 2310301, + "weight": 1 + }, + { + "id": 1818, + "nodePlanId": 50104, + "nodeId": 2310401, + "weight": 1 + }, + { + "id": 1819, + "nodePlanId": 50104, + "nodeId": 2310501, + "weight": 1 + }, + { + "id": 1820, + "nodePlanId": 50104, + "nodeId": 2310601, + "weight": 1 + }, + { + "id": 1821, + "nodePlanId": 50105, + "nodeId": 5310101, + "weight": 1 + }, + { + "id": 1822, + "nodePlanId": 50106, + "nodeId": 1320101, + "weight": 1 + }, + { + "id": 1823, + "nodePlanId": 50106, + "nodeId": 1320201, + "weight": 1 + }, + { + "id": 1824, + "nodePlanId": 50106, + "nodeId": 1320301, + "weight": 1 + }, + { + "id": 1825, + "nodePlanId": 50106, + "nodeId": 1320401, + "weight": 1 + }, + { + "id": 1826, + "nodePlanId": 50106, + "nodeId": 1320501, + "weight": 1 + }, + { + "id": 1827, + "nodePlanId": 50106, + "nodeId": 1320601, + "weight": 1 + }, + { + "id": 1828, + "nodePlanId": 50106, + "nodeId": 1320701, + "weight": 1 + }, + { + "id": 1829, + "nodePlanId": 50106, + "nodeId": 1320801, + "weight": 1 + }, + { + "id": 1830, + "nodePlanId": 50106, + "nodeId": 2320101, + "weight": 2 + }, + { + "id": 1831, + "nodePlanId": 50106, + "nodeId": 2320201, + "weight": 2 + }, + { + "id": 1832, + "nodePlanId": 50106, + "nodeId": 2320301, + "weight": 1 + }, + { + "id": 1833, + "nodePlanId": 50106, + "nodeId": 2320401, + "weight": 1 + }, + { + "id": 1834, + "nodePlanId": 50106, + "nodeId": 2320501, + "weight": 1 + }, + { + "id": 1835, + "nodePlanId": 50106, + "nodeId": 2320601, + "weight": 1 + }, + { + "id": 1836, + "nodePlanId": 50106, + "nodeId": 4310101, + "weight": 3 + }, + { + "id": 1837, + "nodePlanId": 50106, + "nodeId": 6310101, + "weight": 3 + }, + { + "id": 1838, + "nodePlanId": 50107, + "nodeId": 1320101, + "weight": 1 + }, + { + "id": 1839, + "nodePlanId": 50107, + "nodeId": 1320201, + "weight": 1 + }, + { + "id": 1840, + "nodePlanId": 50107, + "nodeId": 1320301, + "weight": 1 + }, + { + "id": 1841, + "nodePlanId": 50107, + "nodeId": 1320401, + "weight": 1 + }, + { + "id": 1842, + "nodePlanId": 50107, + "nodeId": 1320501, + "weight": 1 + }, + { + "id": 1843, + "nodePlanId": 50107, + "nodeId": 1320601, + "weight": 1 + }, + { + "id": 1844, + "nodePlanId": 50107, + "nodeId": 1320701, + "weight": 1 + }, + { + "id": 1845, + "nodePlanId": 50107, + "nodeId": 1320801, + "weight": 1 + }, + { + "id": 1846, + "nodePlanId": 50107, + "nodeId": 2320101, + "weight": 1 + }, + { + "id": 1847, + "nodePlanId": 50107, + "nodeId": 2320201, + "weight": 1 + }, + { + "id": 1848, + "nodePlanId": 50107, + "nodeId": 2320301, + "weight": 2 + }, + { + "id": 1849, + "nodePlanId": 50107, + "nodeId": 2320401, + "weight": 2 + }, + { + "id": 1850, + "nodePlanId": 50107, + "nodeId": 2320501, + "weight": 1 + }, + { + "id": 1851, + "nodePlanId": 50107, + "nodeId": 2320601, + "weight": 1 + }, + { + "id": 1852, + "nodePlanId": 50107, + "nodeId": 5310101, + "weight": 3 + }, + { + "id": 1853, + "nodePlanId": 50108, + "nodeId": 1320101, + "weight": 1 + }, + { + "id": 1854, + "nodePlanId": 50108, + "nodeId": 1320201, + "weight": 1 + }, + { + "id": 1855, + "nodePlanId": 50108, + "nodeId": 1320301, + "weight": 1 + }, + { + "id": 1856, + "nodePlanId": 50108, + "nodeId": 1320401, + "weight": 1 + }, + { + "id": 1857, + "nodePlanId": 50108, + "nodeId": 1320501, + "weight": 1 + }, + { + "id": 1858, + "nodePlanId": 50108, + "nodeId": 1320601, + "weight": 1 + }, + { + "id": 1859, + "nodePlanId": 50108, + "nodeId": 1320701, + "weight": 1 + }, + { + "id": 1860, + "nodePlanId": 50108, + "nodeId": 1320801, + "weight": 1 + }, + { + "id": 1861, + "nodePlanId": 50108, + "nodeId": 2320101, + "weight": 1 + }, + { + "id": 1862, + "nodePlanId": 50108, + "nodeId": 2320201, + "weight": 1 + }, + { + "id": 1863, + "nodePlanId": 50108, + "nodeId": 2320301, + "weight": 1 + }, + { + "id": 1864, + "nodePlanId": 50108, + "nodeId": 2320401, + "weight": 1 + }, + { + "id": 1865, + "nodePlanId": 50108, + "nodeId": 2320501, + "weight": 2 + }, + { + "id": 1866, + "nodePlanId": 50108, + "nodeId": 2320601, + "weight": 2 + }, + { + "id": 1867, + "nodePlanId": 50108, + "nodeId": 5310101, + "weight": 3 + }, + { + "id": 1868, + "nodePlanId": 50108, + "nodeId": 6310101, + "weight": 3 + }, + { + "id": 1869, + "nodePlanId": 50109, + "nodeId": 3310101, + "weight": 1 + }, + { + "id": 1870, + "nodePlanId": 50110, + "nodeId": 1330101, + "weight": 1 + }, + { + "id": 1871, + "nodePlanId": 50110, + "nodeId": 1330201, + "weight": 1 + }, + { + "id": 1872, + "nodePlanId": 50110, + "nodeId": 1330301, + "weight": 1 + }, + { + "id": 1873, + "nodePlanId": 50110, + "nodeId": 1330401, + "weight": 1 + }, + { + "id": 1874, + "nodePlanId": 50110, + "nodeId": 1330501, + "weight": 1 + }, + { + "id": 1875, + "nodePlanId": 50110, + "nodeId": 1330601, + "weight": 1 + }, + { + "id": 1876, + "nodePlanId": 50110, + "nodeId": 1330601, + "weight": 1 + }, + { + "id": 1877, + "nodePlanId": 50110, + "nodeId": 1330701, + "weight": 1 + }, + { + "id": 1878, + "nodePlanId": 50110, + "nodeId": 1330701, + "weight": 1 + }, + { + "id": 1879, + "nodePlanId": 50110, + "nodeId": 1330801, + "weight": 1 + }, + { + "id": 1880, + "nodePlanId": 50110, + "nodeId": 2320301, + "weight": 1 + }, + { + "id": 1881, + "nodePlanId": 50110, + "nodeId": 2320401, + "weight": 1 + }, + { + "id": 1882, + "nodePlanId": 50110, + "nodeId": 2320501, + "weight": 2 + }, + { + "id": 1883, + "nodePlanId": 50110, + "nodeId": 2320601, + "weight": 2 + }, + { + "id": 1884, + "nodePlanId": 50110, + "nodeId": 5310101, + "weight": 3 + }, + { + "id": 1885, + "nodePlanId": 50110, + "nodeId": 6310101, + "weight": 3 + }, + { + "id": 1886, + "nodePlanId": 50111, + "nodeId": 1330101, + "weight": 1 + }, + { + "id": 1887, + "nodePlanId": 50111, + "nodeId": 1330201, + "weight": 1 + }, + { + "id": 1888, + "nodePlanId": 50111, + "nodeId": 1330301, + "weight": 1 + }, + { + "id": 1889, + "nodePlanId": 50111, + "nodeId": 1330401, + "weight": 1 + }, + { + "id": 1890, + "nodePlanId": 50111, + "nodeId": 1330501, + "weight": 1 + }, + { + "id": 1891, + "nodePlanId": 50111, + "nodeId": 1330601, + "weight": 1 + }, + { + "id": 1892, + "nodePlanId": 50111, + "nodeId": 1330601, + "weight": 1 + }, + { + "id": 1893, + "nodePlanId": 50111, + "nodeId": 1330701, + "weight": 1 + }, + { + "id": 1894, + "nodePlanId": 50111, + "nodeId": 1330701, + "weight": 1 + }, + { + "id": 1895, + "nodePlanId": 50111, + "nodeId": 1330801, + "weight": 1 + }, + { + "id": 1896, + "nodePlanId": 50111, + "nodeId": 2320301, + "weight": 1 + }, + { + "id": 1897, + "nodePlanId": 50111, + "nodeId": 2320401, + "weight": 1 + }, + { + "id": 1898, + "nodePlanId": 50111, + "nodeId": 2320501, + "weight": 2 + }, + { + "id": 1899, + "nodePlanId": 50111, + "nodeId": 2320601, + "weight": 2 + }, + { + "id": 1900, + "nodePlanId": 50111, + "nodeId": 4310101, + "weight": 2 + }, + { + "id": 1901, + "nodePlanId": 50111, + "nodeId": 6310101, + "weight": 2 + }, + { + "id": 1902, + "nodePlanId": 50111, + "nodeId": 6310101, + "weight": 2 + }, + { + "id": 1903, + "nodePlanId": 50112, + "nodeId": 1330101, + "weight": 1 + }, + { + "id": 1904, + "nodePlanId": 50112, + "nodeId": 1330201, + "weight": 1 + }, + { + "id": 1905, + "nodePlanId": 50112, + "nodeId": 1330301, + "weight": 1 + }, + { + "id": 1906, + "nodePlanId": 50112, + "nodeId": 1330401, + "weight": 1 + }, + { + "id": 1907, + "nodePlanId": 50112, + "nodeId": 1330501, + "weight": 1 + }, + { + "id": 1908, + "nodePlanId": 50112, + "nodeId": 1330601, + "weight": 1.5 + }, + { + "id": 1909, + "nodePlanId": 50112, + "nodeId": 1330601, + "weight": 1.5 + }, + { + "id": 1910, + "nodePlanId": 50112, + "nodeId": 1330701, + "weight": 1 + }, + { + "id": 1911, + "nodePlanId": 50112, + "nodeId": 1330701, + "weight": 1 + }, + { + "id": 1912, + "nodePlanId": 50112, + "nodeId": 1330801, + "weight": 1 + }, + { + "id": 1913, + "nodePlanId": 50112, + "nodeId": 2330601, + "weight": 1 + }, + { + "id": 1914, + "nodePlanId": 50113, + "nodeId": 1330601, + "weight": 1 + }, + { + "id": 1915, + "nodePlanId": 50113, + "nodeId": 1330701, + "weight": 1 + }, + { + "id": 1916, + "nodePlanId": 50113, + "nodeId": 1330801, + "weight": 1 + }, + { + "id": 1917, + "nodePlanId": 50113, + "nodeId": 2330101, + "weight": 1 + }, + { + "id": 1918, + "nodePlanId": 50113, + "nodeId": 2330201, + "weight": 1 + }, + { + "id": 1919, + "nodePlanId": 50113, + "nodeId": 2330301, + "weight": 2 + }, + { + "id": 1920, + "nodePlanId": 50113, + "nodeId": 2330401, + "weight": 2 + }, + { + "id": 1921, + "nodePlanId": 50113, + "nodeId": 2330501, + "weight": 1 + }, + { + "id": 1922, + "nodePlanId": 50113, + "nodeId": 2330601, + "weight": 1 + }, + { + "id": 1923, + "nodePlanId": 50113, + "nodeId": 5310101, + "weight": 3 + }, + { + "id": 1924, + "nodePlanId": 50113, + "nodeId": 6310101, + "weight": 2 + }, + { + "id": 1925, + "nodePlanId": 50114, + "nodeId": 4310101, + "weight": 1 + }, + { + "id": 1926, + "nodePlanId": 50115, + "nodeId": 7310101, + "weight": 1 + }, + { + "id": 1927, + "nodePlanId": 50201, + "nodeId": 1310102, + "weight": 1 + }, + { + "id": 1928, + "nodePlanId": 50201, + "nodeId": 1310202, + "weight": 1 + }, + { + "id": 1929, + "nodePlanId": 50201, + "nodeId": 1310302, + "weight": 1 + }, + { + "id": 1930, + "nodePlanId": 50201, + "nodeId": 1310402, + "weight": 1 + }, + { + "id": 1931, + "nodePlanId": 50201, + "nodeId": 1310502, + "weight": 1 + }, + { + "id": 1932, + "nodePlanId": 50201, + "nodeId": 1310602, + "weight": 1 + }, + { + "id": 1933, + "nodePlanId": 50201, + "nodeId": 1310702, + "weight": 1 + }, + { + "id": 1934, + "nodePlanId": 50201, + "nodeId": 1310802, + "weight": 1 + }, + { + "id": 1935, + "nodePlanId": 50202, + "nodeId": 1310102, + "weight": 1 + }, + { + "id": 1936, + "nodePlanId": 50202, + "nodeId": 1310202, + "weight": 1 + }, + { + "id": 1937, + "nodePlanId": 50202, + "nodeId": 1310302, + "weight": 1 + }, + { + "id": 1938, + "nodePlanId": 50202, + "nodeId": 1310402, + "weight": 1 + }, + { + "id": 1939, + "nodePlanId": 50202, + "nodeId": 1310502, + "weight": 1 + }, + { + "id": 1940, + "nodePlanId": 50202, + "nodeId": 1310602, + "weight": 1 + }, + { + "id": 1941, + "nodePlanId": 50202, + "nodeId": 1310702, + "weight": 1 + }, + { + "id": 1942, + "nodePlanId": 50202, + "nodeId": 1310802, + "weight": 1 + }, + { + "id": 1943, + "nodePlanId": 50203, + "nodeId": 1310102, + "weight": 1 + }, + { + "id": 1944, + "nodePlanId": 50203, + "nodeId": 1310202, + "weight": 1 + }, + { + "id": 1945, + "nodePlanId": 50203, + "nodeId": 1310302, + "weight": 1 + }, + { + "id": 1946, + "nodePlanId": 50203, + "nodeId": 1310402, + "weight": 1 + }, + { + "id": 1947, + "nodePlanId": 50203, + "nodeId": 1310502, + "weight": 1 + }, + { + "id": 1948, + "nodePlanId": 50203, + "nodeId": 1310602, + "weight": 1 + }, + { + "id": 1949, + "nodePlanId": 50203, + "nodeId": 1310702, + "weight": 1 + }, + { + "id": 1950, + "nodePlanId": 50203, + "nodeId": 1310802, + "weight": 1 + }, + { + "id": 1951, + "nodePlanId": 50203, + "nodeId": 2310102, + "weight": 4 + }, + { + "id": 1952, + "nodePlanId": 50203, + "nodeId": 2310202, + "weight": 4 + }, + { + "id": 1953, + "nodePlanId": 50203, + "nodeId": 6310102, + "weight": 8 + }, + { + "id": 1954, + "nodePlanId": 50204, + "nodeId": 2310302, + "weight": 1 + }, + { + "id": 1955, + "nodePlanId": 50204, + "nodeId": 2310402, + "weight": 1 + }, + { + "id": 1956, + "nodePlanId": 50204, + "nodeId": 2310502, + "weight": 1 + }, + { + "id": 1957, + "nodePlanId": 50204, + "nodeId": 2310602, + "weight": 1 + }, + { + "id": 1958, + "nodePlanId": 50205, + "nodeId": 5310102, + "weight": 1 + }, + { + "id": 1959, + "nodePlanId": 50206, + "nodeId": 1320102, + "weight": 1 + }, + { + "id": 1960, + "nodePlanId": 50206, + "nodeId": 1320202, + "weight": 1 + }, + { + "id": 1961, + "nodePlanId": 50206, + "nodeId": 1320302, + "weight": 1 + }, + { + "id": 1962, + "nodePlanId": 50206, + "nodeId": 1320402, + "weight": 1 + }, + { + "id": 1963, + "nodePlanId": 50206, + "nodeId": 1320502, + "weight": 1 + }, + { + "id": 1964, + "nodePlanId": 50206, + "nodeId": 1320602, + "weight": 1 + }, + { + "id": 1965, + "nodePlanId": 50206, + "nodeId": 1320702, + "weight": 1 + }, + { + "id": 1966, + "nodePlanId": 50206, + "nodeId": 1320802, + "weight": 1 + }, + { + "id": 1967, + "nodePlanId": 50206, + "nodeId": 2320102, + "weight": 2 + }, + { + "id": 1968, + "nodePlanId": 50206, + "nodeId": 2320202, + "weight": 2 + }, + { + "id": 1969, + "nodePlanId": 50206, + "nodeId": 2320302, + "weight": 1 + }, + { + "id": 1970, + "nodePlanId": 50206, + "nodeId": 2320402, + "weight": 1 + }, + { + "id": 1971, + "nodePlanId": 50206, + "nodeId": 2320502, + "weight": 1 + }, + { + "id": 1972, + "nodePlanId": 50206, + "nodeId": 2320602, + "weight": 1 + }, + { + "id": 1973, + "nodePlanId": 50206, + "nodeId": 4310102, + "weight": 3 + }, + { + "id": 1974, + "nodePlanId": 50206, + "nodeId": 6310102, + "weight": 3 + }, + { + "id": 1975, + "nodePlanId": 50207, + "nodeId": 1320102, + "weight": 1 + }, + { + "id": 1976, + "nodePlanId": 50207, + "nodeId": 1320202, + "weight": 1 + }, + { + "id": 1977, + "nodePlanId": 50207, + "nodeId": 1320302, + "weight": 1 + }, + { + "id": 1978, + "nodePlanId": 50207, + "nodeId": 1320402, + "weight": 1 + }, + { + "id": 1979, + "nodePlanId": 50207, + "nodeId": 1320502, + "weight": 1 + }, + { + "id": 1980, + "nodePlanId": 50207, + "nodeId": 1320602, + "weight": 1 + }, + { + "id": 1981, + "nodePlanId": 50207, + "nodeId": 1320702, + "weight": 1 + }, + { + "id": 1982, + "nodePlanId": 50207, + "nodeId": 1320802, + "weight": 1 + }, + { + "id": 1983, + "nodePlanId": 50207, + "nodeId": 2320102, + "weight": 1 + }, + { + "id": 1984, + "nodePlanId": 50207, + "nodeId": 2320202, + "weight": 1 + }, + { + "id": 1985, + "nodePlanId": 50207, + "nodeId": 2320302, + "weight": 2 + }, + { + "id": 1986, + "nodePlanId": 50207, + "nodeId": 2320402, + "weight": 2 + }, + { + "id": 1987, + "nodePlanId": 50207, + "nodeId": 2320502, + "weight": 1 + }, + { + "id": 1988, + "nodePlanId": 50207, + "nodeId": 2320602, + "weight": 1 + }, + { + "id": 1989, + "nodePlanId": 50207, + "nodeId": 5310102, + "weight": 3 + }, + { + "id": 1990, + "nodePlanId": 50208, + "nodeId": 1320102, + "weight": 1 + }, + { + "id": 1991, + "nodePlanId": 50208, + "nodeId": 1320202, + "weight": 1 + }, + { + "id": 1992, + "nodePlanId": 50208, + "nodeId": 1320302, + "weight": 1 + }, + { + "id": 1993, + "nodePlanId": 50208, + "nodeId": 1320402, + "weight": 1 + }, + { + "id": 1994, + "nodePlanId": 50208, + "nodeId": 1320502, + "weight": 1 + }, + { + "id": 1995, + "nodePlanId": 50208, + "nodeId": 1320602, + "weight": 1 + }, + { + "id": 1996, + "nodePlanId": 50208, + "nodeId": 1320702, + "weight": 1 + }, + { + "id": 1997, + "nodePlanId": 50208, + "nodeId": 1320802, + "weight": 1 + }, + { + "id": 1998, + "nodePlanId": 50208, + "nodeId": 2320102, + "weight": 1 + }, + { + "id": 1999, + "nodePlanId": 50208, + "nodeId": 2320202, + "weight": 1 + }, + { + "id": 2000, + "nodePlanId": 50208, + "nodeId": 2320302, + "weight": 1 + }, + { + "id": 2001, + "nodePlanId": 50208, + "nodeId": 2320402, + "weight": 1 + }, + { + "id": 2002, + "nodePlanId": 50208, + "nodeId": 2320502, + "weight": 2 + }, + { + "id": 2003, + "nodePlanId": 50208, + "nodeId": 2320602, + "weight": 2 + }, + { + "id": 2004, + "nodePlanId": 50208, + "nodeId": 5310102, + "weight": 3 + }, + { + "id": 2005, + "nodePlanId": 50208, + "nodeId": 6310102, + "weight": 3 + }, + { + "id": 2006, + "nodePlanId": 50209, + "nodeId": 3310102, + "weight": 1 + }, + { + "id": 2007, + "nodePlanId": 50210, + "nodeId": 1320102, + "weight": 1 + }, + { + "id": 2008, + "nodePlanId": 50210, + "nodeId": 1320202, + "weight": 1 + }, + { + "id": 2009, + "nodePlanId": 50210, + "nodeId": 1320302, + "weight": 1 + }, + { + "id": 2010, + "nodePlanId": 50210, + "nodeId": 1320402, + "weight": 1 + }, + { + "id": 2011, + "nodePlanId": 50210, + "nodeId": 1320502, + "weight": 1 + }, + { + "id": 2012, + "nodePlanId": 50210, + "nodeId": 1320602, + "weight": 1 + }, + { + "id": 2013, + "nodePlanId": 50210, + "nodeId": 1320702, + "weight": 1 + }, + { + "id": 2014, + "nodePlanId": 50210, + "nodeId": 1320802, + "weight": 1 + }, + { + "id": 2015, + "nodePlanId": 50210, + "nodeId": 2320102, + "weight": 1 + }, + { + "id": 2016, + "nodePlanId": 50210, + "nodeId": 2320202, + "weight": 1 + }, + { + "id": 2017, + "nodePlanId": 50210, + "nodeId": 2320302, + "weight": 1 + }, + { + "id": 2018, + "nodePlanId": 50210, + "nodeId": 2320402, + "weight": 1 + }, + { + "id": 2019, + "nodePlanId": 50210, + "nodeId": 2320502, + "weight": 2 + }, + { + "id": 2020, + "nodePlanId": 50210, + "nodeId": 2320602, + "weight": 2 + }, + { + "id": 2021, + "nodePlanId": 50210, + "nodeId": 5310102, + "weight": 3 + }, + { + "id": 2022, + "nodePlanId": 50210, + "nodeId": 6310102, + "weight": 3 + }, + { + "id": 2023, + "nodePlanId": 50211, + "nodeId": 1320102, + "weight": 1 + }, + { + "id": 2024, + "nodePlanId": 50211, + "nodeId": 1320202, + "weight": 1 + }, + { + "id": 2025, + "nodePlanId": 50211, + "nodeId": 1320302, + "weight": 1 + }, + { + "id": 2026, + "nodePlanId": 50211, + "nodeId": 1320402, + "weight": 1 + }, + { + "id": 2027, + "nodePlanId": 50211, + "nodeId": 1320502, + "weight": 1 + }, + { + "id": 2028, + "nodePlanId": 50211, + "nodeId": 1320602, + "weight": 1 + }, + { + "id": 2029, + "nodePlanId": 50211, + "nodeId": 1320702, + "weight": 1 + }, + { + "id": 2030, + "nodePlanId": 50211, + "nodeId": 1320802, + "weight": 1 + }, + { + "id": 2031, + "nodePlanId": 50211, + "nodeId": 2320102, + "weight": 1 + }, + { + "id": 2032, + "nodePlanId": 50211, + "nodeId": 2320202, + "weight": 1 + }, + { + "id": 2033, + "nodePlanId": 50211, + "nodeId": 2320302, + "weight": 1 + }, + { + "id": 2034, + "nodePlanId": 50211, + "nodeId": 2320402, + "weight": 1 + }, + { + "id": 2035, + "nodePlanId": 50211, + "nodeId": 2320502, + "weight": 2 + }, + { + "id": 2036, + "nodePlanId": 50211, + "nodeId": 2320602, + "weight": 2 + }, + { + "id": 2037, + "nodePlanId": 50211, + "nodeId": 4310102, + "weight": 2 + }, + { + "id": 2038, + "nodePlanId": 50211, + "nodeId": 6310102, + "weight": 2 + }, + { + "id": 2039, + "nodePlanId": 50211, + "nodeId": 6310102, + "weight": 2 + }, + { + "id": 2040, + "nodePlanId": 50212, + "nodeId": 1330102, + "weight": 1 + }, + { + "id": 2041, + "nodePlanId": 50212, + "nodeId": 1330202, + "weight": 1 + }, + { + "id": 2042, + "nodePlanId": 50212, + "nodeId": 1330302, + "weight": 1 + }, + { + "id": 2043, + "nodePlanId": 50212, + "nodeId": 1330402, + "weight": 1 + }, + { + "id": 2044, + "nodePlanId": 50212, + "nodeId": 1330502, + "weight": 1 + }, + { + "id": 2045, + "nodePlanId": 50212, + "nodeId": 2330102, + "weight": 1.5 + }, + { + "id": 2046, + "nodePlanId": 50212, + "nodeId": 2330202, + "weight": 1.5 + }, + { + "id": 2047, + "nodePlanId": 50212, + "nodeId": 2330302, + "weight": 1 + }, + { + "id": 2048, + "nodePlanId": 50212, + "nodeId": 2330402, + "weight": 1 + }, + { + "id": 2049, + "nodePlanId": 50212, + "nodeId": 2330502, + "weight": 1 + }, + { + "id": 2050, + "nodePlanId": 50212, + "nodeId": 2330602, + "weight": 1 + }, + { + "id": 2051, + "nodePlanId": 50213, + "nodeId": 1330602, + "weight": 1 + }, + { + "id": 2052, + "nodePlanId": 50213, + "nodeId": 1330702, + "weight": 1 + }, + { + "id": 2053, + "nodePlanId": 50213, + "nodeId": 1330802, + "weight": 1 + }, + { + "id": 2054, + "nodePlanId": 50213, + "nodeId": 2330102, + "weight": 1 + }, + { + "id": 2055, + "nodePlanId": 50213, + "nodeId": 2330202, + "weight": 1 + }, + { + "id": 2056, + "nodePlanId": 50213, + "nodeId": 2330302, + "weight": 2 + }, + { + "id": 2057, + "nodePlanId": 50213, + "nodeId": 2330402, + "weight": 2 + }, + { + "id": 2058, + "nodePlanId": 50213, + "nodeId": 2330502, + "weight": 1 + }, + { + "id": 2059, + "nodePlanId": 50213, + "nodeId": 2330602, + "weight": 1 + }, + { + "id": 2060, + "nodePlanId": 50213, + "nodeId": 5310102, + "weight": 3 + }, + { + "id": 2061, + "nodePlanId": 50213, + "nodeId": 6310102, + "weight": 2 + }, + { + "id": 2062, + "nodePlanId": 50214, + "nodeId": 4310102, + "weight": 1 + }, + { + "id": 2063, + "nodePlanId": 50215, + "nodeId": 7310102, + "weight": 1 + }, + { + "id": 2064, + "nodePlanId": 50301, + "nodeId": 1310103, + "weight": 1 + }, + { + "id": 2065, + "nodePlanId": 50301, + "nodeId": 1310203, + "weight": 1 + }, + { + "id": 2066, + "nodePlanId": 50301, + "nodeId": 1310303, + "weight": 1 + }, + { + "id": 2067, + "nodePlanId": 50301, + "nodeId": 1310403, + "weight": 1 + }, + { + "id": 2068, + "nodePlanId": 50301, + "nodeId": 1310503, + "weight": 1 + }, + { + "id": 2069, + "nodePlanId": 50301, + "nodeId": 1310603, + "weight": 1 + }, + { + "id": 2070, + "nodePlanId": 50301, + "nodeId": 1310703, + "weight": 1 + }, + { + "id": 2071, + "nodePlanId": 50301, + "nodeId": 1310803, + "weight": 1 + }, + { + "id": 2072, + "nodePlanId": 50302, + "nodeId": 1310103, + "weight": 1 + }, + { + "id": 2073, + "nodePlanId": 50302, + "nodeId": 1310203, + "weight": 1 + }, + { + "id": 2074, + "nodePlanId": 50302, + "nodeId": 1310303, + "weight": 1 + }, + { + "id": 2075, + "nodePlanId": 50302, + "nodeId": 1310403, + "weight": 1 + }, + { + "id": 2076, + "nodePlanId": 50302, + "nodeId": 1310503, + "weight": 1 + }, + { + "id": 2077, + "nodePlanId": 50302, + "nodeId": 1310603, + "weight": 1 + }, + { + "id": 2078, + "nodePlanId": 50302, + "nodeId": 1310703, + "weight": 1 + }, + { + "id": 2079, + "nodePlanId": 50302, + "nodeId": 1310803, + "weight": 1 + }, + { + "id": 2080, + "nodePlanId": 50303, + "nodeId": 1310103, + "weight": 1 + }, + { + "id": 2081, + "nodePlanId": 50303, + "nodeId": 1310203, + "weight": 1 + }, + { + "id": 2082, + "nodePlanId": 50303, + "nodeId": 1310303, + "weight": 1 + }, + { + "id": 2083, + "nodePlanId": 50303, + "nodeId": 1310403, + "weight": 1 + }, + { + "id": 2084, + "nodePlanId": 50303, + "nodeId": 1310503, + "weight": 1 + }, + { + "id": 2085, + "nodePlanId": 50303, + "nodeId": 1310603, + "weight": 1 + }, + { + "id": 2086, + "nodePlanId": 50303, + "nodeId": 1310703, + "weight": 1 + }, + { + "id": 2087, + "nodePlanId": 50303, + "nodeId": 1310803, + "weight": 1 + }, + { + "id": 2088, + "nodePlanId": 50303, + "nodeId": 2310103, + "weight": 4 + }, + { + "id": 2089, + "nodePlanId": 50303, + "nodeId": 2310203, + "weight": 4 + }, + { + "id": 2090, + "nodePlanId": 50303, + "nodeId": 6310103, + "weight": 8 + }, + { + "id": 2091, + "nodePlanId": 50304, + "nodeId": 2310303, + "weight": 1 + }, + { + "id": 2092, + "nodePlanId": 50304, + "nodeId": 2310403, + "weight": 1 + }, + { + "id": 2093, + "nodePlanId": 50304, + "nodeId": 2310503, + "weight": 1 + }, + { + "id": 2094, + "nodePlanId": 50304, + "nodeId": 2310603, + "weight": 1 + }, + { + "id": 2095, + "nodePlanId": 50305, + "nodeId": 5310103, + "weight": 1 + }, + { + "id": 2096, + "nodePlanId": 50306, + "nodeId": 1320103, + "weight": 1 + }, + { + "id": 2097, + "nodePlanId": 50306, + "nodeId": 1320203, + "weight": 1 + }, + { + "id": 2098, + "nodePlanId": 50306, + "nodeId": 1320303, + "weight": 1 + }, + { + "id": 2099, + "nodePlanId": 50306, + "nodeId": 1320403, + "weight": 1 + }, + { + "id": 2100, + "nodePlanId": 50306, + "nodeId": 1320503, + "weight": 1 + }, + { + "id": 2101, + "nodePlanId": 50306, + "nodeId": 1320603, + "weight": 1 + }, + { + "id": 2102, + "nodePlanId": 50306, + "nodeId": 1320703, + "weight": 1 + }, + { + "id": 2103, + "nodePlanId": 50306, + "nodeId": 1320803, + "weight": 1 + }, + { + "id": 2104, + "nodePlanId": 50306, + "nodeId": 2320103, + "weight": 2 + }, + { + "id": 2105, + "nodePlanId": 50306, + "nodeId": 2320203, + "weight": 2 + }, + { + "id": 2106, + "nodePlanId": 50306, + "nodeId": 2320303, + "weight": 1 + }, + { + "id": 2107, + "nodePlanId": 50306, + "nodeId": 2320403, + "weight": 1 + }, + { + "id": 2108, + "nodePlanId": 50306, + "nodeId": 2320503, + "weight": 1 + }, + { + "id": 2109, + "nodePlanId": 50306, + "nodeId": 2320603, + "weight": 1 + }, + { + "id": 2110, + "nodePlanId": 50306, + "nodeId": 4310103, + "weight": 3 + }, + { + "id": 2111, + "nodePlanId": 50306, + "nodeId": 6310103, + "weight": 3 + }, + { + "id": 2112, + "nodePlanId": 50307, + "nodeId": 1320103, + "weight": 1 + }, + { + "id": 2113, + "nodePlanId": 50307, + "nodeId": 1320203, + "weight": 1 + }, + { + "id": 2114, + "nodePlanId": 50307, + "nodeId": 1320303, + "weight": 1 + }, + { + "id": 2115, + "nodePlanId": 50307, + "nodeId": 1320403, + "weight": 1 + }, + { + "id": 2116, + "nodePlanId": 50307, + "nodeId": 1320503, + "weight": 1 + }, + { + "id": 2117, + "nodePlanId": 50307, + "nodeId": 1320603, + "weight": 1 + }, + { + "id": 2118, + "nodePlanId": 50307, + "nodeId": 1320703, + "weight": 1 + }, + { + "id": 2119, + "nodePlanId": 50307, + "nodeId": 1320803, + "weight": 1 + }, + { + "id": 2120, + "nodePlanId": 50307, + "nodeId": 2320103, + "weight": 1 + }, + { + "id": 2121, + "nodePlanId": 50307, + "nodeId": 2320203, + "weight": 1 + }, + { + "id": 2122, + "nodePlanId": 50307, + "nodeId": 2320303, + "weight": 2 + }, + { + "id": 2123, + "nodePlanId": 50307, + "nodeId": 2320403, + "weight": 2 + }, + { + "id": 2124, + "nodePlanId": 50307, + "nodeId": 2320503, + "weight": 1 + }, + { + "id": 2125, + "nodePlanId": 50307, + "nodeId": 2320603, + "weight": 1 + }, + { + "id": 2126, + "nodePlanId": 50307, + "nodeId": 5310103, + "weight": 3 + }, + { + "id": 2127, + "nodePlanId": 50308, + "nodeId": 1320103, + "weight": 1 + }, + { + "id": 2128, + "nodePlanId": 50308, + "nodeId": 1320203, + "weight": 1 + }, + { + "id": 2129, + "nodePlanId": 50308, + "nodeId": 1320303, + "weight": 1 + }, + { + "id": 2130, + "nodePlanId": 50308, + "nodeId": 1320403, + "weight": 1 + }, + { + "id": 2131, + "nodePlanId": 50308, + "nodeId": 1320503, + "weight": 1 + }, + { + "id": 2132, + "nodePlanId": 50308, + "nodeId": 1320603, + "weight": 1 + }, + { + "id": 2133, + "nodePlanId": 50308, + "nodeId": 1320703, + "weight": 1 + }, + { + "id": 2134, + "nodePlanId": 50308, + "nodeId": 1320803, + "weight": 1 + }, + { + "id": 2135, + "nodePlanId": 50308, + "nodeId": 2320103, + "weight": 1 + }, + { + "id": 2136, + "nodePlanId": 50308, + "nodeId": 2320203, + "weight": 1 + }, + { + "id": 2137, + "nodePlanId": 50308, + "nodeId": 2320303, + "weight": 1 + }, + { + "id": 2138, + "nodePlanId": 50308, + "nodeId": 2320403, + "weight": 1 + }, + { + "id": 2139, + "nodePlanId": 50308, + "nodeId": 2320503, + "weight": 2 + }, + { + "id": 2140, + "nodePlanId": 50308, + "nodeId": 2320603, + "weight": 2 + }, + { + "id": 2141, + "nodePlanId": 50308, + "nodeId": 5310103, + "weight": 3 + }, + { + "id": 2142, + "nodePlanId": 50308, + "nodeId": 6310103, + "weight": 3 + }, + { + "id": 2143, + "nodePlanId": 50309, + "nodeId": 3310103, + "weight": 1 + }, + { + "id": 2144, + "nodePlanId": 50310, + "nodeId": 1320103, + "weight": 1 + }, + { + "id": 2145, + "nodePlanId": 50310, + "nodeId": 1320203, + "weight": 1 + }, + { + "id": 2146, + "nodePlanId": 50310, + "nodeId": 1320303, + "weight": 1 + }, + { + "id": 2147, + "nodePlanId": 50310, + "nodeId": 1320403, + "weight": 1 + }, + { + "id": 2148, + "nodePlanId": 50310, + "nodeId": 1320503, + "weight": 1 + }, + { + "id": 2149, + "nodePlanId": 50310, + "nodeId": 1320603, + "weight": 1 + }, + { + "id": 2150, + "nodePlanId": 50310, + "nodeId": 1320703, + "weight": 1 + }, + { + "id": 2151, + "nodePlanId": 50310, + "nodeId": 1320803, + "weight": 1 + }, + { + "id": 2152, + "nodePlanId": 50310, + "nodeId": 2320103, + "weight": 1 + }, + { + "id": 2153, + "nodePlanId": 50310, + "nodeId": 2320203, + "weight": 1 + }, + { + "id": 2154, + "nodePlanId": 50310, + "nodeId": 2320303, + "weight": 1 + }, + { + "id": 2155, + "nodePlanId": 50310, + "nodeId": 2320403, + "weight": 1 + }, + { + "id": 2156, + "nodePlanId": 50310, + "nodeId": 2320503, + "weight": 2 + }, + { + "id": 2157, + "nodePlanId": 50310, + "nodeId": 2320603, + "weight": 2 + }, + { + "id": 2158, + "nodePlanId": 50310, + "nodeId": 5310103, + "weight": 3 + }, + { + "id": 2159, + "nodePlanId": 50310, + "nodeId": 6310103, + "weight": 3 + }, + { + "id": 2160, + "nodePlanId": 50311, + "nodeId": 1320103, + "weight": 1 + }, + { + "id": 2161, + "nodePlanId": 50311, + "nodeId": 1320203, + "weight": 1 + }, + { + "id": 2162, + "nodePlanId": 50311, + "nodeId": 1320303, + "weight": 1 + }, + { + "id": 2163, + "nodePlanId": 50311, + "nodeId": 1320403, + "weight": 1 + }, + { + "id": 2164, + "nodePlanId": 50311, + "nodeId": 1320503, + "weight": 1 + }, + { + "id": 2165, + "nodePlanId": 50311, + "nodeId": 1320603, + "weight": 1 + }, + { + "id": 2166, + "nodePlanId": 50311, + "nodeId": 1320703, + "weight": 1 + }, + { + "id": 2167, + "nodePlanId": 50311, + "nodeId": 1320803, + "weight": 1 + }, + { + "id": 2168, + "nodePlanId": 50311, + "nodeId": 2320103, + "weight": 1 + }, + { + "id": 2169, + "nodePlanId": 50311, + "nodeId": 2320203, + "weight": 1 + }, + { + "id": 2170, + "nodePlanId": 50311, + "nodeId": 2320303, + "weight": 1 + }, + { + "id": 2171, + "nodePlanId": 50311, + "nodeId": 2320403, + "weight": 1 + }, + { + "id": 2172, + "nodePlanId": 50311, + "nodeId": 2320503, + "weight": 2 + }, + { + "id": 2173, + "nodePlanId": 50311, + "nodeId": 2320603, + "weight": 2 + }, + { + "id": 2174, + "nodePlanId": 50311, + "nodeId": 4310103, + "weight": 2 + }, + { + "id": 2175, + "nodePlanId": 50311, + "nodeId": 6310103, + "weight": 2 + }, + { + "id": 2176, + "nodePlanId": 50311, + "nodeId": 6310103, + "weight": 2 + }, + { + "id": 2177, + "nodePlanId": 50312, + "nodeId": 1330103, + "weight": 1 + }, + { + "id": 2178, + "nodePlanId": 50312, + "nodeId": 1330203, + "weight": 1 + }, + { + "id": 2179, + "nodePlanId": 50312, + "nodeId": 1330303, + "weight": 1 + }, + { + "id": 2180, + "nodePlanId": 50312, + "nodeId": 1330403, + "weight": 1 + }, + { + "id": 2181, + "nodePlanId": 50312, + "nodeId": 1330503, + "weight": 1 + }, + { + "id": 2182, + "nodePlanId": 50312, + "nodeId": 2330103, + "weight": 1.5 + }, + { + "id": 2183, + "nodePlanId": 50312, + "nodeId": 2330203, + "weight": 1.5 + }, + { + "id": 2184, + "nodePlanId": 50312, + "nodeId": 2330303, + "weight": 1 + }, + { + "id": 2185, + "nodePlanId": 50312, + "nodeId": 2330403, + "weight": 1 + }, + { + "id": 2186, + "nodePlanId": 50312, + "nodeId": 2330503, + "weight": 1 + }, + { + "id": 2187, + "nodePlanId": 50312, + "nodeId": 2330603, + "weight": 1 + }, + { + "id": 2188, + "nodePlanId": 50313, + "nodeId": 1330603, + "weight": 1 + }, + { + "id": 2189, + "nodePlanId": 50313, + "nodeId": 1330703, + "weight": 1 + }, + { + "id": 2190, + "nodePlanId": 50313, + "nodeId": 1330803, + "weight": 1 + }, + { + "id": 2191, + "nodePlanId": 50313, + "nodeId": 2330103, + "weight": 1 + }, + { + "id": 2192, + "nodePlanId": 50313, + "nodeId": 2330203, + "weight": 1 + }, + { + "id": 2193, + "nodePlanId": 50313, + "nodeId": 2330303, + "weight": 2 + }, + { + "id": 2194, + "nodePlanId": 50313, + "nodeId": 2330403, + "weight": 2 + }, + { + "id": 2195, + "nodePlanId": 50313, + "nodeId": 2330503, + "weight": 1 + }, + { + "id": 2196, + "nodePlanId": 50313, + "nodeId": 2330603, + "weight": 1 + }, + { + "id": 2197, + "nodePlanId": 50313, + "nodeId": 5310103, + "weight": 3 + }, + { + "id": 2198, + "nodePlanId": 50313, + "nodeId": 6310103, + "weight": 2 + }, + { + "id": 2199, + "nodePlanId": 50314, + "nodeId": 4310103, + "weight": 1 + }, + { + "id": 2200, + "nodePlanId": 50315, + "nodeId": 7310103, + "weight": 1 + }, + { + "id": 2201, + "nodePlanId": 50401, + "nodeId": 1310104, + "weight": 1 + }, + { + "id": 2202, + "nodePlanId": 50401, + "nodeId": 1310204, + "weight": 1 + }, + { + "id": 2203, + "nodePlanId": 50401, + "nodeId": 1310304, + "weight": 1 + }, + { + "id": 2204, + "nodePlanId": 50401, + "nodeId": 1310404, + "weight": 1 + }, + { + "id": 2205, + "nodePlanId": 50401, + "nodeId": 1310504, + "weight": 1 + }, + { + "id": 2206, + "nodePlanId": 50401, + "nodeId": 1310604, + "weight": 1 + }, + { + "id": 2207, + "nodePlanId": 50401, + "nodeId": 1310704, + "weight": 1 + }, + { + "id": 2208, + "nodePlanId": 50401, + "nodeId": 1310804, + "weight": 1 + }, + { + "id": 2209, + "nodePlanId": 50402, + "nodeId": 1310104, + "weight": 1 + }, + { + "id": 2210, + "nodePlanId": 50402, + "nodeId": 1310204, + "weight": 1 + }, + { + "id": 2211, + "nodePlanId": 50402, + "nodeId": 1310304, + "weight": 1 + }, + { + "id": 2212, + "nodePlanId": 50402, + "nodeId": 1310404, + "weight": 1 + }, + { + "id": 2213, + "nodePlanId": 50402, + "nodeId": 1310504, + "weight": 1 + }, + { + "id": 2214, + "nodePlanId": 50402, + "nodeId": 1310604, + "weight": 1 + }, + { + "id": 2215, + "nodePlanId": 50402, + "nodeId": 1310704, + "weight": 1 + }, + { + "id": 2216, + "nodePlanId": 50402, + "nodeId": 1310804, + "weight": 1 + }, + { + "id": 2217, + "nodePlanId": 50403, + "nodeId": 1310104, + "weight": 1 + }, + { + "id": 2218, + "nodePlanId": 50403, + "nodeId": 1310204, + "weight": 1 + }, + { + "id": 2219, + "nodePlanId": 50403, + "nodeId": 1310304, + "weight": 1 + }, + { + "id": 2220, + "nodePlanId": 50403, + "nodeId": 1310404, + "weight": 1 + }, + { + "id": 2221, + "nodePlanId": 50403, + "nodeId": 1310504, + "weight": 1 + }, + { + "id": 2222, + "nodePlanId": 50403, + "nodeId": 1310604, + "weight": 1 + }, + { + "id": 2223, + "nodePlanId": 50403, + "nodeId": 1310704, + "weight": 1 + }, + { + "id": 2224, + "nodePlanId": 50403, + "nodeId": 1310804, + "weight": 1 + }, + { + "id": 2225, + "nodePlanId": 50403, + "nodeId": 2310104, + "weight": 4 + }, + { + "id": 2226, + "nodePlanId": 50403, + "nodeId": 2310204, + "weight": 4 + }, + { + "id": 2227, + "nodePlanId": 50403, + "nodeId": 6310104, + "weight": 8 + }, + { + "id": 2228, + "nodePlanId": 50404, + "nodeId": 2310304, + "weight": 1 + }, + { + "id": 2229, + "nodePlanId": 50404, + "nodeId": 2310404, + "weight": 1 + }, + { + "id": 2230, + "nodePlanId": 50404, + "nodeId": 2310504, + "weight": 1 + }, + { + "id": 2231, + "nodePlanId": 50404, + "nodeId": 2310604, + "weight": 1 + }, + { + "id": 2232, + "nodePlanId": 50405, + "nodeId": 5310104, + "weight": 1 + }, + { + "id": 2233, + "nodePlanId": 50406, + "nodeId": 1320104, + "weight": 1 + }, + { + "id": 2234, + "nodePlanId": 50406, + "nodeId": 1320204, + "weight": 1 + }, + { + "id": 2235, + "nodePlanId": 50406, + "nodeId": 1320304, + "weight": 1 + }, + { + "id": 2236, + "nodePlanId": 50406, + "nodeId": 1320404, + "weight": 1 + }, + { + "id": 2237, + "nodePlanId": 50406, + "nodeId": 1320504, + "weight": 1 + }, + { + "id": 2238, + "nodePlanId": 50406, + "nodeId": 1320604, + "weight": 1 + }, + { + "id": 2239, + "nodePlanId": 50406, + "nodeId": 1320704, + "weight": 1 + }, + { + "id": 2240, + "nodePlanId": 50406, + "nodeId": 1320804, + "weight": 1 + }, + { + "id": 2241, + "nodePlanId": 50406, + "nodeId": 2320104, + "weight": 2 + }, + { + "id": 2242, + "nodePlanId": 50406, + "nodeId": 2320204, + "weight": 2 + }, + { + "id": 2243, + "nodePlanId": 50406, + "nodeId": 2320304, + "weight": 1 + }, + { + "id": 2244, + "nodePlanId": 50406, + "nodeId": 2320404, + "weight": 1 + }, + { + "id": 2245, + "nodePlanId": 50406, + "nodeId": 2320504, + "weight": 1 + }, + { + "id": 2246, + "nodePlanId": 50406, + "nodeId": 2320604, + "weight": 1 + }, + { + "id": 2247, + "nodePlanId": 50406, + "nodeId": 4310104, + "weight": 3 + }, + { + "id": 2248, + "nodePlanId": 50406, + "nodeId": 6310104, + "weight": 3 + }, + { + "id": 2249, + "nodePlanId": 50407, + "nodeId": 1320104, + "weight": 1 + }, + { + "id": 2250, + "nodePlanId": 50407, + "nodeId": 1320204, + "weight": 1 + }, + { + "id": 2251, + "nodePlanId": 50407, + "nodeId": 1320304, + "weight": 1 + }, + { + "id": 2252, + "nodePlanId": 50407, + "nodeId": 1320404, + "weight": 1 + }, + { + "id": 2253, + "nodePlanId": 50407, + "nodeId": 1320504, + "weight": 1 + }, + { + "id": 2254, + "nodePlanId": 50407, + "nodeId": 1320604, + "weight": 1 + }, + { + "id": 2255, + "nodePlanId": 50407, + "nodeId": 1320704, + "weight": 1 + }, + { + "id": 2256, + "nodePlanId": 50407, + "nodeId": 1320804, + "weight": 1 + }, + { + "id": 2257, + "nodePlanId": 50407, + "nodeId": 2320104, + "weight": 1 + }, + { + "id": 2258, + "nodePlanId": 50407, + "nodeId": 2320204, + "weight": 1 + }, + { + "id": 2259, + "nodePlanId": 50407, + "nodeId": 2320304, + "weight": 2 + }, + { + "id": 2260, + "nodePlanId": 50407, + "nodeId": 2320404, + "weight": 2 + }, + { + "id": 2261, + "nodePlanId": 50407, + "nodeId": 2320504, + "weight": 1 + }, + { + "id": 2262, + "nodePlanId": 50407, + "nodeId": 2320604, + "weight": 1 + }, + { + "id": 2263, + "nodePlanId": 50407, + "nodeId": 5310104, + "weight": 3 + }, + { + "id": 2264, + "nodePlanId": 50408, + "nodeId": 1320104, + "weight": 1 + }, + { + "id": 2265, + "nodePlanId": 50408, + "nodeId": 1320204, + "weight": 1 + }, + { + "id": 2266, + "nodePlanId": 50408, + "nodeId": 1320304, + "weight": 1 + }, + { + "id": 2267, + "nodePlanId": 50408, + "nodeId": 1320404, + "weight": 1 + }, + { + "id": 2268, + "nodePlanId": 50408, + "nodeId": 1320504, + "weight": 1 + }, + { + "id": 2269, + "nodePlanId": 50408, + "nodeId": 1320604, + "weight": 1 + }, + { + "id": 2270, + "nodePlanId": 50408, + "nodeId": 1320704, + "weight": 1 + }, + { + "id": 2271, + "nodePlanId": 50408, + "nodeId": 1320804, + "weight": 1 + }, + { + "id": 2272, + "nodePlanId": 50408, + "nodeId": 2320104, + "weight": 1 + }, + { + "id": 2273, + "nodePlanId": 50408, + "nodeId": 2320204, + "weight": 1 + }, + { + "id": 2274, + "nodePlanId": 50408, + "nodeId": 2320304, + "weight": 1 + }, + { + "id": 2275, + "nodePlanId": 50408, + "nodeId": 2320404, + "weight": 1 + }, + { + "id": 2276, + "nodePlanId": 50408, + "nodeId": 2320504, + "weight": 2 + }, + { + "id": 2277, + "nodePlanId": 50408, + "nodeId": 2320604, + "weight": 2 + }, + { + "id": 2278, + "nodePlanId": 50408, + "nodeId": 5310104, + "weight": 3 + }, + { + "id": 2279, + "nodePlanId": 50408, + "nodeId": 6310104, + "weight": 3 + }, + { + "id": 2280, + "nodePlanId": 50409, + "nodeId": 3310104, + "weight": 1 + }, + { + "id": 2281, + "nodePlanId": 50410, + "nodeId": 1320104, + "weight": 1 + }, + { + "id": 2282, + "nodePlanId": 50410, + "nodeId": 1320204, + "weight": 1 + }, + { + "id": 2283, + "nodePlanId": 50410, + "nodeId": 1320304, + "weight": 1 + }, + { + "id": 2284, + "nodePlanId": 50410, + "nodeId": 1320404, + "weight": 1 + }, + { + "id": 2285, + "nodePlanId": 50410, + "nodeId": 1320504, + "weight": 1 + }, + { + "id": 2286, + "nodePlanId": 50410, + "nodeId": 1320604, + "weight": 1 + }, + { + "id": 2287, + "nodePlanId": 50410, + "nodeId": 1320704, + "weight": 1 + }, + { + "id": 2288, + "nodePlanId": 50410, + "nodeId": 1320804, + "weight": 1 + }, + { + "id": 2289, + "nodePlanId": 50410, + "nodeId": 2320104, + "weight": 1 + }, + { + "id": 2290, + "nodePlanId": 50410, + "nodeId": 2320204, + "weight": 1 + }, + { + "id": 2291, + "nodePlanId": 50410, + "nodeId": 2320304, + "weight": 1 + }, + { + "id": 2292, + "nodePlanId": 50410, + "nodeId": 2320404, + "weight": 1 + }, + { + "id": 2293, + "nodePlanId": 50410, + "nodeId": 2320504, + "weight": 2 + }, + { + "id": 2294, + "nodePlanId": 50410, + "nodeId": 2320604, + "weight": 2 + }, + { + "id": 2295, + "nodePlanId": 50410, + "nodeId": 5310104, + "weight": 3 + }, + { + "id": 2296, + "nodePlanId": 50410, + "nodeId": 6310104, + "weight": 3 + }, + { + "id": 2297, + "nodePlanId": 50411, + "nodeId": 1320104, + "weight": 1 + }, + { + "id": 2298, + "nodePlanId": 50411, + "nodeId": 1320204, + "weight": 1 + }, + { + "id": 2299, + "nodePlanId": 50411, + "nodeId": 1320304, + "weight": 1 + }, + { + "id": 2300, + "nodePlanId": 50411, + "nodeId": 1320404, + "weight": 1 + }, + { + "id": 2301, + "nodePlanId": 50411, + "nodeId": 1320504, + "weight": 1 + }, + { + "id": 2302, + "nodePlanId": 50411, + "nodeId": 1320604, + "weight": 1 + }, + { + "id": 2303, + "nodePlanId": 50411, + "nodeId": 1320704, + "weight": 1 + }, + { + "id": 2304, + "nodePlanId": 50411, + "nodeId": 1320804, + "weight": 1 + }, + { + "id": 2305, + "nodePlanId": 50411, + "nodeId": 2320104, + "weight": 1 + }, + { + "id": 2306, + "nodePlanId": 50411, + "nodeId": 2320204, + "weight": 1 + }, + { + "id": 2307, + "nodePlanId": 50411, + "nodeId": 2320304, + "weight": 1 + }, + { + "id": 2308, + "nodePlanId": 50411, + "nodeId": 2320404, + "weight": 1 + }, + { + "id": 2309, + "nodePlanId": 50411, + "nodeId": 2320504, + "weight": 2 + }, + { + "id": 2310, + "nodePlanId": 50411, + "nodeId": 2320604, + "weight": 2 + }, + { + "id": 2311, + "nodePlanId": 50411, + "nodeId": 4310104, + "weight": 2 + }, + { + "id": 2312, + "nodePlanId": 50411, + "nodeId": 6310104, + "weight": 2 + }, + { + "id": 2313, + "nodePlanId": 50411, + "nodeId": 6310104, + "weight": 2 + }, + { + "id": 2314, + "nodePlanId": 50412, + "nodeId": 1330104, + "weight": 1 + }, + { + "id": 2315, + "nodePlanId": 50412, + "nodeId": 1330204, + "weight": 1 + }, + { + "id": 2316, + "nodePlanId": 50412, + "nodeId": 1330304, + "weight": 1 + }, + { + "id": 2317, + "nodePlanId": 50412, + "nodeId": 1330404, + "weight": 1 + }, + { + "id": 2318, + "nodePlanId": 50412, + "nodeId": 1330504, + "weight": 1 + }, + { + "id": 2319, + "nodePlanId": 50412, + "nodeId": 2330104, + "weight": 1.5 + }, + { + "id": 2320, + "nodePlanId": 50412, + "nodeId": 2330204, + "weight": 1.5 + }, + { + "id": 2321, + "nodePlanId": 50412, + "nodeId": 2330304, + "weight": 1 + }, + { + "id": 2322, + "nodePlanId": 50412, + "nodeId": 2330404, + "weight": 1 + }, + { + "id": 2323, + "nodePlanId": 50412, + "nodeId": 2330504, + "weight": 1 + }, + { + "id": 2324, + "nodePlanId": 50412, + "nodeId": 2330604, + "weight": 1 + }, + { + "id": 2325, + "nodePlanId": 50413, + "nodeId": 1330604, + "weight": 1 + }, + { + "id": 2326, + "nodePlanId": 50413, + "nodeId": 1330704, + "weight": 1 + }, + { + "id": 2327, + "nodePlanId": 50413, + "nodeId": 1330804, + "weight": 1 + }, + { + "id": 2328, + "nodePlanId": 50413, + "nodeId": 2330104, + "weight": 1 + }, + { + "id": 2329, + "nodePlanId": 50413, + "nodeId": 2330204, + "weight": 1 + }, + { + "id": 2330, + "nodePlanId": 50413, + "nodeId": 2330304, + "weight": 2 + }, + { + "id": 2331, + "nodePlanId": 50413, + "nodeId": 2330404, + "weight": 2 + }, + { + "id": 2332, + "nodePlanId": 50413, + "nodeId": 2330504, + "weight": 1 + }, + { + "id": 2333, + "nodePlanId": 50413, + "nodeId": 2330604, + "weight": 1 + }, + { + "id": 2334, + "nodePlanId": 50413, + "nodeId": 5310104, + "weight": 3 + }, + { + "id": 2335, + "nodePlanId": 50413, + "nodeId": 6310104, + "weight": 2 + }, + { + "id": 2336, + "nodePlanId": 50414, + "nodeId": 4310104, + "weight": 1 + }, + { + "id": 2337, + "nodePlanId": 50415, + "nodeId": 7310104, + "weight": 1 + }, + { + "id": 2338, + "nodePlanId": 50501, + "nodeId": 1310105, + "weight": 1 + }, + { + "id": 2339, + "nodePlanId": 50501, + "nodeId": 1310205, + "weight": 1 + }, + { + "id": 2340, + "nodePlanId": 50501, + "nodeId": 1310305, + "weight": 1 + }, + { + "id": 2341, + "nodePlanId": 50501, + "nodeId": 1310405, + "weight": 1 + }, + { + "id": 2342, + "nodePlanId": 50501, + "nodeId": 1310505, + "weight": 1 + }, + { + "id": 2343, + "nodePlanId": 50501, + "nodeId": 1310605, + "weight": 1 + }, + { + "id": 2344, + "nodePlanId": 50501, + "nodeId": 1310705, + "weight": 1 + }, + { + "id": 2345, + "nodePlanId": 50501, + "nodeId": 1310805, + "weight": 1 + }, + { + "id": 2346, + "nodePlanId": 50502, + "nodeId": 1310105, + "weight": 1 + }, + { + "id": 2347, + "nodePlanId": 50502, + "nodeId": 1310205, + "weight": 1 + }, + { + "id": 2348, + "nodePlanId": 50502, + "nodeId": 1310305, + "weight": 1 + }, + { + "id": 2349, + "nodePlanId": 50502, + "nodeId": 1310405, + "weight": 1 + }, + { + "id": 2350, + "nodePlanId": 50502, + "nodeId": 1310505, + "weight": 1 + }, + { + "id": 2351, + "nodePlanId": 50502, + "nodeId": 1310605, + "weight": 1 + }, + { + "id": 2352, + "nodePlanId": 50502, + "nodeId": 1310705, + "weight": 1 + }, + { + "id": 2353, + "nodePlanId": 50502, + "nodeId": 1310805, + "weight": 1 + }, + { + "id": 2354, + "nodePlanId": 50503, + "nodeId": 1310105, + "weight": 1 + }, + { + "id": 2355, + "nodePlanId": 50503, + "nodeId": 1310205, + "weight": 1 + }, + { + "id": 2356, + "nodePlanId": 50503, + "nodeId": 1310305, + "weight": 1 + }, + { + "id": 2357, + "nodePlanId": 50503, + "nodeId": 1310405, + "weight": 1 + }, + { + "id": 2358, + "nodePlanId": 50503, + "nodeId": 1310505, + "weight": 1 + }, + { + "id": 2359, + "nodePlanId": 50503, + "nodeId": 1310605, + "weight": 1 + }, + { + "id": 2360, + "nodePlanId": 50503, + "nodeId": 1310705, + "weight": 1 + }, + { + "id": 2361, + "nodePlanId": 50503, + "nodeId": 1310805, + "weight": 1 + }, + { + "id": 2362, + "nodePlanId": 50503, + "nodeId": 2310105, + "weight": 4 + }, + { + "id": 2363, + "nodePlanId": 50503, + "nodeId": 2310205, + "weight": 4 + }, + { + "id": 2364, + "nodePlanId": 50503, + "nodeId": 6310105, + "weight": 8 + }, + { + "id": 2365, + "nodePlanId": 50504, + "nodeId": 2310305, + "weight": 1 + }, + { + "id": 2366, + "nodePlanId": 50504, + "nodeId": 2310405, + "weight": 1 + }, + { + "id": 2367, + "nodePlanId": 50504, + "nodeId": 2310505, + "weight": 1 + }, + { + "id": 2368, + "nodePlanId": 50504, + "nodeId": 2310605, + "weight": 1 + }, + { + "id": 2369, + "nodePlanId": 50505, + "nodeId": 5310105, + "weight": 1 + }, + { + "id": 2370, + "nodePlanId": 50506, + "nodeId": 1320105, + "weight": 1 + }, + { + "id": 2371, + "nodePlanId": 50506, + "nodeId": 1320205, + "weight": 1 + }, + { + "id": 2372, + "nodePlanId": 50506, + "nodeId": 1320305, + "weight": 1 + }, + { + "id": 2373, + "nodePlanId": 50506, + "nodeId": 1320405, + "weight": 1 + }, + { + "id": 2374, + "nodePlanId": 50506, + "nodeId": 1320505, + "weight": 1 + }, + { + "id": 2375, + "nodePlanId": 50506, + "nodeId": 1320605, + "weight": 1 + }, + { + "id": 2376, + "nodePlanId": 50506, + "nodeId": 1320705, + "weight": 1 + }, + { + "id": 2377, + "nodePlanId": 50506, + "nodeId": 1320805, + "weight": 1 + }, + { + "id": 2378, + "nodePlanId": 50506, + "nodeId": 2320105, + "weight": 2 + }, + { + "id": 2379, + "nodePlanId": 50506, + "nodeId": 2320205, + "weight": 2 + }, + { + "id": 2380, + "nodePlanId": 50506, + "nodeId": 2320305, + "weight": 1 + }, + { + "id": 2381, + "nodePlanId": 50506, + "nodeId": 2320405, + "weight": 1 + }, + { + "id": 2382, + "nodePlanId": 50506, + "nodeId": 2320505, + "weight": 1 + }, + { + "id": 2383, + "nodePlanId": 50506, + "nodeId": 2320605, + "weight": 1 + }, + { + "id": 2384, + "nodePlanId": 50506, + "nodeId": 4310105, + "weight": 3 + }, + { + "id": 2385, + "nodePlanId": 50506, + "nodeId": 6310105, + "weight": 3 + }, + { + "id": 2386, + "nodePlanId": 50507, + "nodeId": 1320105, + "weight": 1 + }, + { + "id": 2387, + "nodePlanId": 50507, + "nodeId": 1320205, + "weight": 1 + }, + { + "id": 2388, + "nodePlanId": 50507, + "nodeId": 1320305, + "weight": 1 + }, + { + "id": 2389, + "nodePlanId": 50507, + "nodeId": 1320405, + "weight": 1 + }, + { + "id": 2390, + "nodePlanId": 50507, + "nodeId": 1320505, + "weight": 1 + }, + { + "id": 2391, + "nodePlanId": 50507, + "nodeId": 1320605, + "weight": 1 + }, + { + "id": 2392, + "nodePlanId": 50507, + "nodeId": 1320705, + "weight": 1 + }, + { + "id": 2393, + "nodePlanId": 50507, + "nodeId": 1320805, + "weight": 1 + }, + { + "id": 2394, + "nodePlanId": 50507, + "nodeId": 2320105, + "weight": 1 + }, + { + "id": 2395, + "nodePlanId": 50507, + "nodeId": 2320205, + "weight": 1 + }, + { + "id": 2396, + "nodePlanId": 50507, + "nodeId": 2320305, + "weight": 2 + }, + { + "id": 2397, + "nodePlanId": 50507, + "nodeId": 2320405, + "weight": 2 + }, + { + "id": 2398, + "nodePlanId": 50507, + "nodeId": 2320505, + "weight": 1 + }, + { + "id": 2399, + "nodePlanId": 50507, + "nodeId": 2320605, + "weight": 1 + }, + { + "id": 2400, + "nodePlanId": 50507, + "nodeId": 5310105, + "weight": 3 + }, + { + "id": 2401, + "nodePlanId": 50508, + "nodeId": 1320105, + "weight": 1 + }, + { + "id": 2402, + "nodePlanId": 50508, + "nodeId": 1320205, + "weight": 1 + }, + { + "id": 2403, + "nodePlanId": 50508, + "nodeId": 1320305, + "weight": 1 + }, + { + "id": 2404, + "nodePlanId": 50508, + "nodeId": 1320405, + "weight": 1 + }, + { + "id": 2405, + "nodePlanId": 50508, + "nodeId": 1320505, + "weight": 1 + }, + { + "id": 2406, + "nodePlanId": 50508, + "nodeId": 1320605, + "weight": 1 + }, + { + "id": 2407, + "nodePlanId": 50508, + "nodeId": 1320705, + "weight": 1 + }, + { + "id": 2408, + "nodePlanId": 50508, + "nodeId": 1320805, + "weight": 1 + }, + { + "id": 2409, + "nodePlanId": 50508, + "nodeId": 2320105, + "weight": 1 + }, + { + "id": 2410, + "nodePlanId": 50508, + "nodeId": 2320205, + "weight": 1 + }, + { + "id": 2411, + "nodePlanId": 50508, + "nodeId": 2320305, + "weight": 1 + }, + { + "id": 2412, + "nodePlanId": 50508, + "nodeId": 2320405, + "weight": 1 + }, + { + "id": 2413, + "nodePlanId": 50508, + "nodeId": 2320505, + "weight": 2 + }, + { + "id": 2414, + "nodePlanId": 50508, + "nodeId": 2320605, + "weight": 2 + }, + { + "id": 2415, + "nodePlanId": 50508, + "nodeId": 5310105, + "weight": 3 + }, + { + "id": 2416, + "nodePlanId": 50508, + "nodeId": 6310105, + "weight": 3 + }, + { + "id": 2417, + "nodePlanId": 50509, + "nodeId": 3310105, + "weight": 1 + }, + { + "id": 2418, + "nodePlanId": 50510, + "nodeId": 1320105, + "weight": 1 + }, + { + "id": 2419, + "nodePlanId": 50510, + "nodeId": 1320205, + "weight": 1 + }, + { + "id": 2420, + "nodePlanId": 50510, + "nodeId": 1320305, + "weight": 1 + }, + { + "id": 2421, + "nodePlanId": 50510, + "nodeId": 1320405, + "weight": 1 + }, + { + "id": 2422, + "nodePlanId": 50510, + "nodeId": 1320505, + "weight": 1 + }, + { + "id": 2423, + "nodePlanId": 50510, + "nodeId": 1320605, + "weight": 1 + }, + { + "id": 2424, + "nodePlanId": 50510, + "nodeId": 1320705, + "weight": 1 + }, + { + "id": 2425, + "nodePlanId": 50510, + "nodeId": 1320805, + "weight": 1 + }, + { + "id": 2426, + "nodePlanId": 50510, + "nodeId": 2320105, + "weight": 1 + }, + { + "id": 2427, + "nodePlanId": 50510, + "nodeId": 2320205, + "weight": 1 + }, + { + "id": 2428, + "nodePlanId": 50510, + "nodeId": 2320305, + "weight": 1 + }, + { + "id": 2429, + "nodePlanId": 50510, + "nodeId": 2320405, + "weight": 1 + }, + { + "id": 2430, + "nodePlanId": 50510, + "nodeId": 2320505, + "weight": 2 + }, + { + "id": 2431, + "nodePlanId": 50510, + "nodeId": 2320605, + "weight": 2 + }, + { + "id": 2432, + "nodePlanId": 50510, + "nodeId": 5310105, + "weight": 3 + }, + { + "id": 2433, + "nodePlanId": 50510, + "nodeId": 6310105, + "weight": 3 + }, + { + "id": 2434, + "nodePlanId": 50511, + "nodeId": 1320105, + "weight": 1 + }, + { + "id": 2435, + "nodePlanId": 50511, + "nodeId": 1320205, + "weight": 1 + }, + { + "id": 2436, + "nodePlanId": 50511, + "nodeId": 1320305, + "weight": 1 + }, + { + "id": 2437, + "nodePlanId": 50511, + "nodeId": 1320405, + "weight": 1 + }, + { + "id": 2438, + "nodePlanId": 50511, + "nodeId": 1320505, + "weight": 1 + }, + { + "id": 2439, + "nodePlanId": 50511, + "nodeId": 1320605, + "weight": 1 + }, + { + "id": 2440, + "nodePlanId": 50511, + "nodeId": 1320705, + "weight": 1 + }, + { + "id": 2441, + "nodePlanId": 50511, + "nodeId": 1320805, + "weight": 1 + }, + { + "id": 2442, + "nodePlanId": 50511, + "nodeId": 2320105, + "weight": 1 + }, + { + "id": 2443, + "nodePlanId": 50511, + "nodeId": 2320205, + "weight": 1 + }, + { + "id": 2444, + "nodePlanId": 50511, + "nodeId": 2320305, + "weight": 1 + }, + { + "id": 2445, + "nodePlanId": 50511, + "nodeId": 2320405, + "weight": 1 + }, + { + "id": 2446, + "nodePlanId": 50511, + "nodeId": 2320505, + "weight": 2 + }, + { + "id": 2447, + "nodePlanId": 50511, + "nodeId": 2320605, + "weight": 2 + }, + { + "id": 2448, + "nodePlanId": 50511, + "nodeId": 4310105, + "weight": 2 + }, + { + "id": 2449, + "nodePlanId": 50511, + "nodeId": 6310105, + "weight": 2 + }, + { + "id": 2450, + "nodePlanId": 50511, + "nodeId": 6310105, + "weight": 2 + }, + { + "id": 2451, + "nodePlanId": 50512, + "nodeId": 1330105, + "weight": 1 + }, + { + "id": 2452, + "nodePlanId": 50512, + "nodeId": 1330205, + "weight": 1 + }, + { + "id": 2453, + "nodePlanId": 50512, + "nodeId": 1330305, + "weight": 1 + }, + { + "id": 2454, + "nodePlanId": 50512, + "nodeId": 1330405, + "weight": 1 + }, + { + "id": 2455, + "nodePlanId": 50512, + "nodeId": 1330505, + "weight": 1 + }, + { + "id": 2456, + "nodePlanId": 50512, + "nodeId": 2330105, + "weight": 1.5 + }, + { + "id": 2457, + "nodePlanId": 50512, + "nodeId": 2330205, + "weight": 1.5 + }, + { + "id": 2458, + "nodePlanId": 50512, + "nodeId": 2330305, + "weight": 1 + }, + { + "id": 2459, + "nodePlanId": 50512, + "nodeId": 2330405, + "weight": 1 + }, + { + "id": 2460, + "nodePlanId": 50512, + "nodeId": 2330505, + "weight": 1 + }, + { + "id": 2461, + "nodePlanId": 50512, + "nodeId": 2330605, + "weight": 1 + }, + { + "id": 2462, + "nodePlanId": 50513, + "nodeId": 1330605, + "weight": 1 + }, + { + "id": 2463, + "nodePlanId": 50513, + "nodeId": 1330705, + "weight": 1 + }, + { + "id": 2464, + "nodePlanId": 50513, + "nodeId": 1330805, + "weight": 1 + }, + { + "id": 2465, + "nodePlanId": 50513, + "nodeId": 2330105, + "weight": 1 + }, + { + "id": 2466, + "nodePlanId": 50513, + "nodeId": 2330205, + "weight": 1 + }, + { + "id": 2467, + "nodePlanId": 50513, + "nodeId": 2330305, + "weight": 2 + }, + { + "id": 2468, + "nodePlanId": 50513, + "nodeId": 2330405, + "weight": 2 + }, + { + "id": 2469, + "nodePlanId": 50513, + "nodeId": 2330505, + "weight": 1 + }, + { + "id": 2470, + "nodePlanId": 50513, + "nodeId": 2330605, + "weight": 1 + }, + { + "id": 2471, + "nodePlanId": 50513, + "nodeId": 5310105, + "weight": 3 + }, + { + "id": 2472, + "nodePlanId": 50513, + "nodeId": 6310105, + "weight": 2 + }, + { + "id": 2473, + "nodePlanId": 50514, + "nodeId": 4310105, + "weight": 1 + }, + { + "id": 2474, + "nodePlanId": 50514, + "nodeId": 6310105, + "weight": 1 + }, + { + "id": 2475, + "nodePlanId": 50514, + "nodeId": 6310105, + "weight": 1 + }, + { + "id": 2476, + "nodePlanId": 50514, + "nodeId": 2330505, + "weight": 1 + }, + { + "id": 2477, + "nodePlanId": 50514, + "nodeId": 2330605, + "weight": 1 + }, + { + "id": 2478, + "nodePlanId": 50515, + "nodeId": 1330105, + "weight": 1 + }, + { + "id": 2479, + "nodePlanId": 50515, + "nodeId": 1330205, + "weight": 1 + }, + { + "id": 2480, + "nodePlanId": 50515, + "nodeId": 1330305, + "weight": 1 + }, + { + "id": 2481, + "nodePlanId": 50515, + "nodeId": 1330405, + "weight": 1 + }, + { + "id": 2482, + "nodePlanId": 50515, + "nodeId": 1330505, + "weight": 1 + }, + { + "id": 2483, + "nodePlanId": 50515, + "nodeId": 1330605, + "weight": 1 + }, + { + "id": 2484, + "nodePlanId": 50515, + "nodeId": 1330705, + "weight": 1 + }, + { + "id": 2485, + "nodePlanId": 50515, + "nodeId": 1330805, + "weight": 1 + }, + { + "id": 2486, + "nodePlanId": 50515, + "nodeId": 6310105, + "weight": 3 + }, + { + "id": 2487, + "nodePlanId": 50515, + "nodeId": 6310105, + "weight": 2 + }, + { + "id": 2488, + "nodePlanId": 50516, + "nodeId": 5310105, + "weight": 1 + }, + { + "id": 2489, + "nodePlanId": 50516, + "nodeId": 5310105, + "weight": 1 + }, + { + "id": 2490, + "nodePlanId": 50516, + "nodeId": 1330105, + "weight": 1 + }, + { + "id": 2491, + "nodePlanId": 50516, + "nodeId": 1330205, + "weight": 1 + }, + { + "id": 2492, + "nodePlanId": 50517, + "nodeId": 2330105, + "weight": 1 + }, + { + "id": 2493, + "nodePlanId": 50517, + "nodeId": 2330205, + "weight": 1 + }, + { + "id": 2494, + "nodePlanId": 50517, + "nodeId": 2330305, + "weight": 1 + }, + { + "id": 2495, + "nodePlanId": 50517, + "nodeId": 2330405, + "weight": 1 + }, + { + "id": 2496, + "nodePlanId": 50517, + "nodeId": 2330505, + "weight": 1 + }, + { + "id": 2497, + "nodePlanId": 50517, + "nodeId": 2330605, + "weight": 1 + }, + { + "id": 2498, + "nodePlanId": 50518, + "nodeId": 5310105, + "weight": 1 + }, + { + "id": 2499, + "nodePlanId": 50518, + "nodeId": 6310105, + "weight": 1 + }, + { + "id": 2500, + "nodePlanId": 50519, + "nodeId": 4310105, + "weight": 1 + }, + { + "id": 2501, + "nodePlanId": 50520, + "nodeId": 7310105, + "weight": 1 + }, + { + "id": 2502, + "nodePlanId": 60101, + "nodeId": 1410101, + "weight": 1 + }, + { + "id": 2503, + "nodePlanId": 60101, + "nodeId": 1410201, + "weight": 1 + }, + { + "id": 2504, + "nodePlanId": 60101, + "nodeId": 1410301, + "weight": 1 + }, + { + "id": 2505, + "nodePlanId": 60101, + "nodeId": 1410401, + "weight": 1 + }, + { + "id": 2506, + "nodePlanId": 60101, + "nodeId": 1410501, + "weight": 1 + }, + { + "id": 2507, + "nodePlanId": 60101, + "nodeId": 1410601, + "weight": 1 + }, + { + "id": 2508, + "nodePlanId": 60101, + "nodeId": 1410701, + "weight": 1 + }, + { + "id": 2509, + "nodePlanId": 60101, + "nodeId": 1410801, + "weight": 1 + }, + { + "id": 2510, + "nodePlanId": 60102, + "nodeId": 1410101, + "weight": 1 + }, + { + "id": 2511, + "nodePlanId": 60102, + "nodeId": 1410201, + "weight": 1 + }, + { + "id": 2512, + "nodePlanId": 60102, + "nodeId": 1410301, + "weight": 1 + }, + { + "id": 2513, + "nodePlanId": 60102, + "nodeId": 1410401, + "weight": 1 + }, + { + "id": 2514, + "nodePlanId": 60102, + "nodeId": 1410501, + "weight": 1 + }, + { + "id": 2515, + "nodePlanId": 60102, + "nodeId": 1410601, + "weight": 1 + }, + { + "id": 2516, + "nodePlanId": 60102, + "nodeId": 1410701, + "weight": 1 + }, + { + "id": 2517, + "nodePlanId": 60102, + "nodeId": 1410801, + "weight": 1 + }, + { + "id": 2518, + "nodePlanId": 60103, + "nodeId": 1410101, + "weight": 1 + }, + { + "id": 2519, + "nodePlanId": 60103, + "nodeId": 1410201, + "weight": 1 + }, + { + "id": 2520, + "nodePlanId": 60103, + "nodeId": 1410301, + "weight": 1 + }, + { + "id": 2521, + "nodePlanId": 60103, + "nodeId": 1410401, + "weight": 1 + }, + { + "id": 2522, + "nodePlanId": 60103, + "nodeId": 1410501, + "weight": 1 + }, + { + "id": 2523, + "nodePlanId": 60103, + "nodeId": 1410601, + "weight": 1 + }, + { + "id": 2524, + "nodePlanId": 60103, + "nodeId": 1410701, + "weight": 1 + }, + { + "id": 2525, + "nodePlanId": 60103, + "nodeId": 1410801, + "weight": 1 + }, + { + "id": 2526, + "nodePlanId": 60103, + "nodeId": 2410101, + "weight": 4 + }, + { + "id": 2527, + "nodePlanId": 60103, + "nodeId": 2410201, + "weight": 4 + }, + { + "id": 2528, + "nodePlanId": 60103, + "nodeId": 6410101, + "weight": 8 + }, + { + "id": 2529, + "nodePlanId": 60104, + "nodeId": 2410301, + "weight": 1 + }, + { + "id": 2530, + "nodePlanId": 60104, + "nodeId": 2410401, + "weight": 1 + }, + { + "id": 2531, + "nodePlanId": 60104, + "nodeId": 2410501, + "weight": 1 + }, + { + "id": 2532, + "nodePlanId": 60104, + "nodeId": 2410601, + "weight": 1 + }, + { + "id": 2533, + "nodePlanId": 60105, + "nodeId": 5410101, + "weight": 1 + }, + { + "id": 2534, + "nodePlanId": 60106, + "nodeId": 1420101, + "weight": 1 + }, + { + "id": 2535, + "nodePlanId": 60106, + "nodeId": 1420201, + "weight": 1 + }, + { + "id": 2536, + "nodePlanId": 60106, + "nodeId": 1420301, + "weight": 1 + }, + { + "id": 2537, + "nodePlanId": 60106, + "nodeId": 1420401, + "weight": 1 + }, + { + "id": 2538, + "nodePlanId": 60106, + "nodeId": 1420501, + "weight": 1 + }, + { + "id": 2539, + "nodePlanId": 60106, + "nodeId": 1420601, + "weight": 1 + }, + { + "id": 2540, + "nodePlanId": 60106, + "nodeId": 1420701, + "weight": 1 + }, + { + "id": 2541, + "nodePlanId": 60106, + "nodeId": 1420801, + "weight": 1 + }, + { + "id": 2542, + "nodePlanId": 60106, + "nodeId": 2420101, + "weight": 2 + }, + { + "id": 2543, + "nodePlanId": 60106, + "nodeId": 2420201, + "weight": 2 + }, + { + "id": 2544, + "nodePlanId": 60106, + "nodeId": 2420301, + "weight": 1 + }, + { + "id": 2545, + "nodePlanId": 60106, + "nodeId": 2420401, + "weight": 1 + }, + { + "id": 2546, + "nodePlanId": 60106, + "nodeId": 2420501, + "weight": 1 + }, + { + "id": 2547, + "nodePlanId": 60106, + "nodeId": 2420601, + "weight": 1 + }, + { + "id": 2548, + "nodePlanId": 60106, + "nodeId": 4410101, + "weight": 3 + }, + { + "id": 2549, + "nodePlanId": 60106, + "nodeId": 6410101, + "weight": 3 + }, + { + "id": 2550, + "nodePlanId": 60107, + "nodeId": 1420101, + "weight": 1 + }, + { + "id": 2551, + "nodePlanId": 60107, + "nodeId": 1420201, + "weight": 1 + }, + { + "id": 2552, + "nodePlanId": 60107, + "nodeId": 1420301, + "weight": 1 + }, + { + "id": 2553, + "nodePlanId": 60107, + "nodeId": 1420401, + "weight": 1 + }, + { + "id": 2554, + "nodePlanId": 60107, + "nodeId": 1420501, + "weight": 1 + }, + { + "id": 2555, + "nodePlanId": 60107, + "nodeId": 1420601, + "weight": 1 + }, + { + "id": 2556, + "nodePlanId": 60107, + "nodeId": 1420701, + "weight": 1 + }, + { + "id": 2557, + "nodePlanId": 60107, + "nodeId": 1420801, + "weight": 1 + }, + { + "id": 2558, + "nodePlanId": 60107, + "nodeId": 2420101, + "weight": 1 + }, + { + "id": 2559, + "nodePlanId": 60107, + "nodeId": 2420201, + "weight": 1 + }, + { + "id": 2560, + "nodePlanId": 60107, + "nodeId": 2420301, + "weight": 2 + }, + { + "id": 2561, + "nodePlanId": 60107, + "nodeId": 2420401, + "weight": 2 + }, + { + "id": 2562, + "nodePlanId": 60107, + "nodeId": 2420501, + "weight": 1 + }, + { + "id": 2563, + "nodePlanId": 60107, + "nodeId": 2420601, + "weight": 1 + }, + { + "id": 2564, + "nodePlanId": 60107, + "nodeId": 5410101, + "weight": 3 + }, + { + "id": 2565, + "nodePlanId": 60108, + "nodeId": 1420101, + "weight": 1 + }, + { + "id": 2566, + "nodePlanId": 60108, + "nodeId": 1420201, + "weight": 1 + }, + { + "id": 2567, + "nodePlanId": 60108, + "nodeId": 1420301, + "weight": 1 + }, + { + "id": 2568, + "nodePlanId": 60108, + "nodeId": 1420401, + "weight": 1 + }, + { + "id": 2569, + "nodePlanId": 60108, + "nodeId": 1420501, + "weight": 1 + }, + { + "id": 2570, + "nodePlanId": 60108, + "nodeId": 1420601, + "weight": 1 + }, + { + "id": 2571, + "nodePlanId": 60108, + "nodeId": 1420701, + "weight": 1 + }, + { + "id": 2572, + "nodePlanId": 60108, + "nodeId": 1420801, + "weight": 1 + }, + { + "id": 2573, + "nodePlanId": 60108, + "nodeId": 2420101, + "weight": 1 + }, + { + "id": 2574, + "nodePlanId": 60108, + "nodeId": 2420201, + "weight": 1 + }, + { + "id": 2575, + "nodePlanId": 60108, + "nodeId": 2420301, + "weight": 1 + }, + { + "id": 2576, + "nodePlanId": 60108, + "nodeId": 2420401, + "weight": 1 + }, + { + "id": 2577, + "nodePlanId": 60108, + "nodeId": 2420501, + "weight": 2 + }, + { + "id": 2578, + "nodePlanId": 60108, + "nodeId": 2420601, + "weight": 2 + }, + { + "id": 2579, + "nodePlanId": 60108, + "nodeId": 5410101, + "weight": 3 + }, + { + "id": 2580, + "nodePlanId": 60108, + "nodeId": 6410101, + "weight": 3 + }, + { + "id": 2581, + "nodePlanId": 60109, + "nodeId": 3410101, + "weight": 1 + }, + { + "id": 2582, + "nodePlanId": 60110, + "nodeId": 1420101, + "weight": 1 + }, + { + "id": 2583, + "nodePlanId": 60110, + "nodeId": 1420201, + "weight": 1 + }, + { + "id": 2584, + "nodePlanId": 60110, + "nodeId": 1420301, + "weight": 1 + }, + { + "id": 2585, + "nodePlanId": 60110, + "nodeId": 1420401, + "weight": 1 + }, + { + "id": 2586, + "nodePlanId": 60110, + "nodeId": 1420501, + "weight": 1 + }, + { + "id": 2587, + "nodePlanId": 60110, + "nodeId": 1420601, + "weight": 1 + }, + { + "id": 2588, + "nodePlanId": 60110, + "nodeId": 1420701, + "weight": 1 + }, + { + "id": 2589, + "nodePlanId": 60110, + "nodeId": 1420801, + "weight": 1 + }, + { + "id": 2590, + "nodePlanId": 60110, + "nodeId": 2420101, + "weight": 1 + }, + { + "id": 2591, + "nodePlanId": 60110, + "nodeId": 2420201, + "weight": 1 + }, + { + "id": 2592, + "nodePlanId": 60110, + "nodeId": 2420301, + "weight": 1 + }, + { + "id": 2593, + "nodePlanId": 60110, + "nodeId": 2420401, + "weight": 1 + }, + { + "id": 2594, + "nodePlanId": 60110, + "nodeId": 2420501, + "weight": 2 + }, + { + "id": 2595, + "nodePlanId": 60110, + "nodeId": 2420601, + "weight": 2 + }, + { + "id": 2596, + "nodePlanId": 60110, + "nodeId": 5410101, + "weight": 3 + }, + { + "id": 2597, + "nodePlanId": 60110, + "nodeId": 6410101, + "weight": 3 + }, + { + "id": 2598, + "nodePlanId": 60111, + "nodeId": 1420101, + "weight": 1 + }, + { + "id": 2599, + "nodePlanId": 60111, + "nodeId": 1420201, + "weight": 1 + }, + { + "id": 2600, + "nodePlanId": 60111, + "nodeId": 1420301, + "weight": 1 + }, + { + "id": 2601, + "nodePlanId": 60111, + "nodeId": 1420401, + "weight": 1 + }, + { + "id": 2602, + "nodePlanId": 60111, + "nodeId": 1420501, + "weight": 1 + }, + { + "id": 2603, + "nodePlanId": 60111, + "nodeId": 1420601, + "weight": 1 + }, + { + "id": 2604, + "nodePlanId": 60111, + "nodeId": 1420701, + "weight": 1 + }, + { + "id": 2605, + "nodePlanId": 60111, + "nodeId": 1420801, + "weight": 1 + }, + { + "id": 2606, + "nodePlanId": 60111, + "nodeId": 2420101, + "weight": 1 + }, + { + "id": 2607, + "nodePlanId": 60111, + "nodeId": 2420201, + "weight": 1 + }, + { + "id": 2608, + "nodePlanId": 60111, + "nodeId": 2420301, + "weight": 1 + }, + { + "id": 2609, + "nodePlanId": 60111, + "nodeId": 2420401, + "weight": 1 + }, + { + "id": 2610, + "nodePlanId": 60111, + "nodeId": 2420501, + "weight": 2 + }, + { + "id": 2611, + "nodePlanId": 60111, + "nodeId": 2420601, + "weight": 2 + }, + { + "id": 2612, + "nodePlanId": 60111, + "nodeId": 4410101, + "weight": 2 + }, + { + "id": 2613, + "nodePlanId": 60111, + "nodeId": 6410101, + "weight": 2 + }, + { + "id": 2614, + "nodePlanId": 60111, + "nodeId": 6410101, + "weight": 2 + }, + { + "id": 2615, + "nodePlanId": 60112, + "nodeId": 1430101, + "weight": 1 + }, + { + "id": 2616, + "nodePlanId": 60112, + "nodeId": 1430201, + "weight": 1 + }, + { + "id": 2617, + "nodePlanId": 60112, + "nodeId": 1430301, + "weight": 1 + }, + { + "id": 2618, + "nodePlanId": 60112, + "nodeId": 1430401, + "weight": 1 + }, + { + "id": 2619, + "nodePlanId": 60112, + "nodeId": 1430501, + "weight": 1 + }, + { + "id": 2620, + "nodePlanId": 60112, + "nodeId": 2430101, + "weight": 1.5 + }, + { + "id": 2621, + "nodePlanId": 60112, + "nodeId": 2430201, + "weight": 1.5 + }, + { + "id": 2622, + "nodePlanId": 60112, + "nodeId": 2430301, + "weight": 1 + }, + { + "id": 2623, + "nodePlanId": 60112, + "nodeId": 2430401, + "weight": 1 + }, + { + "id": 2624, + "nodePlanId": 60112, + "nodeId": 2430501, + "weight": 1 + }, + { + "id": 2625, + "nodePlanId": 60112, + "nodeId": 2430601, + "weight": 1 + }, + { + "id": 2626, + "nodePlanId": 60113, + "nodeId": 1430601, + "weight": 1 + }, + { + "id": 2627, + "nodePlanId": 60113, + "nodeId": 1430701, + "weight": 1 + }, + { + "id": 2628, + "nodePlanId": 60113, + "nodeId": 1430801, + "weight": 1 + }, + { + "id": 2629, + "nodePlanId": 60113, + "nodeId": 2430101, + "weight": 1 + }, + { + "id": 2630, + "nodePlanId": 60113, + "nodeId": 2430201, + "weight": 1 + }, + { + "id": 2631, + "nodePlanId": 60113, + "nodeId": 2430301, + "weight": 2 + }, + { + "id": 2632, + "nodePlanId": 60113, + "nodeId": 2430401, + "weight": 2 + }, + { + "id": 2633, + "nodePlanId": 60113, + "nodeId": 2430501, + "weight": 1 + }, + { + "id": 2634, + "nodePlanId": 60113, + "nodeId": 2430601, + "weight": 1 + }, + { + "id": 2635, + "nodePlanId": 60113, + "nodeId": 5410101, + "weight": 3 + }, + { + "id": 2636, + "nodePlanId": 60113, + "nodeId": 6410101, + "weight": 2 + }, + { + "id": 2637, + "nodePlanId": 60114, + "nodeId": 4410101, + "weight": 1 + }, + { + "id": 2638, + "nodePlanId": 60115, + "nodeId": 7410101, + "weight": 1 + }, + { + "id": 2639, + "nodePlanId": 60201, + "nodeId": 1410102, + "weight": 1 + }, + { + "id": 2640, + "nodePlanId": 60201, + "nodeId": 1410202, + "weight": 1 + }, + { + "id": 2641, + "nodePlanId": 60201, + "nodeId": 1410302, + "weight": 1 + }, + { + "id": 2642, + "nodePlanId": 60201, + "nodeId": 1410402, + "weight": 1 + }, + { + "id": 2643, + "nodePlanId": 60201, + "nodeId": 1410502, + "weight": 1 + }, + { + "id": 2644, + "nodePlanId": 60201, + "nodeId": 1410602, + "weight": 1 + }, + { + "id": 2645, + "nodePlanId": 60201, + "nodeId": 1410702, + "weight": 1 + }, + { + "id": 2646, + "nodePlanId": 60201, + "nodeId": 1410802, + "weight": 1 + }, + { + "id": 2647, + "nodePlanId": 60202, + "nodeId": 1410102, + "weight": 1 + }, + { + "id": 2648, + "nodePlanId": 60202, + "nodeId": 1410202, + "weight": 1 + }, + { + "id": 2649, + "nodePlanId": 60202, + "nodeId": 1410302, + "weight": 1 + }, + { + "id": 2650, + "nodePlanId": 60202, + "nodeId": 1410402, + "weight": 1 + }, + { + "id": 2651, + "nodePlanId": 60202, + "nodeId": 1410502, + "weight": 1 + }, + { + "id": 2652, + "nodePlanId": 60202, + "nodeId": 1410602, + "weight": 1 + }, + { + "id": 2653, + "nodePlanId": 60202, + "nodeId": 1410702, + "weight": 1 + }, + { + "id": 2654, + "nodePlanId": 60202, + "nodeId": 1410802, + "weight": 1 + }, + { + "id": 2655, + "nodePlanId": 60203, + "nodeId": 1410102, + "weight": 1 + }, + { + "id": 2656, + "nodePlanId": 60203, + "nodeId": 1410202, + "weight": 1 + }, + { + "id": 2657, + "nodePlanId": 60203, + "nodeId": 1410302, + "weight": 1 + }, + { + "id": 2658, + "nodePlanId": 60203, + "nodeId": 1410402, + "weight": 1 + }, + { + "id": 2659, + "nodePlanId": 60203, + "nodeId": 1410502, + "weight": 1 + }, + { + "id": 2660, + "nodePlanId": 60203, + "nodeId": 1410602, + "weight": 1 + }, + { + "id": 2661, + "nodePlanId": 60203, + "nodeId": 1410702, + "weight": 1 + }, + { + "id": 2662, + "nodePlanId": 60203, + "nodeId": 1410802, + "weight": 1 + }, + { + "id": 2663, + "nodePlanId": 60203, + "nodeId": 2410102, + "weight": 4 + }, + { + "id": 2664, + "nodePlanId": 60203, + "nodeId": 2410202, + "weight": 4 + }, + { + "id": 2665, + "nodePlanId": 60203, + "nodeId": 6410102, + "weight": 8 + }, + { + "id": 2666, + "nodePlanId": 60204, + "nodeId": 2410302, + "weight": 1 + }, + { + "id": 2667, + "nodePlanId": 60204, + "nodeId": 2410402, + "weight": 1 + }, + { + "id": 2668, + "nodePlanId": 60204, + "nodeId": 2410502, + "weight": 1 + }, + { + "id": 2669, + "nodePlanId": 60204, + "nodeId": 2410602, + "weight": 1 + }, + { + "id": 2670, + "nodePlanId": 60205, + "nodeId": 5410102, + "weight": 1 + }, + { + "id": 2671, + "nodePlanId": 60206, + "nodeId": 1420102, + "weight": 1 + }, + { + "id": 2672, + "nodePlanId": 60206, + "nodeId": 1420202, + "weight": 1 + }, + { + "id": 2673, + "nodePlanId": 60206, + "nodeId": 1420302, + "weight": 1 + }, + { + "id": 2674, + "nodePlanId": 60206, + "nodeId": 1420402, + "weight": 1 + }, + { + "id": 2675, + "nodePlanId": 60206, + "nodeId": 1420502, + "weight": 1 + }, + { + "id": 2676, + "nodePlanId": 60206, + "nodeId": 1420602, + "weight": 1 + }, + { + "id": 2677, + "nodePlanId": 60206, + "nodeId": 1420702, + "weight": 1 + }, + { + "id": 2678, + "nodePlanId": 60206, + "nodeId": 1420802, + "weight": 1 + }, + { + "id": 2679, + "nodePlanId": 60206, + "nodeId": 2420102, + "weight": 2 + }, + { + "id": 2680, + "nodePlanId": 60206, + "nodeId": 2420202, + "weight": 2 + }, + { + "id": 2681, + "nodePlanId": 60206, + "nodeId": 2420302, + "weight": 1 + }, + { + "id": 2682, + "nodePlanId": 60206, + "nodeId": 2420402, + "weight": 1 + }, + { + "id": 2683, + "nodePlanId": 60206, + "nodeId": 2420502, + "weight": 1 + }, + { + "id": 2684, + "nodePlanId": 60206, + "nodeId": 2420602, + "weight": 1 + }, + { + "id": 2685, + "nodePlanId": 60206, + "nodeId": 4410102, + "weight": 3 + }, + { + "id": 2686, + "nodePlanId": 60206, + "nodeId": 6410102, + "weight": 3 + }, + { + "id": 2687, + "nodePlanId": 60207, + "nodeId": 1420102, + "weight": 1 + }, + { + "id": 2688, + "nodePlanId": 60207, + "nodeId": 1420202, + "weight": 1 + }, + { + "id": 2689, + "nodePlanId": 60207, + "nodeId": 1420302, + "weight": 1 + }, + { + "id": 2690, + "nodePlanId": 60207, + "nodeId": 1420402, + "weight": 1 + }, + { + "id": 2691, + "nodePlanId": 60207, + "nodeId": 1420502, + "weight": 1 + }, + { + "id": 2692, + "nodePlanId": 60207, + "nodeId": 1420602, + "weight": 1 + }, + { + "id": 2693, + "nodePlanId": 60207, + "nodeId": 1420702, + "weight": 1 + }, + { + "id": 2694, + "nodePlanId": 60207, + "nodeId": 1420802, + "weight": 1 + }, + { + "id": 2695, + "nodePlanId": 60207, + "nodeId": 2420102, + "weight": 1 + }, + { + "id": 2696, + "nodePlanId": 60207, + "nodeId": 2420202, + "weight": 1 + }, + { + "id": 2697, + "nodePlanId": 60207, + "nodeId": 2420302, + "weight": 2 + }, + { + "id": 2698, + "nodePlanId": 60207, + "nodeId": 2420402, + "weight": 2 + }, + { + "id": 2699, + "nodePlanId": 60207, + "nodeId": 2420502, + "weight": 1 + }, + { + "id": 2700, + "nodePlanId": 60207, + "nodeId": 2420602, + "weight": 1 + }, + { + "id": 2701, + "nodePlanId": 60207, + "nodeId": 5410102, + "weight": 3 + }, + { + "id": 2702, + "nodePlanId": 60208, + "nodeId": 1420102, + "weight": 1 + }, + { + "id": 2703, + "nodePlanId": 60208, + "nodeId": 1420202, + "weight": 1 + }, + { + "id": 2704, + "nodePlanId": 60208, + "nodeId": 1420302, + "weight": 1 + }, + { + "id": 2705, + "nodePlanId": 60208, + "nodeId": 1420402, + "weight": 1 + }, + { + "id": 2706, + "nodePlanId": 60208, + "nodeId": 1420502, + "weight": 1 + }, + { + "id": 2707, + "nodePlanId": 60208, + "nodeId": 1420602, + "weight": 1 + }, + { + "id": 2708, + "nodePlanId": 60208, + "nodeId": 1420702, + "weight": 1 + }, + { + "id": 2709, + "nodePlanId": 60208, + "nodeId": 1420802, + "weight": 1 + }, + { + "id": 2710, + "nodePlanId": 60208, + "nodeId": 2420102, + "weight": 1 + }, + { + "id": 2711, + "nodePlanId": 60208, + "nodeId": 2420202, + "weight": 1 + }, + { + "id": 2712, + "nodePlanId": 60208, + "nodeId": 2420302, + "weight": 1 + }, + { + "id": 2713, + "nodePlanId": 60208, + "nodeId": 2420402, + "weight": 1 + }, + { + "id": 2714, + "nodePlanId": 60208, + "nodeId": 2420502, + "weight": 2 + }, + { + "id": 2715, + "nodePlanId": 60208, + "nodeId": 2420602, + "weight": 2 + }, + { + "id": 2716, + "nodePlanId": 60208, + "nodeId": 5410102, + "weight": 3 + }, + { + "id": 2717, + "nodePlanId": 60208, + "nodeId": 6410102, + "weight": 3 + }, + { + "id": 2718, + "nodePlanId": 60209, + "nodeId": 3410102, + "weight": 1 + }, + { + "id": 2719, + "nodePlanId": 60210, + "nodeId": 1420102, + "weight": 1 + }, + { + "id": 2720, + "nodePlanId": 60210, + "nodeId": 1420202, + "weight": 1 + }, + { + "id": 2721, + "nodePlanId": 60210, + "nodeId": 1420302, + "weight": 1 + }, + { + "id": 2722, + "nodePlanId": 60210, + "nodeId": 1420402, + "weight": 1 + }, + { + "id": 2723, + "nodePlanId": 60210, + "nodeId": 1420502, + "weight": 1 + }, + { + "id": 2724, + "nodePlanId": 60210, + "nodeId": 1420602, + "weight": 1 + }, + { + "id": 2725, + "nodePlanId": 60210, + "nodeId": 1420702, + "weight": 1 + }, + { + "id": 2726, + "nodePlanId": 60210, + "nodeId": 1420802, + "weight": 1 + }, + { + "id": 2727, + "nodePlanId": 60210, + "nodeId": 2420102, + "weight": 1 + }, + { + "id": 2728, + "nodePlanId": 60210, + "nodeId": 2420202, + "weight": 1 + }, + { + "id": 2729, + "nodePlanId": 60210, + "nodeId": 2420302, + "weight": 1 + }, + { + "id": 2730, + "nodePlanId": 60210, + "nodeId": 2420402, + "weight": 1 + }, + { + "id": 2731, + "nodePlanId": 60210, + "nodeId": 2420502, + "weight": 2 + }, + { + "id": 2732, + "nodePlanId": 60210, + "nodeId": 2420602, + "weight": 2 + }, + { + "id": 2733, + "nodePlanId": 60210, + "nodeId": 5410102, + "weight": 3 + }, + { + "id": 2734, + "nodePlanId": 60210, + "nodeId": 6410102, + "weight": 3 + }, + { + "id": 2735, + "nodePlanId": 60211, + "nodeId": 1420102, + "weight": 1 + }, + { + "id": 2736, + "nodePlanId": 60211, + "nodeId": 1420202, + "weight": 1 + }, + { + "id": 2737, + "nodePlanId": 60211, + "nodeId": 1420302, + "weight": 1 + }, + { + "id": 2738, + "nodePlanId": 60211, + "nodeId": 1420402, + "weight": 1 + }, + { + "id": 2739, + "nodePlanId": 60211, + "nodeId": 1420502, + "weight": 1 + }, + { + "id": 2740, + "nodePlanId": 60211, + "nodeId": 1420602, + "weight": 1 + }, + { + "id": 2741, + "nodePlanId": 60211, + "nodeId": 1420702, + "weight": 1 + }, + { + "id": 2742, + "nodePlanId": 60211, + "nodeId": 1420802, + "weight": 1 + }, + { + "id": 2743, + "nodePlanId": 60211, + "nodeId": 2420102, + "weight": 1 + }, + { + "id": 2744, + "nodePlanId": 60211, + "nodeId": 2420202, + "weight": 1 + }, + { + "id": 2745, + "nodePlanId": 60211, + "nodeId": 2420302, + "weight": 1 + }, + { + "id": 2746, + "nodePlanId": 60211, + "nodeId": 2420402, + "weight": 1 + }, + { + "id": 2747, + "nodePlanId": 60211, + "nodeId": 2420502, + "weight": 2 + }, + { + "id": 2748, + "nodePlanId": 60211, + "nodeId": 2420602, + "weight": 2 + }, + { + "id": 2749, + "nodePlanId": 60211, + "nodeId": 4410102, + "weight": 2 + }, + { + "id": 2750, + "nodePlanId": 60211, + "nodeId": 6410102, + "weight": 2 + }, + { + "id": 2751, + "nodePlanId": 60211, + "nodeId": 6410102, + "weight": 2 + }, + { + "id": 2752, + "nodePlanId": 60212, + "nodeId": 1430102, + "weight": 1 + }, + { + "id": 2753, + "nodePlanId": 60212, + "nodeId": 1430202, + "weight": 1 + }, + { + "id": 2754, + "nodePlanId": 60212, + "nodeId": 1430302, + "weight": 1 + }, + { + "id": 2755, + "nodePlanId": 60212, + "nodeId": 1430402, + "weight": 1 + }, + { + "id": 2756, + "nodePlanId": 60212, + "nodeId": 1430502, + "weight": 1 + }, + { + "id": 2757, + "nodePlanId": 60212, + "nodeId": 2430102, + "weight": 1.5 + }, + { + "id": 2758, + "nodePlanId": 60212, + "nodeId": 2430202, + "weight": 1.5 + }, + { + "id": 2759, + "nodePlanId": 60212, + "nodeId": 2430302, + "weight": 1 + }, + { + "id": 2760, + "nodePlanId": 60212, + "nodeId": 2430402, + "weight": 1 + }, + { + "id": 2761, + "nodePlanId": 60212, + "nodeId": 2430502, + "weight": 1 + }, + { + "id": 2762, + "nodePlanId": 60212, + "nodeId": 2430602, + "weight": 1 + }, + { + "id": 2763, + "nodePlanId": 60213, + "nodeId": 1430602, + "weight": 1 + }, + { + "id": 2764, + "nodePlanId": 60213, + "nodeId": 1430702, + "weight": 1 + }, + { + "id": 2765, + "nodePlanId": 60213, + "nodeId": 1430802, + "weight": 1 + }, + { + "id": 2766, + "nodePlanId": 60213, + "nodeId": 2430102, + "weight": 1 + }, + { + "id": 2767, + "nodePlanId": 60213, + "nodeId": 2430202, + "weight": 1 + }, + { + "id": 2768, + "nodePlanId": 60213, + "nodeId": 2430302, + "weight": 2 + }, + { + "id": 2769, + "nodePlanId": 60213, + "nodeId": 2430402, + "weight": 2 + }, + { + "id": 2770, + "nodePlanId": 60213, + "nodeId": 2430502, + "weight": 1 + }, + { + "id": 2771, + "nodePlanId": 60213, + "nodeId": 2430602, + "weight": 1 + }, + { + "id": 2772, + "nodePlanId": 60213, + "nodeId": 5410102, + "weight": 3 + }, + { + "id": 2773, + "nodePlanId": 60213, + "nodeId": 6410102, + "weight": 2 + }, + { + "id": 2774, + "nodePlanId": 60214, + "nodeId": 4410102, + "weight": 1 + }, + { + "id": 2775, + "nodePlanId": 60215, + "nodeId": 7410102, + "weight": 1 + }, + { + "id": 2776, + "nodePlanId": 60301, + "nodeId": 1410103, + "weight": 1 + }, + { + "id": 2777, + "nodePlanId": 60301, + "nodeId": 1410203, + "weight": 1 + }, + { + "id": 2778, + "nodePlanId": 60301, + "nodeId": 1410303, + "weight": 1 + }, + { + "id": 2779, + "nodePlanId": 60301, + "nodeId": 1410403, + "weight": 1 + }, + { + "id": 2780, + "nodePlanId": 60301, + "nodeId": 1410503, + "weight": 1 + }, + { + "id": 2781, + "nodePlanId": 60301, + "nodeId": 1410603, + "weight": 1 + }, + { + "id": 2782, + "nodePlanId": 60301, + "nodeId": 1410703, + "weight": 1 + }, + { + "id": 2783, + "nodePlanId": 60301, + "nodeId": 1410803, + "weight": 1 + }, + { + "id": 2784, + "nodePlanId": 60302, + "nodeId": 1410103, + "weight": 1 + }, + { + "id": 2785, + "nodePlanId": 60302, + "nodeId": 1410203, + "weight": 1 + }, + { + "id": 2786, + "nodePlanId": 60302, + "nodeId": 1410303, + "weight": 1 + }, + { + "id": 2787, + "nodePlanId": 60302, + "nodeId": 1410403, + "weight": 1 + }, + { + "id": 2788, + "nodePlanId": 60302, + "nodeId": 1410503, + "weight": 1 + }, + { + "id": 2789, + "nodePlanId": 60302, + "nodeId": 1410603, + "weight": 1 + }, + { + "id": 2790, + "nodePlanId": 60302, + "nodeId": 1410703, + "weight": 1 + }, + { + "id": 2791, + "nodePlanId": 60302, + "nodeId": 1410803, + "weight": 1 + }, + { + "id": 2792, + "nodePlanId": 60303, + "nodeId": 1410103, + "weight": 1 + }, + { + "id": 2793, + "nodePlanId": 60303, + "nodeId": 1410203, + "weight": 1 + }, + { + "id": 2794, + "nodePlanId": 60303, + "nodeId": 1410303, + "weight": 1 + }, + { + "id": 2795, + "nodePlanId": 60303, + "nodeId": 1410403, + "weight": 1 + }, + { + "id": 2796, + "nodePlanId": 60303, + "nodeId": 1410503, + "weight": 1 + }, + { + "id": 2797, + "nodePlanId": 60303, + "nodeId": 1410603, + "weight": 1 + }, + { + "id": 2798, + "nodePlanId": 60303, + "nodeId": 1410703, + "weight": 1 + }, + { + "id": 2799, + "nodePlanId": 60303, + "nodeId": 1410803, + "weight": 1 + }, + { + "id": 2800, + "nodePlanId": 60303, + "nodeId": 2410103, + "weight": 4 + }, + { + "id": 2801, + "nodePlanId": 60303, + "nodeId": 2410203, + "weight": 4 + }, + { + "id": 2802, + "nodePlanId": 60303, + "nodeId": 6410103, + "weight": 8 + }, + { + "id": 2803, + "nodePlanId": 60304, + "nodeId": 2410303, + "weight": 1 + }, + { + "id": 2804, + "nodePlanId": 60304, + "nodeId": 2410403, + "weight": 1 + }, + { + "id": 2805, + "nodePlanId": 60304, + "nodeId": 2410503, + "weight": 1 + }, + { + "id": 2806, + "nodePlanId": 60304, + "nodeId": 2410603, + "weight": 1 + }, + { + "id": 2807, + "nodePlanId": 60305, + "nodeId": 5410103, + "weight": 1 + }, + { + "id": 2808, + "nodePlanId": 60306, + "nodeId": 1420103, + "weight": 1 + }, + { + "id": 2809, + "nodePlanId": 60306, + "nodeId": 1420203, + "weight": 1 + }, + { + "id": 2810, + "nodePlanId": 60306, + "nodeId": 1420303, + "weight": 1 + }, + { + "id": 2811, + "nodePlanId": 60306, + "nodeId": 1420403, + "weight": 1 + }, + { + "id": 2812, + "nodePlanId": 60306, + "nodeId": 1420503, + "weight": 1 + }, + { + "id": 2813, + "nodePlanId": 60306, + "nodeId": 1420603, + "weight": 1 + }, + { + "id": 2814, + "nodePlanId": 60306, + "nodeId": 1420703, + "weight": 1 + }, + { + "id": 2815, + "nodePlanId": 60306, + "nodeId": 1420803, + "weight": 1 + }, + { + "id": 2816, + "nodePlanId": 60306, + "nodeId": 2420103, + "weight": 2 + }, + { + "id": 2817, + "nodePlanId": 60306, + "nodeId": 2420203, + "weight": 2 + }, + { + "id": 2818, + "nodePlanId": 60306, + "nodeId": 2420303, + "weight": 1 + }, + { + "id": 2819, + "nodePlanId": 60306, + "nodeId": 2420403, + "weight": 1 + }, + { + "id": 2820, + "nodePlanId": 60306, + "nodeId": 2420503, + "weight": 1 + }, + { + "id": 2821, + "nodePlanId": 60306, + "nodeId": 2420603, + "weight": 1 + }, + { + "id": 2822, + "nodePlanId": 60306, + "nodeId": 4410103, + "weight": 3 + }, + { + "id": 2823, + "nodePlanId": 60306, + "nodeId": 6410103, + "weight": 3 + }, + { + "id": 2824, + "nodePlanId": 60307, + "nodeId": 1420103, + "weight": 1 + }, + { + "id": 2825, + "nodePlanId": 60307, + "nodeId": 1420203, + "weight": 1 + }, + { + "id": 2826, + "nodePlanId": 60307, + "nodeId": 1420303, + "weight": 1 + }, + { + "id": 2827, + "nodePlanId": 60307, + "nodeId": 1420403, + "weight": 1 + }, + { + "id": 2828, + "nodePlanId": 60307, + "nodeId": 1420503, + "weight": 1 + }, + { + "id": 2829, + "nodePlanId": 60307, + "nodeId": 1420603, + "weight": 1 + }, + { + "id": 2830, + "nodePlanId": 60307, + "nodeId": 1420703, + "weight": 1 + }, + { + "id": 2831, + "nodePlanId": 60307, + "nodeId": 1420803, + "weight": 1 + }, + { + "id": 2832, + "nodePlanId": 60307, + "nodeId": 2420103, + "weight": 1 + }, + { + "id": 2833, + "nodePlanId": 60307, + "nodeId": 2420203, + "weight": 1 + }, + { + "id": 2834, + "nodePlanId": 60307, + "nodeId": 2420303, + "weight": 2 + }, + { + "id": 2835, + "nodePlanId": 60307, + "nodeId": 2420403, + "weight": 2 + }, + { + "id": 2836, + "nodePlanId": 60307, + "nodeId": 2420503, + "weight": 1 + }, + { + "id": 2837, + "nodePlanId": 60307, + "nodeId": 2420603, + "weight": 1 + }, + { + "id": 2838, + "nodePlanId": 60307, + "nodeId": 5410103, + "weight": 3 + }, + { + "id": 2839, + "nodePlanId": 60308, + "nodeId": 1420103, + "weight": 1 + }, + { + "id": 2840, + "nodePlanId": 60308, + "nodeId": 1420203, + "weight": 1 + }, + { + "id": 2841, + "nodePlanId": 60308, + "nodeId": 1420303, + "weight": 1 + }, + { + "id": 2842, + "nodePlanId": 60308, + "nodeId": 1420403, + "weight": 1 + }, + { + "id": 2843, + "nodePlanId": 60308, + "nodeId": 1420503, + "weight": 1 + }, + { + "id": 2844, + "nodePlanId": 60308, + "nodeId": 1420603, + "weight": 1 + }, + { + "id": 2845, + "nodePlanId": 60308, + "nodeId": 1420703, + "weight": 1 + }, + { + "id": 2846, + "nodePlanId": 60308, + "nodeId": 1420803, + "weight": 1 + }, + { + "id": 2847, + "nodePlanId": 60308, + "nodeId": 2420103, + "weight": 1 + }, + { + "id": 2848, + "nodePlanId": 60308, + "nodeId": 2420203, + "weight": 1 + }, + { + "id": 2849, + "nodePlanId": 60308, + "nodeId": 2420303, + "weight": 1 + }, + { + "id": 2850, + "nodePlanId": 60308, + "nodeId": 2420403, + "weight": 1 + }, + { + "id": 2851, + "nodePlanId": 60308, + "nodeId": 2420503, + "weight": 2 + }, + { + "id": 2852, + "nodePlanId": 60308, + "nodeId": 2420603, + "weight": 2 + }, + { + "id": 2853, + "nodePlanId": 60308, + "nodeId": 5410103, + "weight": 3 + }, + { + "id": 2854, + "nodePlanId": 60308, + "nodeId": 6410103, + "weight": 3 + }, + { + "id": 2855, + "nodePlanId": 60309, + "nodeId": 3410103, + "weight": 1 + }, + { + "id": 2856, + "nodePlanId": 60310, + "nodeId": 1420103, + "weight": 1 + }, + { + "id": 2857, + "nodePlanId": 60310, + "nodeId": 1420203, + "weight": 1 + }, + { + "id": 2858, + "nodePlanId": 60310, + "nodeId": 1420303, + "weight": 1 + }, + { + "id": 2859, + "nodePlanId": 60310, + "nodeId": 1420403, + "weight": 1 + }, + { + "id": 2860, + "nodePlanId": 60310, + "nodeId": 1420503, + "weight": 1 + }, + { + "id": 2861, + "nodePlanId": 60310, + "nodeId": 1420603, + "weight": 1 + }, + { + "id": 2862, + "nodePlanId": 60310, + "nodeId": 1420703, + "weight": 1 + }, + { + "id": 2863, + "nodePlanId": 60310, + "nodeId": 1420803, + "weight": 1 + }, + { + "id": 2864, + "nodePlanId": 60310, + "nodeId": 2420103, + "weight": 1 + }, + { + "id": 2865, + "nodePlanId": 60310, + "nodeId": 2420203, + "weight": 1 + }, + { + "id": 2866, + "nodePlanId": 60310, + "nodeId": 2420303, + "weight": 1 + }, + { + "id": 2867, + "nodePlanId": 60310, + "nodeId": 2420403, + "weight": 1 + }, + { + "id": 2868, + "nodePlanId": 60310, + "nodeId": 2420503, + "weight": 2 + }, + { + "id": 2869, + "nodePlanId": 60310, + "nodeId": 2420603, + "weight": 2 + }, + { + "id": 2870, + "nodePlanId": 60310, + "nodeId": 5410103, + "weight": 3 + }, + { + "id": 2871, + "nodePlanId": 60310, + "nodeId": 6410103, + "weight": 3 + }, + { + "id": 2872, + "nodePlanId": 60311, + "nodeId": 1420103, + "weight": 1 + }, + { + "id": 2873, + "nodePlanId": 60311, + "nodeId": 1420203, + "weight": 1 + }, + { + "id": 2874, + "nodePlanId": 60311, + "nodeId": 1420303, + "weight": 1 + }, + { + "id": 2875, + "nodePlanId": 60311, + "nodeId": 1420403, + "weight": 1 + }, + { + "id": 2876, + "nodePlanId": 60311, + "nodeId": 1420503, + "weight": 1 + }, + { + "id": 2877, + "nodePlanId": 60311, + "nodeId": 1420603, + "weight": 1 + }, + { + "id": 2878, + "nodePlanId": 60311, + "nodeId": 1420703, + "weight": 1 + }, + { + "id": 2879, + "nodePlanId": 60311, + "nodeId": 1420803, + "weight": 1 + }, + { + "id": 2880, + "nodePlanId": 60311, + "nodeId": 2420103, + "weight": 1 + }, + { + "id": 2881, + "nodePlanId": 60311, + "nodeId": 2420203, + "weight": 1 + }, + { + "id": 2882, + "nodePlanId": 60311, + "nodeId": 2420303, + "weight": 1 + }, + { + "id": 2883, + "nodePlanId": 60311, + "nodeId": 2420403, + "weight": 1 + }, + { + "id": 2884, + "nodePlanId": 60311, + "nodeId": 2420503, + "weight": 2 + }, + { + "id": 2885, + "nodePlanId": 60311, + "nodeId": 2420603, + "weight": 2 + }, + { + "id": 2886, + "nodePlanId": 60311, + "nodeId": 4410103, + "weight": 2 + }, + { + "id": 2887, + "nodePlanId": 60311, + "nodeId": 6410103, + "weight": 2 + }, + { + "id": 2888, + "nodePlanId": 60311, + "nodeId": 6410103, + "weight": 2 + }, + { + "id": 2889, + "nodePlanId": 60312, + "nodeId": 1430103, + "weight": 1 + }, + { + "id": 2890, + "nodePlanId": 60312, + "nodeId": 1430203, + "weight": 1 + }, + { + "id": 2891, + "nodePlanId": 60312, + "nodeId": 1430303, + "weight": 1 + }, + { + "id": 2892, + "nodePlanId": 60312, + "nodeId": 1430403, + "weight": 1 + }, + { + "id": 2893, + "nodePlanId": 60312, + "nodeId": 1430503, + "weight": 1 + }, + { + "id": 2894, + "nodePlanId": 60312, + "nodeId": 2430103, + "weight": 1.5 + }, + { + "id": 2895, + "nodePlanId": 60312, + "nodeId": 2430203, + "weight": 1.5 + }, + { + "id": 2896, + "nodePlanId": 60312, + "nodeId": 2430303, + "weight": 1 + }, + { + "id": 2897, + "nodePlanId": 60312, + "nodeId": 2430403, + "weight": 1 + }, + { + "id": 2898, + "nodePlanId": 60312, + "nodeId": 2430503, + "weight": 1 + }, + { + "id": 2899, + "nodePlanId": 60312, + "nodeId": 2430603, + "weight": 1 + }, + { + "id": 2900, + "nodePlanId": 60313, + "nodeId": 1430603, + "weight": 1 + }, + { + "id": 2901, + "nodePlanId": 60313, + "nodeId": 1430703, + "weight": 1 + }, + { + "id": 2902, + "nodePlanId": 60313, + "nodeId": 1430803, + "weight": 1 + }, + { + "id": 2903, + "nodePlanId": 60313, + "nodeId": 2430103, + "weight": 1 + }, + { + "id": 2904, + "nodePlanId": 60313, + "nodeId": 2430203, + "weight": 1 + }, + { + "id": 2905, + "nodePlanId": 60313, + "nodeId": 2430303, + "weight": 2 + }, + { + "id": 2906, + "nodePlanId": 60313, + "nodeId": 2430403, + "weight": 2 + }, + { + "id": 2907, + "nodePlanId": 60313, + "nodeId": 2430503, + "weight": 1 + }, + { + "id": 2908, + "nodePlanId": 60313, + "nodeId": 2430603, + "weight": 1 + }, + { + "id": 2909, + "nodePlanId": 60313, + "nodeId": 5410103, + "weight": 3 + }, + { + "id": 2910, + "nodePlanId": 60313, + "nodeId": 6410103, + "weight": 2 + }, + { + "id": 2911, + "nodePlanId": 60314, + "nodeId": 4410103, + "weight": 1 + }, + { + "id": 2912, + "nodePlanId": 60315, + "nodeId": 7410103, + "weight": 1 + }, + { + "id": 2913, + "nodePlanId": 60401, + "nodeId": 1410104, + "weight": 1 + }, + { + "id": 2914, + "nodePlanId": 60401, + "nodeId": 1410204, + "weight": 1 + }, + { + "id": 2915, + "nodePlanId": 60401, + "nodeId": 1410304, + "weight": 1 + }, + { + "id": 2916, + "nodePlanId": 60401, + "nodeId": 1410404, + "weight": 1 + }, + { + "id": 2917, + "nodePlanId": 60401, + "nodeId": 1410504, + "weight": 1 + }, + { + "id": 2918, + "nodePlanId": 60401, + "nodeId": 1410604, + "weight": 1 + }, + { + "id": 2919, + "nodePlanId": 60401, + "nodeId": 1410704, + "weight": 1 + }, + { + "id": 2920, + "nodePlanId": 60401, + "nodeId": 1410804, + "weight": 1 + }, + { + "id": 2921, + "nodePlanId": 60402, + "nodeId": 1410104, + "weight": 1 + }, + { + "id": 2922, + "nodePlanId": 60402, + "nodeId": 1410204, + "weight": 1 + }, + { + "id": 2923, + "nodePlanId": 60402, + "nodeId": 1410304, + "weight": 1 + }, + { + "id": 2924, + "nodePlanId": 60402, + "nodeId": 1410404, + "weight": 1 + }, + { + "id": 2925, + "nodePlanId": 60402, + "nodeId": 1410504, + "weight": 1 + }, + { + "id": 2926, + "nodePlanId": 60402, + "nodeId": 1410604, + "weight": 1 + }, + { + "id": 2927, + "nodePlanId": 60402, + "nodeId": 1410704, + "weight": 1 + }, + { + "id": 2928, + "nodePlanId": 60402, + "nodeId": 1410804, + "weight": 1 + }, + { + "id": 2929, + "nodePlanId": 60403, + "nodeId": 1410104, + "weight": 1 + }, + { + "id": 2930, + "nodePlanId": 60403, + "nodeId": 1410204, + "weight": 1 + }, + { + "id": 2931, + "nodePlanId": 60403, + "nodeId": 1410304, + "weight": 1 + }, + { + "id": 2932, + "nodePlanId": 60403, + "nodeId": 1410404, + "weight": 1 + }, + { + "id": 2933, + "nodePlanId": 60403, + "nodeId": 1410504, + "weight": 1 + }, + { + "id": 2934, + "nodePlanId": 60403, + "nodeId": 1410604, + "weight": 1 + }, + { + "id": 2935, + "nodePlanId": 60403, + "nodeId": 1410704, + "weight": 1 + }, + { + "id": 2936, + "nodePlanId": 60403, + "nodeId": 1410804, + "weight": 1 + }, + { + "id": 2937, + "nodePlanId": 60403, + "nodeId": 2410104, + "weight": 4 + }, + { + "id": 2938, + "nodePlanId": 60403, + "nodeId": 2410204, + "weight": 4 + }, + { + "id": 2939, + "nodePlanId": 60403, + "nodeId": 6410104, + "weight": 8 + }, + { + "id": 2940, + "nodePlanId": 60404, + "nodeId": 2410304, + "weight": 1 + }, + { + "id": 2941, + "nodePlanId": 60404, + "nodeId": 2410404, + "weight": 1 + }, + { + "id": 2942, + "nodePlanId": 60404, + "nodeId": 2410504, + "weight": 1 + }, + { + "id": 2943, + "nodePlanId": 60404, + "nodeId": 2410604, + "weight": 1 + }, + { + "id": 2944, + "nodePlanId": 60405, + "nodeId": 5410104, + "weight": 1 + }, + { + "id": 2945, + "nodePlanId": 60406, + "nodeId": 1420104, + "weight": 1 + }, + { + "id": 2946, + "nodePlanId": 60406, + "nodeId": 1420204, + "weight": 1 + }, + { + "id": 2947, + "nodePlanId": 60406, + "nodeId": 1420304, + "weight": 1 + }, + { + "id": 2948, + "nodePlanId": 60406, + "nodeId": 1420404, + "weight": 1 + }, + { + "id": 2949, + "nodePlanId": 60406, + "nodeId": 1420504, + "weight": 1 + }, + { + "id": 2950, + "nodePlanId": 60406, + "nodeId": 1420604, + "weight": 1 + }, + { + "id": 2951, + "nodePlanId": 60406, + "nodeId": 1420704, + "weight": 1 + }, + { + "id": 2952, + "nodePlanId": 60406, + "nodeId": 1420804, + "weight": 1 + }, + { + "id": 2953, + "nodePlanId": 60406, + "nodeId": 2420104, + "weight": 2 + }, + { + "id": 2954, + "nodePlanId": 60406, + "nodeId": 2420204, + "weight": 2 + }, + { + "id": 2955, + "nodePlanId": 60406, + "nodeId": 2420304, + "weight": 1 + }, + { + "id": 2956, + "nodePlanId": 60406, + "nodeId": 2420404, + "weight": 1 + }, + { + "id": 2957, + "nodePlanId": 60406, + "nodeId": 2420504, + "weight": 1 + }, + { + "id": 2958, + "nodePlanId": 60406, + "nodeId": 2420604, + "weight": 1 + }, + { + "id": 2959, + "nodePlanId": 60406, + "nodeId": 4410104, + "weight": 3 + }, + { + "id": 2960, + "nodePlanId": 60406, + "nodeId": 6410104, + "weight": 3 + }, + { + "id": 2961, + "nodePlanId": 60407, + "nodeId": 1420104, + "weight": 1 + }, + { + "id": 2962, + "nodePlanId": 60407, + "nodeId": 1420204, + "weight": 1 + }, + { + "id": 2963, + "nodePlanId": 60407, + "nodeId": 1420304, + "weight": 1 + }, + { + "id": 2964, + "nodePlanId": 60407, + "nodeId": 1420404, + "weight": 1 + }, + { + "id": 2965, + "nodePlanId": 60407, + "nodeId": 1420504, + "weight": 1 + }, + { + "id": 2966, + "nodePlanId": 60407, + "nodeId": 1420604, + "weight": 1 + }, + { + "id": 2967, + "nodePlanId": 60407, + "nodeId": 1420704, + "weight": 1 + }, + { + "id": 2968, + "nodePlanId": 60407, + "nodeId": 1420804, + "weight": 1 + }, + { + "id": 2969, + "nodePlanId": 60407, + "nodeId": 2420104, + "weight": 1 + }, + { + "id": 2970, + "nodePlanId": 60407, + "nodeId": 2420204, + "weight": 1 + }, + { + "id": 2971, + "nodePlanId": 60407, + "nodeId": 2420304, + "weight": 2 + }, + { + "id": 2972, + "nodePlanId": 60407, + "nodeId": 2420404, + "weight": 2 + }, + { + "id": 2973, + "nodePlanId": 60407, + "nodeId": 2420504, + "weight": 1 + }, + { + "id": 2974, + "nodePlanId": 60407, + "nodeId": 2420604, + "weight": 1 + }, + { + "id": 2975, + "nodePlanId": 60407, + "nodeId": 5410104, + "weight": 3 + }, + { + "id": 2976, + "nodePlanId": 60408, + "nodeId": 1420104, + "weight": 1 + }, + { + "id": 2977, + "nodePlanId": 60408, + "nodeId": 1420204, + "weight": 1 + }, + { + "id": 2978, + "nodePlanId": 60408, + "nodeId": 1420304, + "weight": 1 + }, + { + "id": 2979, + "nodePlanId": 60408, + "nodeId": 1420404, + "weight": 1 + }, + { + "id": 2980, + "nodePlanId": 60408, + "nodeId": 1420504, + "weight": 1 + }, + { + "id": 2981, + "nodePlanId": 60408, + "nodeId": 1420604, + "weight": 1 + }, + { + "id": 2982, + "nodePlanId": 60408, + "nodeId": 1420704, + "weight": 1 + }, + { + "id": 2983, + "nodePlanId": 60408, + "nodeId": 1420804, + "weight": 1 + }, + { + "id": 2984, + "nodePlanId": 60408, + "nodeId": 2420104, + "weight": 1 + }, + { + "id": 2985, + "nodePlanId": 60408, + "nodeId": 2420204, + "weight": 1 + }, + { + "id": 2986, + "nodePlanId": 60408, + "nodeId": 2420304, + "weight": 1 + }, + { + "id": 2987, + "nodePlanId": 60408, + "nodeId": 2420404, + "weight": 1 + }, + { + "id": 2988, + "nodePlanId": 60408, + "nodeId": 2420504, + "weight": 2 + }, + { + "id": 2989, + "nodePlanId": 60408, + "nodeId": 2420604, + "weight": 2 + }, + { + "id": 2990, + "nodePlanId": 60408, + "nodeId": 5410104, + "weight": 3 + }, + { + "id": 2991, + "nodePlanId": 60408, + "nodeId": 6410104, + "weight": 3 + }, + { + "id": 2992, + "nodePlanId": 60409, + "nodeId": 3410104, + "weight": 1 + }, + { + "id": 2993, + "nodePlanId": 60410, + "nodeId": 1420104, + "weight": 1 + }, + { + "id": 2994, + "nodePlanId": 60410, + "nodeId": 1420204, + "weight": 1 + }, + { + "id": 2995, + "nodePlanId": 60410, + "nodeId": 1420304, + "weight": 1 + }, + { + "id": 2996, + "nodePlanId": 60410, + "nodeId": 1420404, + "weight": 1 + }, + { + "id": 2997, + "nodePlanId": 60410, + "nodeId": 1420504, + "weight": 1 + }, + { + "id": 2998, + "nodePlanId": 60410, + "nodeId": 1420604, + "weight": 1 + }, + { + "id": 2999, + "nodePlanId": 60410, + "nodeId": 1420704, + "weight": 1 + }, + { + "id": 3000, + "nodePlanId": 60410, + "nodeId": 1420804, + "weight": 1 + }, + { + "id": 3001, + "nodePlanId": 60410, + "nodeId": 2420104, + "weight": 1 + }, + { + "id": 3002, + "nodePlanId": 60410, + "nodeId": 2420204, + "weight": 1 + }, + { + "id": 3003, + "nodePlanId": 60410, + "nodeId": 2420304, + "weight": 1 + }, + { + "id": 3004, + "nodePlanId": 60410, + "nodeId": 2420404, + "weight": 1 + }, + { + "id": 3005, + "nodePlanId": 60410, + "nodeId": 2420504, + "weight": 2 + }, + { + "id": 3006, + "nodePlanId": 60410, + "nodeId": 2420604, + "weight": 2 + }, + { + "id": 3007, + "nodePlanId": 60410, + "nodeId": 5410104, + "weight": 3 + }, + { + "id": 3008, + "nodePlanId": 60410, + "nodeId": 6410104, + "weight": 3 + }, + { + "id": 3009, + "nodePlanId": 60411, + "nodeId": 1420104, + "weight": 1 + }, + { + "id": 3010, + "nodePlanId": 60411, + "nodeId": 1420204, + "weight": 1 + }, + { + "id": 3011, + "nodePlanId": 60411, + "nodeId": 1420304, + "weight": 1 + }, + { + "id": 3012, + "nodePlanId": 60411, + "nodeId": 1420404, + "weight": 1 + }, + { + "id": 3013, + "nodePlanId": 60411, + "nodeId": 1420504, + "weight": 1 + }, + { + "id": 3014, + "nodePlanId": 60411, + "nodeId": 1420604, + "weight": 1 + }, + { + "id": 3015, + "nodePlanId": 60411, + "nodeId": 1420704, + "weight": 1 + }, + { + "id": 3016, + "nodePlanId": 60411, + "nodeId": 1420804, + "weight": 1 + }, + { + "id": 3017, + "nodePlanId": 60411, + "nodeId": 2420104, + "weight": 1 + }, + { + "id": 3018, + "nodePlanId": 60411, + "nodeId": 2420204, + "weight": 1 + }, + { + "id": 3019, + "nodePlanId": 60411, + "nodeId": 2420304, + "weight": 1 + }, + { + "id": 3020, + "nodePlanId": 60411, + "nodeId": 2420404, + "weight": 1 + }, + { + "id": 3021, + "nodePlanId": 60411, + "nodeId": 2420504, + "weight": 2 + }, + { + "id": 3022, + "nodePlanId": 60411, + "nodeId": 2420604, + "weight": 2 + }, + { + "id": 3023, + "nodePlanId": 60411, + "nodeId": 4410104, + "weight": 2 + }, + { + "id": 3024, + "nodePlanId": 60411, + "nodeId": 6410104, + "weight": 2 + }, + { + "id": 3025, + "nodePlanId": 60411, + "nodeId": 6410104, + "weight": 2 + }, + { + "id": 3026, + "nodePlanId": 60412, + "nodeId": 1430104, + "weight": 1 + }, + { + "id": 3027, + "nodePlanId": 60412, + "nodeId": 1430204, + "weight": 1 + }, + { + "id": 3028, + "nodePlanId": 60412, + "nodeId": 1430304, + "weight": 1 + }, + { + "id": 3029, + "nodePlanId": 60412, + "nodeId": 1430404, + "weight": 1 + }, + { + "id": 3030, + "nodePlanId": 60412, + "nodeId": 1430504, + "weight": 1 + }, + { + "id": 3031, + "nodePlanId": 60412, + "nodeId": 2430104, + "weight": 1.5 + }, + { + "id": 3032, + "nodePlanId": 60412, + "nodeId": 2430204, + "weight": 1.5 + }, + { + "id": 3033, + "nodePlanId": 60412, + "nodeId": 2430304, + "weight": 1 + }, + { + "id": 3034, + "nodePlanId": 60412, + "nodeId": 2430404, + "weight": 1 + }, + { + "id": 3035, + "nodePlanId": 60412, + "nodeId": 2430504, + "weight": 1 + }, + { + "id": 3036, + "nodePlanId": 60412, + "nodeId": 2430604, + "weight": 1 + }, + { + "id": 3037, + "nodePlanId": 60413, + "nodeId": 1430604, + "weight": 1 + }, + { + "id": 3038, + "nodePlanId": 60413, + "nodeId": 1430704, + "weight": 1 + }, + { + "id": 3039, + "nodePlanId": 60413, + "nodeId": 1430804, + "weight": 1 + }, + { + "id": 3040, + "nodePlanId": 60413, + "nodeId": 2430104, + "weight": 1 + }, + { + "id": 3041, + "nodePlanId": 60413, + "nodeId": 2430204, + "weight": 1 + }, + { + "id": 3042, + "nodePlanId": 60413, + "nodeId": 2430304, + "weight": 2 + }, + { + "id": 3043, + "nodePlanId": 60413, + "nodeId": 2430404, + "weight": 2 + }, + { + "id": 3044, + "nodePlanId": 60413, + "nodeId": 2430504, + "weight": 1 + }, + { + "id": 3045, + "nodePlanId": 60413, + "nodeId": 2430604, + "weight": 1 + }, + { + "id": 3046, + "nodePlanId": 60413, + "nodeId": 5410104, + "weight": 3 + }, + { + "id": 3047, + "nodePlanId": 60413, + "nodeId": 6410104, + "weight": 2 + }, + { + "id": 3048, + "nodePlanId": 60414, + "nodeId": 4410104, + "weight": 1 + }, + { + "id": 3049, + "nodePlanId": 60415, + "nodeId": 7410104, + "weight": 1 + }, + { + "id": 3050, + "nodePlanId": 60501, + "nodeId": 1410105, + "weight": 1 + }, + { + "id": 3051, + "nodePlanId": 60501, + "nodeId": 1410205, + "weight": 1 + }, + { + "id": 3052, + "nodePlanId": 60501, + "nodeId": 1410305, + "weight": 1 + }, + { + "id": 3053, + "nodePlanId": 60501, + "nodeId": 1410405, + "weight": 1 + }, + { + "id": 3054, + "nodePlanId": 60501, + "nodeId": 1410505, + "weight": 1 + }, + { + "id": 3055, + "nodePlanId": 60501, + "nodeId": 1410605, + "weight": 1 + }, + { + "id": 3056, + "nodePlanId": 60501, + "nodeId": 1410705, + "weight": 1 + }, + { + "id": 3057, + "nodePlanId": 60501, + "nodeId": 1410805, + "weight": 1 + }, + { + "id": 3058, + "nodePlanId": 60502, + "nodeId": 1410105, + "weight": 1 + }, + { + "id": 3059, + "nodePlanId": 60502, + "nodeId": 1410205, + "weight": 1 + }, + { + "id": 3060, + "nodePlanId": 60502, + "nodeId": 1410305, + "weight": 1 + }, + { + "id": 3061, + "nodePlanId": 60502, + "nodeId": 1410405, + "weight": 1 + }, + { + "id": 3062, + "nodePlanId": 60502, + "nodeId": 1410505, + "weight": 1 + }, + { + "id": 3063, + "nodePlanId": 60502, + "nodeId": 1410605, + "weight": 1 + }, + { + "id": 3064, + "nodePlanId": 60502, + "nodeId": 1410705, + "weight": 1 + }, + { + "id": 3065, + "nodePlanId": 60502, + "nodeId": 1410805, + "weight": 1 + }, + { + "id": 3066, + "nodePlanId": 60503, + "nodeId": 1410105, + "weight": 1 + }, + { + "id": 3067, + "nodePlanId": 60503, + "nodeId": 1410205, + "weight": 1 + }, + { + "id": 3068, + "nodePlanId": 60503, + "nodeId": 1410305, + "weight": 1 + }, + { + "id": 3069, + "nodePlanId": 60503, + "nodeId": 1410405, + "weight": 1 + }, + { + "id": 3070, + "nodePlanId": 60503, + "nodeId": 1410505, + "weight": 1 + }, + { + "id": 3071, + "nodePlanId": 60503, + "nodeId": 1410605, + "weight": 1 + }, + { + "id": 3072, + "nodePlanId": 60503, + "nodeId": 1410705, + "weight": 1 + }, + { + "id": 3073, + "nodePlanId": 60503, + "nodeId": 1410805, + "weight": 1 + }, + { + "id": 3074, + "nodePlanId": 60503, + "nodeId": 2410105, + "weight": 4 + }, + { + "id": 3075, + "nodePlanId": 60503, + "nodeId": 2410205, + "weight": 4 + }, + { + "id": 3076, + "nodePlanId": 60503, + "nodeId": 6410105, + "weight": 8 + }, + { + "id": 3077, + "nodePlanId": 60504, + "nodeId": 2410305, + "weight": 1 + }, + { + "id": 3078, + "nodePlanId": 60504, + "nodeId": 2410405, + "weight": 1 + }, + { + "id": 3079, + "nodePlanId": 60504, + "nodeId": 2410505, + "weight": 1 + }, + { + "id": 3080, + "nodePlanId": 60504, + "nodeId": 2410605, + "weight": 1 + }, + { + "id": 3081, + "nodePlanId": 60505, + "nodeId": 5410105, + "weight": 1 + }, + { + "id": 3082, + "nodePlanId": 60506, + "nodeId": 1420105, + "weight": 1 + }, + { + "id": 3083, + "nodePlanId": 60506, + "nodeId": 1420205, + "weight": 1 + }, + { + "id": 3084, + "nodePlanId": 60506, + "nodeId": 1420305, + "weight": 1 + }, + { + "id": 3085, + "nodePlanId": 60506, + "nodeId": 1420405, + "weight": 1 + }, + { + "id": 3086, + "nodePlanId": 60506, + "nodeId": 1420505, + "weight": 1 + }, + { + "id": 3087, + "nodePlanId": 60506, + "nodeId": 1420605, + "weight": 1 + }, + { + "id": 3088, + "nodePlanId": 60506, + "nodeId": 1420705, + "weight": 1 + }, + { + "id": 3089, + "nodePlanId": 60506, + "nodeId": 1420805, + "weight": 1 + }, + { + "id": 3090, + "nodePlanId": 60506, + "nodeId": 2420105, + "weight": 2 + }, + { + "id": 3091, + "nodePlanId": 60506, + "nodeId": 2420205, + "weight": 2 + }, + { + "id": 3092, + "nodePlanId": 60506, + "nodeId": 2420305, + "weight": 1 + }, + { + "id": 3093, + "nodePlanId": 60506, + "nodeId": 2420405, + "weight": 1 + }, + { + "id": 3094, + "nodePlanId": 60506, + "nodeId": 2420505, + "weight": 1 + }, + { + "id": 3095, + "nodePlanId": 60506, + "nodeId": 2420605, + "weight": 1 + }, + { + "id": 3096, + "nodePlanId": 60506, + "nodeId": 4410105, + "weight": 3 + }, + { + "id": 3097, + "nodePlanId": 60506, + "nodeId": 6410105, + "weight": 3 + }, + { + "id": 3098, + "nodePlanId": 60507, + "nodeId": 1420105, + "weight": 1 + }, + { + "id": 3099, + "nodePlanId": 60507, + "nodeId": 1420205, + "weight": 1 + }, + { + "id": 3100, + "nodePlanId": 60507, + "nodeId": 1420305, + "weight": 1 + }, + { + "id": 3101, + "nodePlanId": 60507, + "nodeId": 1420405, + "weight": 1 + }, + { + "id": 3102, + "nodePlanId": 60507, + "nodeId": 1420505, + "weight": 1 + }, + { + "id": 3103, + "nodePlanId": 60507, + "nodeId": 1420605, + "weight": 1 + }, + { + "id": 3104, + "nodePlanId": 60507, + "nodeId": 1420705, + "weight": 1 + }, + { + "id": 3105, + "nodePlanId": 60507, + "nodeId": 1420805, + "weight": 1 + }, + { + "id": 3106, + "nodePlanId": 60507, + "nodeId": 2420105, + "weight": 1 + }, + { + "id": 3107, + "nodePlanId": 60507, + "nodeId": 2420205, + "weight": 1 + }, + { + "id": 3108, + "nodePlanId": 60507, + "nodeId": 2420305, + "weight": 2 + }, + { + "id": 3109, + "nodePlanId": 60507, + "nodeId": 2420405, + "weight": 2 + }, + { + "id": 3110, + "nodePlanId": 60507, + "nodeId": 2420505, + "weight": 1 + }, + { + "id": 3111, + "nodePlanId": 60507, + "nodeId": 2420605, + "weight": 1 + }, + { + "id": 3112, + "nodePlanId": 60507, + "nodeId": 5410105, + "weight": 3 + }, + { + "id": 3113, + "nodePlanId": 60508, + "nodeId": 1420105, + "weight": 1 + }, + { + "id": 3114, + "nodePlanId": 60508, + "nodeId": 1420205, + "weight": 1 + }, + { + "id": 3115, + "nodePlanId": 60508, + "nodeId": 1420305, + "weight": 1 + }, + { + "id": 3116, + "nodePlanId": 60508, + "nodeId": 1420405, + "weight": 1 + }, + { + "id": 3117, + "nodePlanId": 60508, + "nodeId": 1420505, + "weight": 1 + }, + { + "id": 3118, + "nodePlanId": 60508, + "nodeId": 1420605, + "weight": 1 + }, + { + "id": 3119, + "nodePlanId": 60508, + "nodeId": 1420705, + "weight": 1 + }, + { + "id": 3120, + "nodePlanId": 60508, + "nodeId": 1420805, + "weight": 1 + }, + { + "id": 3121, + "nodePlanId": 60508, + "nodeId": 2420105, + "weight": 1 + }, + { + "id": 3122, + "nodePlanId": 60508, + "nodeId": 2420205, + "weight": 1 + }, + { + "id": 3123, + "nodePlanId": 60508, + "nodeId": 2420305, + "weight": 1 + }, + { + "id": 3124, + "nodePlanId": 60508, + "nodeId": 2420405, + "weight": 1 + }, + { + "id": 3125, + "nodePlanId": 60508, + "nodeId": 2420505, + "weight": 2 + }, + { + "id": 3126, + "nodePlanId": 60508, + "nodeId": 2420605, + "weight": 2 + }, + { + "id": 3127, + "nodePlanId": 60508, + "nodeId": 5410105, + "weight": 3 + }, + { + "id": 3128, + "nodePlanId": 60508, + "nodeId": 6410105, + "weight": 3 + }, + { + "id": 3129, + "nodePlanId": 60509, + "nodeId": 3410105, + "weight": 1 + }, + { + "id": 3130, + "nodePlanId": 60510, + "nodeId": 1420105, + "weight": 1 + }, + { + "id": 3131, + "nodePlanId": 60510, + "nodeId": 1420205, + "weight": 1 + }, + { + "id": 3132, + "nodePlanId": 60510, + "nodeId": 1420305, + "weight": 1 + }, + { + "id": 3133, + "nodePlanId": 60510, + "nodeId": 1420405, + "weight": 1 + }, + { + "id": 3134, + "nodePlanId": 60510, + "nodeId": 1420505, + "weight": 1 + }, + { + "id": 3135, + "nodePlanId": 60510, + "nodeId": 1420605, + "weight": 1 + }, + { + "id": 3136, + "nodePlanId": 60510, + "nodeId": 1420705, + "weight": 1 + }, + { + "id": 3137, + "nodePlanId": 60510, + "nodeId": 1420805, + "weight": 1 + }, + { + "id": 3138, + "nodePlanId": 60510, + "nodeId": 2420105, + "weight": 1 + }, + { + "id": 3139, + "nodePlanId": 60510, + "nodeId": 2420205, + "weight": 1 + }, + { + "id": 3140, + "nodePlanId": 60510, + "nodeId": 2420305, + "weight": 1 + }, + { + "id": 3141, + "nodePlanId": 60510, + "nodeId": 2420405, + "weight": 1 + }, + { + "id": 3142, + "nodePlanId": 60510, + "nodeId": 2420505, + "weight": 2 + }, + { + "id": 3143, + "nodePlanId": 60510, + "nodeId": 2420605, + "weight": 2 + }, + { + "id": 3144, + "nodePlanId": 60510, + "nodeId": 5410105, + "weight": 3 + }, + { + "id": 3145, + "nodePlanId": 60510, + "nodeId": 6410105, + "weight": 3 + }, + { + "id": 3146, + "nodePlanId": 60511, + "nodeId": 1420105, + "weight": 1 + }, + { + "id": 3147, + "nodePlanId": 60511, + "nodeId": 1420205, + "weight": 1 + }, + { + "id": 3148, + "nodePlanId": 60511, + "nodeId": 1420305, + "weight": 1 + }, + { + "id": 3149, + "nodePlanId": 60511, + "nodeId": 1420405, + "weight": 1 + }, + { + "id": 3150, + "nodePlanId": 60511, + "nodeId": 1420505, + "weight": 1 + }, + { + "id": 3151, + "nodePlanId": 60511, + "nodeId": 1420605, + "weight": 1 + }, + { + "id": 3152, + "nodePlanId": 60511, + "nodeId": 1420705, + "weight": 1 + }, + { + "id": 3153, + "nodePlanId": 60511, + "nodeId": 1420805, + "weight": 1 + }, + { + "id": 3154, + "nodePlanId": 60511, + "nodeId": 2420105, + "weight": 1 + }, + { + "id": 3155, + "nodePlanId": 60511, + "nodeId": 2420205, + "weight": 1 + }, + { + "id": 3156, + "nodePlanId": 60511, + "nodeId": 2420305, + "weight": 1 + }, + { + "id": 3157, + "nodePlanId": 60511, + "nodeId": 2420405, + "weight": 1 + }, + { + "id": 3158, + "nodePlanId": 60511, + "nodeId": 2420505, + "weight": 2 + }, + { + "id": 3159, + "nodePlanId": 60511, + "nodeId": 2420605, + "weight": 2 + }, + { + "id": 3160, + "nodePlanId": 60511, + "nodeId": 4410105, + "weight": 2 + }, + { + "id": 3161, + "nodePlanId": 60511, + "nodeId": 6410105, + "weight": 2 + }, + { + "id": 3162, + "nodePlanId": 60511, + "nodeId": 6410105, + "weight": 2 + }, + { + "id": 3163, + "nodePlanId": 60512, + "nodeId": 1430105, + "weight": 1 + }, + { + "id": 3164, + "nodePlanId": 60512, + "nodeId": 1430205, + "weight": 1 + }, + { + "id": 3165, + "nodePlanId": 60512, + "nodeId": 1430305, + "weight": 1 + }, + { + "id": 3166, + "nodePlanId": 60512, + "nodeId": 1430405, + "weight": 1 + }, + { + "id": 3167, + "nodePlanId": 60512, + "nodeId": 1430505, + "weight": 1 + }, + { + "id": 3168, + "nodePlanId": 60512, + "nodeId": 2430105, + "weight": 1.5 + }, + { + "id": 3169, + "nodePlanId": 60512, + "nodeId": 2430205, + "weight": 1.5 + }, + { + "id": 3170, + "nodePlanId": 60512, + "nodeId": 2430305, + "weight": 1 + }, + { + "id": 3171, + "nodePlanId": 60512, + "nodeId": 2430405, + "weight": 1 + }, + { + "id": 3172, + "nodePlanId": 60512, + "nodeId": 2430505, + "weight": 1 + }, + { + "id": 3173, + "nodePlanId": 60512, + "nodeId": 2430605, + "weight": 1 + }, + { + "id": 3174, + "nodePlanId": 60513, + "nodeId": 1430605, + "weight": 1 + }, + { + "id": 3175, + "nodePlanId": 60513, + "nodeId": 1430705, + "weight": 1 + }, + { + "id": 3176, + "nodePlanId": 60513, + "nodeId": 1430805, + "weight": 1 + }, + { + "id": 3177, + "nodePlanId": 60513, + "nodeId": 2430105, + "weight": 1 + }, + { + "id": 3178, + "nodePlanId": 60513, + "nodeId": 2430205, + "weight": 1 + }, + { + "id": 3179, + "nodePlanId": 60513, + "nodeId": 2430305, + "weight": 2 + }, + { + "id": 3180, + "nodePlanId": 60513, + "nodeId": 2430405, + "weight": 2 + }, + { + "id": 3181, + "nodePlanId": 60513, + "nodeId": 2430505, + "weight": 1 + }, + { + "id": 3182, + "nodePlanId": 60513, + "nodeId": 2430605, + "weight": 1 + }, + { + "id": 3183, + "nodePlanId": 60513, + "nodeId": 5410105, + "weight": 3 + }, + { + "id": 3184, + "nodePlanId": 60513, + "nodeId": 6410105, + "weight": 2 + }, + { + "id": 3185, + "nodePlanId": 60514, + "nodeId": 4410105, + "weight": 1 + }, + { + "id": 3186, + "nodePlanId": 60514, + "nodeId": 6410105, + "weight": 1 + }, + { + "id": 3187, + "nodePlanId": 60514, + "nodeId": 6410105, + "weight": 1 + }, + { + "id": 3188, + "nodePlanId": 60514, + "nodeId": 2430505, + "weight": 1 + }, + { + "id": 3189, + "nodePlanId": 60514, + "nodeId": 2430605, + "weight": 1 + }, + { + "id": 3190, + "nodePlanId": 60515, + "nodeId": 1430105, + "weight": 1 + }, + { + "id": 3191, + "nodePlanId": 60515, + "nodeId": 1430205, + "weight": 1 + }, + { + "id": 3192, + "nodePlanId": 60515, + "nodeId": 1430305, + "weight": 1 + }, + { + "id": 3193, + "nodePlanId": 60515, + "nodeId": 1430405, + "weight": 1 + }, + { + "id": 3194, + "nodePlanId": 60515, + "nodeId": 1430505, + "weight": 1 + }, + { + "id": 3195, + "nodePlanId": 60515, + "nodeId": 1430605, + "weight": 1 + }, + { + "id": 3196, + "nodePlanId": 60515, + "nodeId": 1430705, + "weight": 1 + }, + { + "id": 3197, + "nodePlanId": 60515, + "nodeId": 1430805, + "weight": 1 + }, + { + "id": 3198, + "nodePlanId": 60515, + "nodeId": 6410105, + "weight": 3 + }, + { + "id": 3199, + "nodePlanId": 60515, + "nodeId": 6410105, + "weight": 2 + }, + { + "id": 3200, + "nodePlanId": 60516, + "nodeId": 5410105, + "weight": 1 + }, + { + "id": 3201, + "nodePlanId": 60516, + "nodeId": 5410105, + "weight": 1 + }, + { + "id": 3202, + "nodePlanId": 60516, + "nodeId": 1430105, + "weight": 1 + }, + { + "id": 3203, + "nodePlanId": 60516, + "nodeId": 1430205, + "weight": 1 + }, + { + "id": 3204, + "nodePlanId": 60517, + "nodeId": 2430105, + "weight": 1 + }, + { + "id": 3205, + "nodePlanId": 60517, + "nodeId": 2430205, + "weight": 1 + }, + { + "id": 3206, + "nodePlanId": 60517, + "nodeId": 2430305, + "weight": 1 + }, + { + "id": 3207, + "nodePlanId": 60517, + "nodeId": 2430405, + "weight": 1 + }, + { + "id": 3208, + "nodePlanId": 60517, + "nodeId": 2430505, + "weight": 1 + }, + { + "id": 3209, + "nodePlanId": 60517, + "nodeId": 2430605, + "weight": 1 + }, + { + "id": 3210, + "nodePlanId": 60518, + "nodeId": 5410105, + "weight": 1 + }, + { + "id": 3211, + "nodePlanId": 60518, + "nodeId": 6410105, + "weight": 1 + }, + { + "id": 3212, + "nodePlanId": 60519, + "nodeId": 4410105, + "weight": 1 + }, + { + "id": 3213, + "nodePlanId": 60520, + "nodeId": 7410105, + "weight": 1 + }, + { + "id": 3214, + "nodePlanId": 70101, + "nodeId": 1510101, + "weight": 1 + }, + { + "id": 3215, + "nodePlanId": 70101, + "nodeId": 1510201, + "weight": 1 + }, + { + "id": 3216, + "nodePlanId": 70101, + "nodeId": 1510301, + "weight": 1 + }, + { + "id": 3217, + "nodePlanId": 70101, + "nodeId": 1510401, + "weight": 1 + }, + { + "id": 3218, + "nodePlanId": 70101, + "nodeId": 1510501, + "weight": 1 + }, + { + "id": 3219, + "nodePlanId": 70101, + "nodeId": 1510601, + "weight": 1 + }, + { + "id": 3220, + "nodePlanId": 70101, + "nodeId": 1510701, + "weight": 1 + }, + { + "id": 3221, + "nodePlanId": 70101, + "nodeId": 1510801, + "weight": 1 + }, + { + "id": 3222, + "nodePlanId": 70102, + "nodeId": 1510101, + "weight": 1 + }, + { + "id": 3223, + "nodePlanId": 70102, + "nodeId": 1510201, + "weight": 1 + }, + { + "id": 3224, + "nodePlanId": 70102, + "nodeId": 1510301, + "weight": 1 + }, + { + "id": 3225, + "nodePlanId": 70102, + "nodeId": 1510401, + "weight": 1 + }, + { + "id": 3226, + "nodePlanId": 70102, + "nodeId": 1510501, + "weight": 1 + }, + { + "id": 3227, + "nodePlanId": 70102, + "nodeId": 1510601, + "weight": 1 + }, + { + "id": 3228, + "nodePlanId": 70102, + "nodeId": 1510701, + "weight": 1 + }, + { + "id": 3229, + "nodePlanId": 70102, + "nodeId": 1510801, + "weight": 1 + }, + { + "id": 3230, + "nodePlanId": 70103, + "nodeId": 1510101, + "weight": 1 + }, + { + "id": 3231, + "nodePlanId": 70103, + "nodeId": 1510201, + "weight": 1 + }, + { + "id": 3232, + "nodePlanId": 70103, + "nodeId": 1510301, + "weight": 1 + }, + { + "id": 3233, + "nodePlanId": 70103, + "nodeId": 1510401, + "weight": 1 + }, + { + "id": 3234, + "nodePlanId": 70103, + "nodeId": 1510501, + "weight": 1 + }, + { + "id": 3235, + "nodePlanId": 70103, + "nodeId": 1510601, + "weight": 1 + }, + { + "id": 3236, + "nodePlanId": 70103, + "nodeId": 1510701, + "weight": 1 + }, + { + "id": 3237, + "nodePlanId": 70103, + "nodeId": 1510801, + "weight": 1 + }, + { + "id": 3238, + "nodePlanId": 70103, + "nodeId": 2510101, + "weight": 4 + }, + { + "id": 3239, + "nodePlanId": 70103, + "nodeId": 2510201, + "weight": 4 + }, + { + "id": 3240, + "nodePlanId": 70103, + "nodeId": 6510101, + "weight": 8 + }, + { + "id": 3241, + "nodePlanId": 70104, + "nodeId": 2510301, + "weight": 1 + }, + { + "id": 3242, + "nodePlanId": 70104, + "nodeId": 2510401, + "weight": 1 + }, + { + "id": 3243, + "nodePlanId": 70104, + "nodeId": 2510501, + "weight": 1 + }, + { + "id": 3244, + "nodePlanId": 70104, + "nodeId": 2510601, + "weight": 1 + }, + { + "id": 3245, + "nodePlanId": 70105, + "nodeId": 5510101, + "weight": 1 + }, + { + "id": 3246, + "nodePlanId": 70106, + "nodeId": 1520101, + "weight": 1 + }, + { + "id": 3247, + "nodePlanId": 70106, + "nodeId": 1520201, + "weight": 1 + }, + { + "id": 3248, + "nodePlanId": 70106, + "nodeId": 1520301, + "weight": 1 + }, + { + "id": 3249, + "nodePlanId": 70106, + "nodeId": 1520401, + "weight": 1 + }, + { + "id": 3250, + "nodePlanId": 70106, + "nodeId": 1520501, + "weight": 1 + }, + { + "id": 3251, + "nodePlanId": 70106, + "nodeId": 1520601, + "weight": 1 + }, + { + "id": 3252, + "nodePlanId": 70106, + "nodeId": 1520701, + "weight": 1 + }, + { + "id": 3253, + "nodePlanId": 70106, + "nodeId": 1520801, + "weight": 1 + }, + { + "id": 3254, + "nodePlanId": 70106, + "nodeId": 2520101, + "weight": 2 + }, + { + "id": 3255, + "nodePlanId": 70106, + "nodeId": 2520201, + "weight": 2 + }, + { + "id": 3256, + "nodePlanId": 70106, + "nodeId": 2520301, + "weight": 1 + }, + { + "id": 3257, + "nodePlanId": 70106, + "nodeId": 2520401, + "weight": 1 + }, + { + "id": 3258, + "nodePlanId": 70106, + "nodeId": 2520501, + "weight": 1 + }, + { + "id": 3259, + "nodePlanId": 70106, + "nodeId": 2520601, + "weight": 1 + }, + { + "id": 3260, + "nodePlanId": 70106, + "nodeId": 4510101, + "weight": 3 + }, + { + "id": 3261, + "nodePlanId": 70106, + "nodeId": 6510101, + "weight": 3 + }, + { + "id": 3262, + "nodePlanId": 70107, + "nodeId": 1520101, + "weight": 1 + }, + { + "id": 3263, + "nodePlanId": 70107, + "nodeId": 1520201, + "weight": 1 + }, + { + "id": 3264, + "nodePlanId": 70107, + "nodeId": 1520301, + "weight": 1 + }, + { + "id": 3265, + "nodePlanId": 70107, + "nodeId": 1520401, + "weight": 1 + }, + { + "id": 3266, + "nodePlanId": 70107, + "nodeId": 1520501, + "weight": 1 + }, + { + "id": 3267, + "nodePlanId": 70107, + "nodeId": 1520601, + "weight": 1 + }, + { + "id": 3268, + "nodePlanId": 70107, + "nodeId": 1520701, + "weight": 1 + }, + { + "id": 3269, + "nodePlanId": 70107, + "nodeId": 1520801, + "weight": 1 + }, + { + "id": 3270, + "nodePlanId": 70107, + "nodeId": 2520101, + "weight": 1 + }, + { + "id": 3271, + "nodePlanId": 70107, + "nodeId": 2520201, + "weight": 1 + }, + { + "id": 3272, + "nodePlanId": 70107, + "nodeId": 2520301, + "weight": 2 + }, + { + "id": 3273, + "nodePlanId": 70107, + "nodeId": 2520401, + "weight": 2 + }, + { + "id": 3274, + "nodePlanId": 70107, + "nodeId": 2520501, + "weight": 1 + }, + { + "id": 3275, + "nodePlanId": 70107, + "nodeId": 2520601, + "weight": 1 + }, + { + "id": 3276, + "nodePlanId": 70107, + "nodeId": 5510101, + "weight": 3 + }, + { + "id": 3277, + "nodePlanId": 70108, + "nodeId": 1520101, + "weight": 1 + }, + { + "id": 3278, + "nodePlanId": 70108, + "nodeId": 1520201, + "weight": 1 + }, + { + "id": 3279, + "nodePlanId": 70108, + "nodeId": 1520301, + "weight": 1 + }, + { + "id": 3280, + "nodePlanId": 70108, + "nodeId": 1520401, + "weight": 1 + }, + { + "id": 3281, + "nodePlanId": 70108, + "nodeId": 1520501, + "weight": 1 + }, + { + "id": 3282, + "nodePlanId": 70108, + "nodeId": 1520601, + "weight": 1 + }, + { + "id": 3283, + "nodePlanId": 70108, + "nodeId": 1520701, + "weight": 1 + }, + { + "id": 3284, + "nodePlanId": 70108, + "nodeId": 1520801, + "weight": 1 + }, + { + "id": 3285, + "nodePlanId": 70108, + "nodeId": 2520101, + "weight": 1 + }, + { + "id": 3286, + "nodePlanId": 70108, + "nodeId": 2520201, + "weight": 1 + }, + { + "id": 3287, + "nodePlanId": 70108, + "nodeId": 2520301, + "weight": 1 + }, + { + "id": 3288, + "nodePlanId": 70108, + "nodeId": 2520401, + "weight": 1 + }, + { + "id": 3289, + "nodePlanId": 70108, + "nodeId": 2520501, + "weight": 2 + }, + { + "id": 3290, + "nodePlanId": 70108, + "nodeId": 2520601, + "weight": 2 + }, + { + "id": 3291, + "nodePlanId": 70108, + "nodeId": 5510101, + "weight": 3 + }, + { + "id": 3292, + "nodePlanId": 70108, + "nodeId": 6510101, + "weight": 3 + }, + { + "id": 3293, + "nodePlanId": 70109, + "nodeId": 3510101, + "weight": 1 + }, + { + "id": 3294, + "nodePlanId": 70110, + "nodeId": 1520101, + "weight": 1 + }, + { + "id": 3295, + "nodePlanId": 70110, + "nodeId": 1520201, + "weight": 1 + }, + { + "id": 3296, + "nodePlanId": 70110, + "nodeId": 1520301, + "weight": 1 + }, + { + "id": 3297, + "nodePlanId": 70110, + "nodeId": 1520401, + "weight": 1 + }, + { + "id": 3298, + "nodePlanId": 70110, + "nodeId": 1520501, + "weight": 1 + }, + { + "id": 3299, + "nodePlanId": 70110, + "nodeId": 1520601, + "weight": 1 + }, + { + "id": 3300, + "nodePlanId": 70110, + "nodeId": 1520701, + "weight": 1 + }, + { + "id": 3301, + "nodePlanId": 70110, + "nodeId": 1520801, + "weight": 1 + }, + { + "id": 3302, + "nodePlanId": 70110, + "nodeId": 2520101, + "weight": 1 + }, + { + "id": 3303, + "nodePlanId": 70110, + "nodeId": 2520201, + "weight": 1 + }, + { + "id": 3304, + "nodePlanId": 70110, + "nodeId": 2520301, + "weight": 1 + }, + { + "id": 3305, + "nodePlanId": 70110, + "nodeId": 2520401, + "weight": 1 + }, + { + "id": 3306, + "nodePlanId": 70110, + "nodeId": 2520501, + "weight": 2 + }, + { + "id": 3307, + "nodePlanId": 70110, + "nodeId": 2520601, + "weight": 2 + }, + { + "id": 3308, + "nodePlanId": 70110, + "nodeId": 5510101, + "weight": 3 + }, + { + "id": 3309, + "nodePlanId": 70110, + "nodeId": 6510101, + "weight": 3 + }, + { + "id": 3310, + "nodePlanId": 70111, + "nodeId": 1520101, + "weight": 1 + }, + { + "id": 3311, + "nodePlanId": 70111, + "nodeId": 1520201, + "weight": 1 + }, + { + "id": 3312, + "nodePlanId": 70111, + "nodeId": 1520301, + "weight": 1 + }, + { + "id": 3313, + "nodePlanId": 70111, + "nodeId": 1520401, + "weight": 1 + }, + { + "id": 3314, + "nodePlanId": 70111, + "nodeId": 1520501, + "weight": 1 + }, + { + "id": 3315, + "nodePlanId": 70111, + "nodeId": 1520601, + "weight": 1 + }, + { + "id": 3316, + "nodePlanId": 70111, + "nodeId": 1520701, + "weight": 1 + }, + { + "id": 3317, + "nodePlanId": 70111, + "nodeId": 1520801, + "weight": 1 + }, + { + "id": 3318, + "nodePlanId": 70111, + "nodeId": 2520101, + "weight": 1 + }, + { + "id": 3319, + "nodePlanId": 70111, + "nodeId": 2520201, + "weight": 1 + }, + { + "id": 3320, + "nodePlanId": 70111, + "nodeId": 2520301, + "weight": 1 + }, + { + "id": 3321, + "nodePlanId": 70111, + "nodeId": 2520401, + "weight": 1 + }, + { + "id": 3322, + "nodePlanId": 70111, + "nodeId": 2520501, + "weight": 2 + }, + { + "id": 3323, + "nodePlanId": 70111, + "nodeId": 2520601, + "weight": 2 + }, + { + "id": 3324, + "nodePlanId": 70111, + "nodeId": 4510101, + "weight": 2 + }, + { + "id": 3325, + "nodePlanId": 70111, + "nodeId": 6510101, + "weight": 2 + }, + { + "id": 3326, + "nodePlanId": 70111, + "nodeId": 6510101, + "weight": 2 + }, + { + "id": 3327, + "nodePlanId": 70112, + "nodeId": 1530101, + "weight": 1 + }, + { + "id": 3328, + "nodePlanId": 70112, + "nodeId": 1530201, + "weight": 1 + }, + { + "id": 3329, + "nodePlanId": 70112, + "nodeId": 1530301, + "weight": 1 + }, + { + "id": 3330, + "nodePlanId": 70112, + "nodeId": 1530401, + "weight": 1 + }, + { + "id": 3331, + "nodePlanId": 70112, + "nodeId": 1530501, + "weight": 1 + }, + { + "id": 3332, + "nodePlanId": 70112, + "nodeId": 2530101, + "weight": 1.5 + }, + { + "id": 3333, + "nodePlanId": 70112, + "nodeId": 2530201, + "weight": 1.5 + }, + { + "id": 3334, + "nodePlanId": 70112, + "nodeId": 2530301, + "weight": 1 + }, + { + "id": 3335, + "nodePlanId": 70112, + "nodeId": 2530401, + "weight": 1 + }, + { + "id": 3336, + "nodePlanId": 70112, + "nodeId": 2530501, + "weight": 1 + }, + { + "id": 3337, + "nodePlanId": 70112, + "nodeId": 2530601, + "weight": 1 + }, + { + "id": 3338, + "nodePlanId": 70113, + "nodeId": 1530601, + "weight": 1 + }, + { + "id": 3339, + "nodePlanId": 70113, + "nodeId": 1530701, + "weight": 1 + }, + { + "id": 3340, + "nodePlanId": 70113, + "nodeId": 1530801, + "weight": 1 + }, + { + "id": 3341, + "nodePlanId": 70113, + "nodeId": 2530101, + "weight": 1 + }, + { + "id": 3342, + "nodePlanId": 70113, + "nodeId": 2530201, + "weight": 1 + }, + { + "id": 3343, + "nodePlanId": 70113, + "nodeId": 2530301, + "weight": 2 + }, + { + "id": 3344, + "nodePlanId": 70113, + "nodeId": 2530401, + "weight": 2 + }, + { + "id": 3345, + "nodePlanId": 70113, + "nodeId": 2530501, + "weight": 1 + }, + { + "id": 3346, + "nodePlanId": 70113, + "nodeId": 2530601, + "weight": 1 + }, + { + "id": 3347, + "nodePlanId": 70113, + "nodeId": 5510101, + "weight": 3 + }, + { + "id": 3348, + "nodePlanId": 70113, + "nodeId": 6510101, + "weight": 2 + }, + { + "id": 3349, + "nodePlanId": 70114, + "nodeId": 4510101, + "weight": 1 + }, + { + "id": 3350, + "nodePlanId": 70115, + "nodeId": 7510101, + "weight": 1 + }, + { + "id": 3351, + "nodePlanId": 70201, + "nodeId": 1510102, + "weight": 1 + }, + { + "id": 3352, + "nodePlanId": 70201, + "nodeId": 1510202, + "weight": 1 + }, + { + "id": 3353, + "nodePlanId": 70201, + "nodeId": 1510302, + "weight": 1 + }, + { + "id": 3354, + "nodePlanId": 70201, + "nodeId": 1510402, + "weight": 1 + }, + { + "id": 3355, + "nodePlanId": 70201, + "nodeId": 1510502, + "weight": 1 + }, + { + "id": 3356, + "nodePlanId": 70201, + "nodeId": 1510602, + "weight": 1 + }, + { + "id": 3357, + "nodePlanId": 70201, + "nodeId": 1510702, + "weight": 1 + }, + { + "id": 3358, + "nodePlanId": 70201, + "nodeId": 1510802, + "weight": 1 + }, + { + "id": 3359, + "nodePlanId": 70202, + "nodeId": 1510102, + "weight": 1 + }, + { + "id": 3360, + "nodePlanId": 70202, + "nodeId": 1510202, + "weight": 1 + }, + { + "id": 3361, + "nodePlanId": 70202, + "nodeId": 1510302, + "weight": 1 + }, + { + "id": 3362, + "nodePlanId": 70202, + "nodeId": 1510402, + "weight": 1 + }, + { + "id": 3363, + "nodePlanId": 70202, + "nodeId": 1510502, + "weight": 1 + }, + { + "id": 3364, + "nodePlanId": 70202, + "nodeId": 1510602, + "weight": 1 + }, + { + "id": 3365, + "nodePlanId": 70202, + "nodeId": 1510702, + "weight": 1 + }, + { + "id": 3366, + "nodePlanId": 70202, + "nodeId": 1510802, + "weight": 1 + }, + { + "id": 3367, + "nodePlanId": 70203, + "nodeId": 1510102, + "weight": 1 + }, + { + "id": 3368, + "nodePlanId": 70203, + "nodeId": 1510202, + "weight": 1 + }, + { + "id": 3369, + "nodePlanId": 70203, + "nodeId": 1510302, + "weight": 1 + }, + { + "id": 3370, + "nodePlanId": 70203, + "nodeId": 1510402, + "weight": 1 + }, + { + "id": 3371, + "nodePlanId": 70203, + "nodeId": 1510502, + "weight": 1 + }, + { + "id": 3372, + "nodePlanId": 70203, + "nodeId": 1510602, + "weight": 1 + }, + { + "id": 3373, + "nodePlanId": 70203, + "nodeId": 1510702, + "weight": 1 + }, + { + "id": 3374, + "nodePlanId": 70203, + "nodeId": 1510802, + "weight": 1 + }, + { + "id": 3375, + "nodePlanId": 70203, + "nodeId": 2510102, + "weight": 4 + }, + { + "id": 3376, + "nodePlanId": 70203, + "nodeId": 2510202, + "weight": 4 + }, + { + "id": 3377, + "nodePlanId": 70203, + "nodeId": 6510102, + "weight": 8 + }, + { + "id": 3378, + "nodePlanId": 70204, + "nodeId": 2510302, + "weight": 1 + }, + { + "id": 3379, + "nodePlanId": 70204, + "nodeId": 2510402, + "weight": 1 + }, + { + "id": 3380, + "nodePlanId": 70204, + "nodeId": 2510502, + "weight": 1 + }, + { + "id": 3381, + "nodePlanId": 70204, + "nodeId": 2510602, + "weight": 1 + }, + { + "id": 3382, + "nodePlanId": 70205, + "nodeId": 5510102, + "weight": 1 + }, + { + "id": 3383, + "nodePlanId": 70206, + "nodeId": 1520102, + "weight": 1 + }, + { + "id": 3384, + "nodePlanId": 70206, + "nodeId": 1520202, + "weight": 1 + }, + { + "id": 3385, + "nodePlanId": 70206, + "nodeId": 1520302, + "weight": 1 + }, + { + "id": 3386, + "nodePlanId": 70206, + "nodeId": 1520402, + "weight": 1 + }, + { + "id": 3387, + "nodePlanId": 70206, + "nodeId": 1520502, + "weight": 1 + }, + { + "id": 3388, + "nodePlanId": 70206, + "nodeId": 1520602, + "weight": 1 + }, + { + "id": 3389, + "nodePlanId": 70206, + "nodeId": 1520702, + "weight": 1 + }, + { + "id": 3390, + "nodePlanId": 70206, + "nodeId": 1520802, + "weight": 1 + }, + { + "id": 3391, + "nodePlanId": 70206, + "nodeId": 2520102, + "weight": 2 + }, + { + "id": 3392, + "nodePlanId": 70206, + "nodeId": 2520202, + "weight": 2 + }, + { + "id": 3393, + "nodePlanId": 70206, + "nodeId": 2520302, + "weight": 1 + }, + { + "id": 3394, + "nodePlanId": 70206, + "nodeId": 2520402, + "weight": 1 + }, + { + "id": 3395, + "nodePlanId": 70206, + "nodeId": 2520502, + "weight": 1 + }, + { + "id": 3396, + "nodePlanId": 70206, + "nodeId": 2520602, + "weight": 1 + }, + { + "id": 3397, + "nodePlanId": 70206, + "nodeId": 4510102, + "weight": 3 + }, + { + "id": 3398, + "nodePlanId": 70206, + "nodeId": 6510102, + "weight": 3 + }, + { + "id": 3399, + "nodePlanId": 70207, + "nodeId": 1520102, + "weight": 1 + }, + { + "id": 3400, + "nodePlanId": 70207, + "nodeId": 1520202, + "weight": 1 + }, + { + "id": 3401, + "nodePlanId": 70207, + "nodeId": 1520302, + "weight": 1 + }, + { + "id": 3402, + "nodePlanId": 70207, + "nodeId": 1520402, + "weight": 1 + }, + { + "id": 3403, + "nodePlanId": 70207, + "nodeId": 1520502, + "weight": 1 + }, + { + "id": 3404, + "nodePlanId": 70207, + "nodeId": 1520602, + "weight": 1 + }, + { + "id": 3405, + "nodePlanId": 70207, + "nodeId": 1520702, + "weight": 1 + }, + { + "id": 3406, + "nodePlanId": 70207, + "nodeId": 1520802, + "weight": 1 + }, + { + "id": 3407, + "nodePlanId": 70207, + "nodeId": 2520102, + "weight": 1 + }, + { + "id": 3408, + "nodePlanId": 70207, + "nodeId": 2520202, + "weight": 1 + }, + { + "id": 3409, + "nodePlanId": 70207, + "nodeId": 2520302, + "weight": 2 + }, + { + "id": 3410, + "nodePlanId": 70207, + "nodeId": 2520402, + "weight": 2 + }, + { + "id": 3411, + "nodePlanId": 70207, + "nodeId": 2520502, + "weight": 1 + }, + { + "id": 3412, + "nodePlanId": 70207, + "nodeId": 2520602, + "weight": 1 + }, + { + "id": 3413, + "nodePlanId": 70207, + "nodeId": 5510102, + "weight": 3 + }, + { + "id": 3414, + "nodePlanId": 70208, + "nodeId": 1520102, + "weight": 1 + }, + { + "id": 3415, + "nodePlanId": 70208, + "nodeId": 1520202, + "weight": 1 + }, + { + "id": 3416, + "nodePlanId": 70208, + "nodeId": 1520302, + "weight": 1 + }, + { + "id": 3417, + "nodePlanId": 70208, + "nodeId": 1520402, + "weight": 1 + }, + { + "id": 3418, + "nodePlanId": 70208, + "nodeId": 1520502, + "weight": 1 + }, + { + "id": 3419, + "nodePlanId": 70208, + "nodeId": 1520602, + "weight": 1 + }, + { + "id": 3420, + "nodePlanId": 70208, + "nodeId": 1520702, + "weight": 1 + }, + { + "id": 3421, + "nodePlanId": 70208, + "nodeId": 1520802, + "weight": 1 + }, + { + "id": 3422, + "nodePlanId": 70208, + "nodeId": 2520102, + "weight": 1 + }, + { + "id": 3423, + "nodePlanId": 70208, + "nodeId": 2520202, + "weight": 1 + }, + { + "id": 3424, + "nodePlanId": 70208, + "nodeId": 2520302, + "weight": 1 + }, + { + "id": 3425, + "nodePlanId": 70208, + "nodeId": 2520402, + "weight": 1 + }, + { + "id": 3426, + "nodePlanId": 70208, + "nodeId": 2520502, + "weight": 2 + }, + { + "id": 3427, + "nodePlanId": 70208, + "nodeId": 2520602, + "weight": 2 + }, + { + "id": 3428, + "nodePlanId": 70208, + "nodeId": 5510102, + "weight": 3 + }, + { + "id": 3429, + "nodePlanId": 70208, + "nodeId": 6510102, + "weight": 3 + }, + { + "id": 3430, + "nodePlanId": 70209, + "nodeId": 3510102, + "weight": 1 + }, + { + "id": 3431, + "nodePlanId": 70210, + "nodeId": 1520102, + "weight": 1 + }, + { + "id": 3432, + "nodePlanId": 70210, + "nodeId": 1520202, + "weight": 1 + }, + { + "id": 3433, + "nodePlanId": 70210, + "nodeId": 1520302, + "weight": 1 + }, + { + "id": 3434, + "nodePlanId": 70210, + "nodeId": 1520402, + "weight": 1 + }, + { + "id": 3435, + "nodePlanId": 70210, + "nodeId": 1520502, + "weight": 1 + }, + { + "id": 3436, + "nodePlanId": 70210, + "nodeId": 1520602, + "weight": 1 + }, + { + "id": 3437, + "nodePlanId": 70210, + "nodeId": 1520702, + "weight": 1 + }, + { + "id": 3438, + "nodePlanId": 70210, + "nodeId": 1520802, + "weight": 1 + }, + { + "id": 3439, + "nodePlanId": 70210, + "nodeId": 2520102, + "weight": 1 + }, + { + "id": 3440, + "nodePlanId": 70210, + "nodeId": 2520202, + "weight": 1 + }, + { + "id": 3441, + "nodePlanId": 70210, + "nodeId": 2520302, + "weight": 1 + }, + { + "id": 3442, + "nodePlanId": 70210, + "nodeId": 2520402, + "weight": 1 + }, + { + "id": 3443, + "nodePlanId": 70210, + "nodeId": 2520502, + "weight": 2 + }, + { + "id": 3444, + "nodePlanId": 70210, + "nodeId": 2520602, + "weight": 2 + }, + { + "id": 3445, + "nodePlanId": 70210, + "nodeId": 5510102, + "weight": 3 + }, + { + "id": 3446, + "nodePlanId": 70210, + "nodeId": 6510102, + "weight": 3 + }, + { + "id": 3447, + "nodePlanId": 70211, + "nodeId": 1520102, + "weight": 1 + }, + { + "id": 3448, + "nodePlanId": 70211, + "nodeId": 1520202, + "weight": 1 + }, + { + "id": 3449, + "nodePlanId": 70211, + "nodeId": 1520302, + "weight": 1 + }, + { + "id": 3450, + "nodePlanId": 70211, + "nodeId": 1520402, + "weight": 1 + }, + { + "id": 3451, + "nodePlanId": 70211, + "nodeId": 1520502, + "weight": 1 + }, + { + "id": 3452, + "nodePlanId": 70211, + "nodeId": 1520602, + "weight": 1 + }, + { + "id": 3453, + "nodePlanId": 70211, + "nodeId": 1520702, + "weight": 1 + }, + { + "id": 3454, + "nodePlanId": 70211, + "nodeId": 1520802, + "weight": 1 + }, + { + "id": 3455, + "nodePlanId": 70211, + "nodeId": 2520102, + "weight": 1 + }, + { + "id": 3456, + "nodePlanId": 70211, + "nodeId": 2520202, + "weight": 1 + }, + { + "id": 3457, + "nodePlanId": 70211, + "nodeId": 2520302, + "weight": 1 + }, + { + "id": 3458, + "nodePlanId": 70211, + "nodeId": 2520402, + "weight": 1 + }, + { + "id": 3459, + "nodePlanId": 70211, + "nodeId": 2520502, + "weight": 2 + }, + { + "id": 3460, + "nodePlanId": 70211, + "nodeId": 2520602, + "weight": 2 + }, + { + "id": 3461, + "nodePlanId": 70211, + "nodeId": 4510102, + "weight": 2 + }, + { + "id": 3462, + "nodePlanId": 70211, + "nodeId": 6510102, + "weight": 2 + }, + { + "id": 3463, + "nodePlanId": 70211, + "nodeId": 6510102, + "weight": 2 + }, + { + "id": 3464, + "nodePlanId": 70212, + "nodeId": 1530102, + "weight": 1 + }, + { + "id": 3465, + "nodePlanId": 70212, + "nodeId": 1530202, + "weight": 1 + }, + { + "id": 3466, + "nodePlanId": 70212, + "nodeId": 1530302, + "weight": 1 + }, + { + "id": 3467, + "nodePlanId": 70212, + "nodeId": 1530402, + "weight": 1 + }, + { + "id": 3468, + "nodePlanId": 70212, + "nodeId": 1530502, + "weight": 1 + }, + { + "id": 3469, + "nodePlanId": 70212, + "nodeId": 2530102, + "weight": 1.5 + }, + { + "id": 3470, + "nodePlanId": 70212, + "nodeId": 2530202, + "weight": 1.5 + }, + { + "id": 3471, + "nodePlanId": 70212, + "nodeId": 2530302, + "weight": 1 + }, + { + "id": 3472, + "nodePlanId": 70212, + "nodeId": 2530402, + "weight": 1 + }, + { + "id": 3473, + "nodePlanId": 70212, + "nodeId": 2530502, + "weight": 1 + }, + { + "id": 3474, + "nodePlanId": 70212, + "nodeId": 2530602, + "weight": 1 + }, + { + "id": 3475, + "nodePlanId": 70213, + "nodeId": 1530602, + "weight": 1 + }, + { + "id": 3476, + "nodePlanId": 70213, + "nodeId": 1530702, + "weight": 1 + }, + { + "id": 3477, + "nodePlanId": 70213, + "nodeId": 1530802, + "weight": 1 + }, + { + "id": 3478, + "nodePlanId": 70213, + "nodeId": 2530102, + "weight": 1 + }, + { + "id": 3479, + "nodePlanId": 70213, + "nodeId": 2530202, + "weight": 1 + }, + { + "id": 3480, + "nodePlanId": 70213, + "nodeId": 2530302, + "weight": 2 + }, + { + "id": 3481, + "nodePlanId": 70213, + "nodeId": 2530402, + "weight": 2 + }, + { + "id": 3482, + "nodePlanId": 70213, + "nodeId": 2530502, + "weight": 1 + }, + { + "id": 3483, + "nodePlanId": 70213, + "nodeId": 2530602, + "weight": 1 + }, + { + "id": 3484, + "nodePlanId": 70213, + "nodeId": 5510102, + "weight": 3 + }, + { + "id": 3485, + "nodePlanId": 70213, + "nodeId": 6510102, + "weight": 2 + }, + { + "id": 3486, + "nodePlanId": 70214, + "nodeId": 4510102, + "weight": 1 + }, + { + "id": 3487, + "nodePlanId": 70215, + "nodeId": 7510102, + "weight": 1 + }, + { + "id": 3488, + "nodePlanId": 70301, + "nodeId": 1510103, + "weight": 1 + }, + { + "id": 3489, + "nodePlanId": 70301, + "nodeId": 1510203, + "weight": 1 + }, + { + "id": 3490, + "nodePlanId": 70301, + "nodeId": 1510303, + "weight": 1 + }, + { + "id": 3491, + "nodePlanId": 70301, + "nodeId": 1510403, + "weight": 1 + }, + { + "id": 3492, + "nodePlanId": 70301, + "nodeId": 1510503, + "weight": 1 + }, + { + "id": 3493, + "nodePlanId": 70301, + "nodeId": 1510603, + "weight": 1 + }, + { + "id": 3494, + "nodePlanId": 70301, + "nodeId": 1510703, + "weight": 1 + }, + { + "id": 3495, + "nodePlanId": 70301, + "nodeId": 1510803, + "weight": 1 + }, + { + "id": 3496, + "nodePlanId": 70302, + "nodeId": 1510103, + "weight": 1 + }, + { + "id": 3497, + "nodePlanId": 70302, + "nodeId": 1510203, + "weight": 1 + }, + { + "id": 3498, + "nodePlanId": 70302, + "nodeId": 1510303, + "weight": 1 + }, + { + "id": 3499, + "nodePlanId": 70302, + "nodeId": 1510403, + "weight": 1 + }, + { + "id": 3500, + "nodePlanId": 70302, + "nodeId": 1510503, + "weight": 1 + }, + { + "id": 3501, + "nodePlanId": 70302, + "nodeId": 1510603, + "weight": 1 + }, + { + "id": 3502, + "nodePlanId": 70302, + "nodeId": 1510703, + "weight": 1 + }, + { + "id": 3503, + "nodePlanId": 70302, + "nodeId": 1510803, + "weight": 1 + }, + { + "id": 3504, + "nodePlanId": 70303, + "nodeId": 1510103, + "weight": 1 + }, + { + "id": 3505, + "nodePlanId": 70303, + "nodeId": 1510203, + "weight": 1 + }, + { + "id": 3506, + "nodePlanId": 70303, + "nodeId": 1510303, + "weight": 1 + }, + { + "id": 3507, + "nodePlanId": 70303, + "nodeId": 1510403, + "weight": 1 + }, + { + "id": 3508, + "nodePlanId": 70303, + "nodeId": 1510503, + "weight": 1 + }, + { + "id": 3509, + "nodePlanId": 70303, + "nodeId": 1510603, + "weight": 1 + }, + { + "id": 3510, + "nodePlanId": 70303, + "nodeId": 1510703, + "weight": 1 + }, + { + "id": 3511, + "nodePlanId": 70303, + "nodeId": 1510803, + "weight": 1 + }, + { + "id": 3512, + "nodePlanId": 70303, + "nodeId": 2510103, + "weight": 4 + }, + { + "id": 3513, + "nodePlanId": 70303, + "nodeId": 2510203, + "weight": 4 + }, + { + "id": 3514, + "nodePlanId": 70303, + "nodeId": 6510103, + "weight": 8 + }, + { + "id": 3515, + "nodePlanId": 70304, + "nodeId": 2510303, + "weight": 1 + }, + { + "id": 3516, + "nodePlanId": 70304, + "nodeId": 2510403, + "weight": 1 + }, + { + "id": 3517, + "nodePlanId": 70304, + "nodeId": 2510503, + "weight": 1 + }, + { + "id": 3518, + "nodePlanId": 70304, + "nodeId": 2510603, + "weight": 1 + }, + { + "id": 3519, + "nodePlanId": 70305, + "nodeId": 5510103, + "weight": 1 + }, + { + "id": 3520, + "nodePlanId": 70306, + "nodeId": 1520103, + "weight": 1 + }, + { + "id": 3521, + "nodePlanId": 70306, + "nodeId": 1520203, + "weight": 1 + }, + { + "id": 3522, + "nodePlanId": 70306, + "nodeId": 1520303, + "weight": 1 + }, + { + "id": 3523, + "nodePlanId": 70306, + "nodeId": 1520403, + "weight": 1 + }, + { + "id": 3524, + "nodePlanId": 70306, + "nodeId": 1520503, + "weight": 1 + }, + { + "id": 3525, + "nodePlanId": 70306, + "nodeId": 1520603, + "weight": 1 + }, + { + "id": 3526, + "nodePlanId": 70306, + "nodeId": 1520703, + "weight": 1 + }, + { + "id": 3527, + "nodePlanId": 70306, + "nodeId": 1520803, + "weight": 1 + }, + { + "id": 3528, + "nodePlanId": 70306, + "nodeId": 2520103, + "weight": 2 + }, + { + "id": 3529, + "nodePlanId": 70306, + "nodeId": 2520203, + "weight": 2 + }, + { + "id": 3530, + "nodePlanId": 70306, + "nodeId": 2520303, + "weight": 1 + }, + { + "id": 3531, + "nodePlanId": 70306, + "nodeId": 2520403, + "weight": 1 + }, + { + "id": 3532, + "nodePlanId": 70306, + "nodeId": 2520503, + "weight": 1 + }, + { + "id": 3533, + "nodePlanId": 70306, + "nodeId": 2520603, + "weight": 1 + }, + { + "id": 3534, + "nodePlanId": 70306, + "nodeId": 4510103, + "weight": 3 + }, + { + "id": 3535, + "nodePlanId": 70306, + "nodeId": 6510103, + "weight": 3 + }, + { + "id": 3536, + "nodePlanId": 70307, + "nodeId": 1520103, + "weight": 1 + }, + { + "id": 3537, + "nodePlanId": 70307, + "nodeId": 1520203, + "weight": 1 + }, + { + "id": 3538, + "nodePlanId": 70307, + "nodeId": 1520303, + "weight": 1 + }, + { + "id": 3539, + "nodePlanId": 70307, + "nodeId": 1520403, + "weight": 1 + }, + { + "id": 3540, + "nodePlanId": 70307, + "nodeId": 1520503, + "weight": 1 + }, + { + "id": 3541, + "nodePlanId": 70307, + "nodeId": 1520603, + "weight": 1 + }, + { + "id": 3542, + "nodePlanId": 70307, + "nodeId": 1520703, + "weight": 1 + }, + { + "id": 3543, + "nodePlanId": 70307, + "nodeId": 1520803, + "weight": 1 + }, + { + "id": 3544, + "nodePlanId": 70307, + "nodeId": 2520103, + "weight": 1 + }, + { + "id": 3545, + "nodePlanId": 70307, + "nodeId": 2520203, + "weight": 1 + }, + { + "id": 3546, + "nodePlanId": 70307, + "nodeId": 2520303, + "weight": 2 + }, + { + "id": 3547, + "nodePlanId": 70307, + "nodeId": 2520403, + "weight": 2 + }, + { + "id": 3548, + "nodePlanId": 70307, + "nodeId": 2520503, + "weight": 1 + }, + { + "id": 3549, + "nodePlanId": 70307, + "nodeId": 2520603, + "weight": 1 + }, + { + "id": 3550, + "nodePlanId": 70307, + "nodeId": 5510103, + "weight": 3 + }, + { + "id": 3551, + "nodePlanId": 70308, + "nodeId": 1520103, + "weight": 1 + }, + { + "id": 3552, + "nodePlanId": 70308, + "nodeId": 1520203, + "weight": 1 + }, + { + "id": 3553, + "nodePlanId": 70308, + "nodeId": 1520303, + "weight": 1 + }, + { + "id": 3554, + "nodePlanId": 70308, + "nodeId": 1520403, + "weight": 1 + }, + { + "id": 3555, + "nodePlanId": 70308, + "nodeId": 1520503, + "weight": 1 + }, + { + "id": 3556, + "nodePlanId": 70308, + "nodeId": 1520603, + "weight": 1 + }, + { + "id": 3557, + "nodePlanId": 70308, + "nodeId": 1520703, + "weight": 1 + }, + { + "id": 3558, + "nodePlanId": 70308, + "nodeId": 1520803, + "weight": 1 + }, + { + "id": 3559, + "nodePlanId": 70308, + "nodeId": 2520103, + "weight": 1 + }, + { + "id": 3560, + "nodePlanId": 70308, + "nodeId": 2520203, + "weight": 1 + }, + { + "id": 3561, + "nodePlanId": 70308, + "nodeId": 2520303, + "weight": 1 + }, + { + "id": 3562, + "nodePlanId": 70308, + "nodeId": 2520403, + "weight": 1 + }, + { + "id": 3563, + "nodePlanId": 70308, + "nodeId": 2520503, + "weight": 2 + }, + { + "id": 3564, + "nodePlanId": 70308, + "nodeId": 2520603, + "weight": 2 + }, + { + "id": 3565, + "nodePlanId": 70308, + "nodeId": 5510103, + "weight": 3 + }, + { + "id": 3566, + "nodePlanId": 70308, + "nodeId": 6510103, + "weight": 3 + }, + { + "id": 3567, + "nodePlanId": 70309, + "nodeId": 3510103, + "weight": 1 + }, + { + "id": 3568, + "nodePlanId": 70310, + "nodeId": 1520103, + "weight": 1 + }, + { + "id": 3569, + "nodePlanId": 70310, + "nodeId": 1520203, + "weight": 1 + }, + { + "id": 3570, + "nodePlanId": 70310, + "nodeId": 1520303, + "weight": 1 + }, + { + "id": 3571, + "nodePlanId": 70310, + "nodeId": 1520403, + "weight": 1 + }, + { + "id": 3572, + "nodePlanId": 70310, + "nodeId": 1520503, + "weight": 1 + }, + { + "id": 3573, + "nodePlanId": 70310, + "nodeId": 1520603, + "weight": 1 + }, + { + "id": 3574, + "nodePlanId": 70310, + "nodeId": 1520703, + "weight": 1 + }, + { + "id": 3575, + "nodePlanId": 70310, + "nodeId": 1520803, + "weight": 1 + }, + { + "id": 3576, + "nodePlanId": 70310, + "nodeId": 2520103, + "weight": 1 + }, + { + "id": 3577, + "nodePlanId": 70310, + "nodeId": 2520203, + "weight": 1 + }, + { + "id": 3578, + "nodePlanId": 70310, + "nodeId": 2520303, + "weight": 1 + }, + { + "id": 3579, + "nodePlanId": 70310, + "nodeId": 2520403, + "weight": 1 + }, + { + "id": 3580, + "nodePlanId": 70310, + "nodeId": 2520503, + "weight": 2 + }, + { + "id": 3581, + "nodePlanId": 70310, + "nodeId": 2520603, + "weight": 2 + }, + { + "id": 3582, + "nodePlanId": 70310, + "nodeId": 5510103, + "weight": 3 + }, + { + "id": 3583, + "nodePlanId": 70310, + "nodeId": 6510103, + "weight": 3 + }, + { + "id": 3584, + "nodePlanId": 70311, + "nodeId": 1520103, + "weight": 1 + }, + { + "id": 3585, + "nodePlanId": 70311, + "nodeId": 1520203, + "weight": 1 + }, + { + "id": 3586, + "nodePlanId": 70311, + "nodeId": 1520303, + "weight": 1 + }, + { + "id": 3587, + "nodePlanId": 70311, + "nodeId": 1520403, + "weight": 1 + }, + { + "id": 3588, + "nodePlanId": 70311, + "nodeId": 1520503, + "weight": 1 + }, + { + "id": 3589, + "nodePlanId": 70311, + "nodeId": 1520603, + "weight": 1 + }, + { + "id": 3590, + "nodePlanId": 70311, + "nodeId": 1520703, + "weight": 1 + }, + { + "id": 3591, + "nodePlanId": 70311, + "nodeId": 1520803, + "weight": 1 + }, + { + "id": 3592, + "nodePlanId": 70311, + "nodeId": 2520103, + "weight": 1 + }, + { + "id": 3593, + "nodePlanId": 70311, + "nodeId": 2520203, + "weight": 1 + }, + { + "id": 3594, + "nodePlanId": 70311, + "nodeId": 2520303, + "weight": 1 + }, + { + "id": 3595, + "nodePlanId": 70311, + "nodeId": 2520403, + "weight": 1 + }, + { + "id": 3596, + "nodePlanId": 70311, + "nodeId": 2520503, + "weight": 2 + }, + { + "id": 3597, + "nodePlanId": 70311, + "nodeId": 2520603, + "weight": 2 + }, + { + "id": 3598, + "nodePlanId": 70311, + "nodeId": 4510103, + "weight": 2 + }, + { + "id": 3599, + "nodePlanId": 70311, + "nodeId": 6510103, + "weight": 2 + }, + { + "id": 3600, + "nodePlanId": 70311, + "nodeId": 6510103, + "weight": 2 + }, + { + "id": 3601, + "nodePlanId": 70312, + "nodeId": 1530103, + "weight": 1 + }, + { + "id": 3602, + "nodePlanId": 70312, + "nodeId": 1530203, + "weight": 1 + }, + { + "id": 3603, + "nodePlanId": 70312, + "nodeId": 1530303, + "weight": 1 + }, + { + "id": 3604, + "nodePlanId": 70312, + "nodeId": 1530403, + "weight": 1 + }, + { + "id": 3605, + "nodePlanId": 70312, + "nodeId": 1530503, + "weight": 1 + }, + { + "id": 3606, + "nodePlanId": 70312, + "nodeId": 2530103, + "weight": 1.5 + }, + { + "id": 3607, + "nodePlanId": 70312, + "nodeId": 2530203, + "weight": 1.5 + }, + { + "id": 3608, + "nodePlanId": 70312, + "nodeId": 2530303, + "weight": 1 + }, + { + "id": 3609, + "nodePlanId": 70312, + "nodeId": 2530403, + "weight": 1 + }, + { + "id": 3610, + "nodePlanId": 70312, + "nodeId": 2530503, + "weight": 1 + }, + { + "id": 3611, + "nodePlanId": 70312, + "nodeId": 2530603, + "weight": 1 + }, + { + "id": 3612, + "nodePlanId": 70313, + "nodeId": 1530603, + "weight": 1 + }, + { + "id": 3613, + "nodePlanId": 70313, + "nodeId": 1530703, + "weight": 1 + }, + { + "id": 3614, + "nodePlanId": 70313, + "nodeId": 1530803, + "weight": 1 + }, + { + "id": 3615, + "nodePlanId": 70313, + "nodeId": 2530103, + "weight": 1 + }, + { + "id": 3616, + "nodePlanId": 70313, + "nodeId": 2530203, + "weight": 1 + }, + { + "id": 3617, + "nodePlanId": 70313, + "nodeId": 2530303, + "weight": 2 + }, + { + "id": 3618, + "nodePlanId": 70313, + "nodeId": 2530403, + "weight": 2 + }, + { + "id": 3619, + "nodePlanId": 70313, + "nodeId": 2530503, + "weight": 1 + }, + { + "id": 3620, + "nodePlanId": 70313, + "nodeId": 2530603, + "weight": 1 + }, + { + "id": 3621, + "nodePlanId": 70313, + "nodeId": 5510103, + "weight": 3 + }, + { + "id": 3622, + "nodePlanId": 70313, + "nodeId": 6510103, + "weight": 2 + }, + { + "id": 3623, + "nodePlanId": 70314, + "nodeId": 4510103, + "weight": 1 + }, + { + "id": 3624, + "nodePlanId": 70315, + "nodeId": 7510103, + "weight": 1 + }, + { + "id": 3625, + "nodePlanId": 70401, + "nodeId": 1510104, + "weight": 1 + }, + { + "id": 3626, + "nodePlanId": 70401, + "nodeId": 1510204, + "weight": 1 + }, + { + "id": 3627, + "nodePlanId": 70401, + "nodeId": 1510304, + "weight": 1 + }, + { + "id": 3628, + "nodePlanId": 70401, + "nodeId": 1510404, + "weight": 1 + }, + { + "id": 3629, + "nodePlanId": 70401, + "nodeId": 1510504, + "weight": 1 + }, + { + "id": 3630, + "nodePlanId": 70401, + "nodeId": 1510604, + "weight": 1 + }, + { + "id": 3631, + "nodePlanId": 70401, + "nodeId": 1510704, + "weight": 1 + }, + { + "id": 3632, + "nodePlanId": 70401, + "nodeId": 1510804, + "weight": 1 + }, + { + "id": 3633, + "nodePlanId": 70402, + "nodeId": 1510104, + "weight": 1 + }, + { + "id": 3634, + "nodePlanId": 70402, + "nodeId": 1510204, + "weight": 1 + }, + { + "id": 3635, + "nodePlanId": 70402, + "nodeId": 1510304, + "weight": 1 + }, + { + "id": 3636, + "nodePlanId": 70402, + "nodeId": 1510404, + "weight": 1 + }, + { + "id": 3637, + "nodePlanId": 70402, + "nodeId": 1510504, + "weight": 1 + }, + { + "id": 3638, + "nodePlanId": 70402, + "nodeId": 1510604, + "weight": 1 + }, + { + "id": 3639, + "nodePlanId": 70402, + "nodeId": 1510704, + "weight": 1 + }, + { + "id": 3640, + "nodePlanId": 70402, + "nodeId": 1510804, + "weight": 1 + }, + { + "id": 3641, + "nodePlanId": 70403, + "nodeId": 1510104, + "weight": 1 + }, + { + "id": 3642, + "nodePlanId": 70403, + "nodeId": 1510204, + "weight": 1 + }, + { + "id": 3643, + "nodePlanId": 70403, + "nodeId": 1510304, + "weight": 1 + }, + { + "id": 3644, + "nodePlanId": 70403, + "nodeId": 1510404, + "weight": 1 + }, + { + "id": 3645, + "nodePlanId": 70403, + "nodeId": 1510504, + "weight": 1 + }, + { + "id": 3646, + "nodePlanId": 70403, + "nodeId": 1510604, + "weight": 1 + }, + { + "id": 3647, + "nodePlanId": 70403, + "nodeId": 1510704, + "weight": 1 + }, + { + "id": 3648, + "nodePlanId": 70403, + "nodeId": 1510804, + "weight": 1 + }, + { + "id": 3649, + "nodePlanId": 70403, + "nodeId": 2510104, + "weight": 4 + }, + { + "id": 3650, + "nodePlanId": 70403, + "nodeId": 2510204, + "weight": 4 + }, + { + "id": 3651, + "nodePlanId": 70403, + "nodeId": 6510104, + "weight": 8 + }, + { + "id": 3652, + "nodePlanId": 70404, + "nodeId": 2510304, + "weight": 1 + }, + { + "id": 3653, + "nodePlanId": 70404, + "nodeId": 2510404, + "weight": 1 + }, + { + "id": 3654, + "nodePlanId": 70404, + "nodeId": 2510504, + "weight": 1 + }, + { + "id": 3655, + "nodePlanId": 70404, + "nodeId": 2510604, + "weight": 1 + }, + { + "id": 3656, + "nodePlanId": 70405, + "nodeId": 5510104, + "weight": 1 + }, + { + "id": 3657, + "nodePlanId": 70406, + "nodeId": 1520104, + "weight": 1 + }, + { + "id": 3658, + "nodePlanId": 70406, + "nodeId": 1520204, + "weight": 1 + }, + { + "id": 3659, + "nodePlanId": 70406, + "nodeId": 1520304, + "weight": 1 + }, + { + "id": 3660, + "nodePlanId": 70406, + "nodeId": 1520404, + "weight": 1 + }, + { + "id": 3661, + "nodePlanId": 70406, + "nodeId": 1520504, + "weight": 1 + }, + { + "id": 3662, + "nodePlanId": 70406, + "nodeId": 1520604, + "weight": 1 + }, + { + "id": 3663, + "nodePlanId": 70406, + "nodeId": 1520704, + "weight": 1 + }, + { + "id": 3664, + "nodePlanId": 70406, + "nodeId": 1520804, + "weight": 1 + }, + { + "id": 3665, + "nodePlanId": 70406, + "nodeId": 2520104, + "weight": 2 + }, + { + "id": 3666, + "nodePlanId": 70406, + "nodeId": 2520204, + "weight": 2 + }, + { + "id": 3667, + "nodePlanId": 70406, + "nodeId": 2520304, + "weight": 1 + }, + { + "id": 3668, + "nodePlanId": 70406, + "nodeId": 2520404, + "weight": 1 + }, + { + "id": 3669, + "nodePlanId": 70406, + "nodeId": 2520504, + "weight": 1 + }, + { + "id": 3670, + "nodePlanId": 70406, + "nodeId": 2520604, + "weight": 1 + }, + { + "id": 3671, + "nodePlanId": 70406, + "nodeId": 4510104, + "weight": 3 + }, + { + "id": 3672, + "nodePlanId": 70406, + "nodeId": 6510104, + "weight": 3 + }, + { + "id": 3673, + "nodePlanId": 70407, + "nodeId": 1520104, + "weight": 1 + }, + { + "id": 3674, + "nodePlanId": 70407, + "nodeId": 1520204, + "weight": 1 + }, + { + "id": 3675, + "nodePlanId": 70407, + "nodeId": 1520304, + "weight": 1 + }, + { + "id": 3676, + "nodePlanId": 70407, + "nodeId": 1520404, + "weight": 1 + }, + { + "id": 3677, + "nodePlanId": 70407, + "nodeId": 1520504, + "weight": 1 + }, + { + "id": 3678, + "nodePlanId": 70407, + "nodeId": 1520604, + "weight": 1 + }, + { + "id": 3679, + "nodePlanId": 70407, + "nodeId": 1520704, + "weight": 1 + }, + { + "id": 3680, + "nodePlanId": 70407, + "nodeId": 1520804, + "weight": 1 + }, + { + "id": 3681, + "nodePlanId": 70407, + "nodeId": 2520104, + "weight": 1 + }, + { + "id": 3682, + "nodePlanId": 70407, + "nodeId": 2520204, + "weight": 1 + }, + { + "id": 3683, + "nodePlanId": 70407, + "nodeId": 2520304, + "weight": 2 + }, + { + "id": 3684, + "nodePlanId": 70407, + "nodeId": 2520404, + "weight": 2 + }, + { + "id": 3685, + "nodePlanId": 70407, + "nodeId": 2520504, + "weight": 1 + }, + { + "id": 3686, + "nodePlanId": 70407, + "nodeId": 2520604, + "weight": 1 + }, + { + "id": 3687, + "nodePlanId": 70407, + "nodeId": 5510104, + "weight": 3 + }, + { + "id": 3688, + "nodePlanId": 70408, + "nodeId": 1520104, + "weight": 1 + }, + { + "id": 3689, + "nodePlanId": 70408, + "nodeId": 1520204, + "weight": 1 + }, + { + "id": 3690, + "nodePlanId": 70408, + "nodeId": 1520304, + "weight": 1 + }, + { + "id": 3691, + "nodePlanId": 70408, + "nodeId": 1520404, + "weight": 1 + }, + { + "id": 3692, + "nodePlanId": 70408, + "nodeId": 1520504, + "weight": 1 + }, + { + "id": 3693, + "nodePlanId": 70408, + "nodeId": 1520604, + "weight": 1 + }, + { + "id": 3694, + "nodePlanId": 70408, + "nodeId": 1520704, + "weight": 1 + }, + { + "id": 3695, + "nodePlanId": 70408, + "nodeId": 1520804, + "weight": 1 + }, + { + "id": 3696, + "nodePlanId": 70408, + "nodeId": 2520104, + "weight": 1 + }, + { + "id": 3697, + "nodePlanId": 70408, + "nodeId": 2520204, + "weight": 1 + }, + { + "id": 3698, + "nodePlanId": 70408, + "nodeId": 2520304, + "weight": 1 + }, + { + "id": 3699, + "nodePlanId": 70408, + "nodeId": 2520404, + "weight": 1 + }, + { + "id": 3700, + "nodePlanId": 70408, + "nodeId": 2520504, + "weight": 2 + }, + { + "id": 3701, + "nodePlanId": 70408, + "nodeId": 2520604, + "weight": 2 + }, + { + "id": 3702, + "nodePlanId": 70408, + "nodeId": 5510104, + "weight": 3 + }, + { + "id": 3703, + "nodePlanId": 70408, + "nodeId": 6510104, + "weight": 3 + }, + { + "id": 3704, + "nodePlanId": 70409, + "nodeId": 3510104, + "weight": 1 + }, + { + "id": 3705, + "nodePlanId": 70410, + "nodeId": 1520104, + "weight": 1 + }, + { + "id": 3706, + "nodePlanId": 70410, + "nodeId": 1520204, + "weight": 1 + }, + { + "id": 3707, + "nodePlanId": 70410, + "nodeId": 1520304, + "weight": 1 + }, + { + "id": 3708, + "nodePlanId": 70410, + "nodeId": 1520404, + "weight": 1 + }, + { + "id": 3709, + "nodePlanId": 70410, + "nodeId": 1520504, + "weight": 1 + }, + { + "id": 3710, + "nodePlanId": 70410, + "nodeId": 1520604, + "weight": 1 + }, + { + "id": 3711, + "nodePlanId": 70410, + "nodeId": 1520704, + "weight": 1 + }, + { + "id": 3712, + "nodePlanId": 70410, + "nodeId": 1520804, + "weight": 1 + }, + { + "id": 3713, + "nodePlanId": 70410, + "nodeId": 2520104, + "weight": 1 + }, + { + "id": 3714, + "nodePlanId": 70410, + "nodeId": 2520204, + "weight": 1 + }, + { + "id": 3715, + "nodePlanId": 70410, + "nodeId": 2520304, + "weight": 1 + }, + { + "id": 3716, + "nodePlanId": 70410, + "nodeId": 2520404, + "weight": 1 + }, + { + "id": 3717, + "nodePlanId": 70410, + "nodeId": 2520504, + "weight": 2 + }, + { + "id": 3718, + "nodePlanId": 70410, + "nodeId": 2520604, + "weight": 2 + }, + { + "id": 3719, + "nodePlanId": 70410, + "nodeId": 5510104, + "weight": 3 + }, + { + "id": 3720, + "nodePlanId": 70410, + "nodeId": 6510104, + "weight": 3 + }, + { + "id": 3721, + "nodePlanId": 70411, + "nodeId": 1520104, + "weight": 1 + }, + { + "id": 3722, + "nodePlanId": 70411, + "nodeId": 1520204, + "weight": 1 + }, + { + "id": 3723, + "nodePlanId": 70411, + "nodeId": 1520304, + "weight": 1 + }, + { + "id": 3724, + "nodePlanId": 70411, + "nodeId": 1520404, + "weight": 1 + }, + { + "id": 3725, + "nodePlanId": 70411, + "nodeId": 1520504, + "weight": 1 + }, + { + "id": 3726, + "nodePlanId": 70411, + "nodeId": 1520604, + "weight": 1 + }, + { + "id": 3727, + "nodePlanId": 70411, + "nodeId": 1520704, + "weight": 1 + }, + { + "id": 3728, + "nodePlanId": 70411, + "nodeId": 1520804, + "weight": 1 + }, + { + "id": 3729, + "nodePlanId": 70411, + "nodeId": 2520104, + "weight": 1 + }, + { + "id": 3730, + "nodePlanId": 70411, + "nodeId": 2520204, + "weight": 1 + }, + { + "id": 3731, + "nodePlanId": 70411, + "nodeId": 2520304, + "weight": 1 + }, + { + "id": 3732, + "nodePlanId": 70411, + "nodeId": 2520404, + "weight": 1 + }, + { + "id": 3733, + "nodePlanId": 70411, + "nodeId": 2520504, + "weight": 2 + }, + { + "id": 3734, + "nodePlanId": 70411, + "nodeId": 2520604, + "weight": 2 + }, + { + "id": 3735, + "nodePlanId": 70411, + "nodeId": 4510104, + "weight": 2 + }, + { + "id": 3736, + "nodePlanId": 70411, + "nodeId": 6510104, + "weight": 2 + }, + { + "id": 3737, + "nodePlanId": 70411, + "nodeId": 6510104, + "weight": 2 + }, + { + "id": 3738, + "nodePlanId": 70412, + "nodeId": 1530104, + "weight": 1 + }, + { + "id": 3739, + "nodePlanId": 70412, + "nodeId": 1530204, + "weight": 1 + }, + { + "id": 3740, + "nodePlanId": 70412, + "nodeId": 1530304, + "weight": 1 + }, + { + "id": 3741, + "nodePlanId": 70412, + "nodeId": 1530404, + "weight": 1 + }, + { + "id": 3742, + "nodePlanId": 70412, + "nodeId": 1530504, + "weight": 1 + }, + { + "id": 3743, + "nodePlanId": 70412, + "nodeId": 2530104, + "weight": 1.5 + }, + { + "id": 3744, + "nodePlanId": 70412, + "nodeId": 2530204, + "weight": 1.5 + }, + { + "id": 3745, + "nodePlanId": 70412, + "nodeId": 2530304, + "weight": 1 + }, + { + "id": 3746, + "nodePlanId": 70412, + "nodeId": 2530404, + "weight": 1 + }, + { + "id": 3747, + "nodePlanId": 70412, + "nodeId": 2530504, + "weight": 1 + }, + { + "id": 3748, + "nodePlanId": 70412, + "nodeId": 2530604, + "weight": 1 + }, + { + "id": 3749, + "nodePlanId": 70413, + "nodeId": 1530604, + "weight": 1 + }, + { + "id": 3750, + "nodePlanId": 70413, + "nodeId": 1530704, + "weight": 1 + }, + { + "id": 3751, + "nodePlanId": 70413, + "nodeId": 1530804, + "weight": 1 + }, + { + "id": 3752, + "nodePlanId": 70413, + "nodeId": 2530104, + "weight": 1 + }, + { + "id": 3753, + "nodePlanId": 70413, + "nodeId": 2530204, + "weight": 1 + }, + { + "id": 3754, + "nodePlanId": 70413, + "nodeId": 2530304, + "weight": 2 + }, + { + "id": 3755, + "nodePlanId": 70413, + "nodeId": 2530404, + "weight": 2 + }, + { + "id": 3756, + "nodePlanId": 70413, + "nodeId": 2530504, + "weight": 1 + }, + { + "id": 3757, + "nodePlanId": 70413, + "nodeId": 2530604, + "weight": 1 + }, + { + "id": 3758, + "nodePlanId": 70413, + "nodeId": 5510104, + "weight": 3 + }, + { + "id": 3759, + "nodePlanId": 70413, + "nodeId": 6510104, + "weight": 2 + }, + { + "id": 3760, + "nodePlanId": 70414, + "nodeId": 4510104, + "weight": 1 + }, + { + "id": 3761, + "nodePlanId": 70415, + "nodeId": 7510104, + "weight": 1 + }, + { + "id": 3762, + "nodePlanId": 70501, + "nodeId": 1510105, + "weight": 1 + }, + { + "id": 3763, + "nodePlanId": 70501, + "nodeId": 1510205, + "weight": 1 + }, + { + "id": 3764, + "nodePlanId": 70501, + "nodeId": 1510305, + "weight": 1 + }, + { + "id": 3765, + "nodePlanId": 70501, + "nodeId": 1510405, + "weight": 1 + }, + { + "id": 3766, + "nodePlanId": 70501, + "nodeId": 1510505, + "weight": 1 + }, + { + "id": 3767, + "nodePlanId": 70501, + "nodeId": 1510605, + "weight": 1 + }, + { + "id": 3768, + "nodePlanId": 70501, + "nodeId": 1510705, + "weight": 1 + }, + { + "id": 3769, + "nodePlanId": 70501, + "nodeId": 1510805, + "weight": 1 + }, + { + "id": 3770, + "nodePlanId": 70502, + "nodeId": 1510105, + "weight": 1 + }, + { + "id": 3771, + "nodePlanId": 70502, + "nodeId": 1510205, + "weight": 1 + }, + { + "id": 3772, + "nodePlanId": 70502, + "nodeId": 1510305, + "weight": 1 + }, + { + "id": 3773, + "nodePlanId": 70502, + "nodeId": 1510405, + "weight": 1 + }, + { + "id": 3774, + "nodePlanId": 70502, + "nodeId": 1510505, + "weight": 1 + }, + { + "id": 3775, + "nodePlanId": 70502, + "nodeId": 1510605, + "weight": 1 + }, + { + "id": 3776, + "nodePlanId": 70502, + "nodeId": 1510705, + "weight": 1 + }, + { + "id": 3777, + "nodePlanId": 70502, + "nodeId": 1510805, + "weight": 1 + }, + { + "id": 3778, + "nodePlanId": 70503, + "nodeId": 1510105, + "weight": 1 + }, + { + "id": 3779, + "nodePlanId": 70503, + "nodeId": 1510205, + "weight": 1 + }, + { + "id": 3780, + "nodePlanId": 70503, + "nodeId": 1510305, + "weight": 1 + }, + { + "id": 3781, + "nodePlanId": 70503, + "nodeId": 1510405, + "weight": 1 + }, + { + "id": 3782, + "nodePlanId": 70503, + "nodeId": 1510505, + "weight": 1 + }, + { + "id": 3783, + "nodePlanId": 70503, + "nodeId": 1510605, + "weight": 1 + }, + { + "id": 3784, + "nodePlanId": 70503, + "nodeId": 1510705, + "weight": 1 + }, + { + "id": 3785, + "nodePlanId": 70503, + "nodeId": 1510805, + "weight": 1 + }, + { + "id": 3786, + "nodePlanId": 70503, + "nodeId": 2510105, + "weight": 4 + }, + { + "id": 3787, + "nodePlanId": 70503, + "nodeId": 2510205, + "weight": 4 + }, + { + "id": 3788, + "nodePlanId": 70503, + "nodeId": 6510105, + "weight": 8 + }, + { + "id": 3789, + "nodePlanId": 70504, + "nodeId": 2510305, + "weight": 1 + }, + { + "id": 3790, + "nodePlanId": 70504, + "nodeId": 2510405, + "weight": 1 + }, + { + "id": 3791, + "nodePlanId": 70504, + "nodeId": 2510505, + "weight": 1 + }, + { + "id": 3792, + "nodePlanId": 70504, + "nodeId": 2510605, + "weight": 1 + }, + { + "id": 3793, + "nodePlanId": 70505, + "nodeId": 5510105, + "weight": 1 + }, + { + "id": 3794, + "nodePlanId": 70506, + "nodeId": 1520105, + "weight": 1 + }, + { + "id": 3795, + "nodePlanId": 70506, + "nodeId": 1520205, + "weight": 1 + }, + { + "id": 3796, + "nodePlanId": 70506, + "nodeId": 1520305, + "weight": 1 + }, + { + "id": 3797, + "nodePlanId": 70506, + "nodeId": 1520405, + "weight": 1 + }, + { + "id": 3798, + "nodePlanId": 70506, + "nodeId": 1520505, + "weight": 1 + }, + { + "id": 3799, + "nodePlanId": 70506, + "nodeId": 1520605, + "weight": 1 + }, + { + "id": 3800, + "nodePlanId": 70506, + "nodeId": 1520705, + "weight": 1 + }, + { + "id": 3801, + "nodePlanId": 70506, + "nodeId": 1520805, + "weight": 1 + }, + { + "id": 3802, + "nodePlanId": 70506, + "nodeId": 2520105, + "weight": 2 + }, + { + "id": 3803, + "nodePlanId": 70506, + "nodeId": 2520205, + "weight": 2 + }, + { + "id": 3804, + "nodePlanId": 70506, + "nodeId": 2520305, + "weight": 1 + }, + { + "id": 3805, + "nodePlanId": 70506, + "nodeId": 2520405, + "weight": 1 + }, + { + "id": 3806, + "nodePlanId": 70506, + "nodeId": 2520505, + "weight": 1 + }, + { + "id": 3807, + "nodePlanId": 70506, + "nodeId": 2520605, + "weight": 1 + }, + { + "id": 3808, + "nodePlanId": 70506, + "nodeId": 4510105, + "weight": 3 + }, + { + "id": 3809, + "nodePlanId": 70506, + "nodeId": 6510105, + "weight": 3 + }, + { + "id": 3810, + "nodePlanId": 70507, + "nodeId": 1520105, + "weight": 1 + }, + { + "id": 3811, + "nodePlanId": 70507, + "nodeId": 1520205, + "weight": 1 + }, + { + "id": 3812, + "nodePlanId": 70507, + "nodeId": 1520305, + "weight": 1 + }, + { + "id": 3813, + "nodePlanId": 70507, + "nodeId": 1520405, + "weight": 1 + }, + { + "id": 3814, + "nodePlanId": 70507, + "nodeId": 1520505, + "weight": 1 + }, + { + "id": 3815, + "nodePlanId": 70507, + "nodeId": 1520605, + "weight": 1 + }, + { + "id": 3816, + "nodePlanId": 70507, + "nodeId": 1520705, + "weight": 1 + }, + { + "id": 3817, + "nodePlanId": 70507, + "nodeId": 1520805, + "weight": 1 + }, + { + "id": 3818, + "nodePlanId": 70507, + "nodeId": 2520105, + "weight": 1 + }, + { + "id": 3819, + "nodePlanId": 70507, + "nodeId": 2520205, + "weight": 1 + }, + { + "id": 3820, + "nodePlanId": 70507, + "nodeId": 2520305, + "weight": 2 + }, + { + "id": 3821, + "nodePlanId": 70507, + "nodeId": 2520405, + "weight": 2 + }, + { + "id": 3822, + "nodePlanId": 70507, + "nodeId": 2520505, + "weight": 1 + }, + { + "id": 3823, + "nodePlanId": 70507, + "nodeId": 2520605, + "weight": 1 + }, + { + "id": 3824, + "nodePlanId": 70507, + "nodeId": 5510105, + "weight": 3 + }, + { + "id": 3825, + "nodePlanId": 70508, + "nodeId": 1520105, + "weight": 1 + }, + { + "id": 3826, + "nodePlanId": 70508, + "nodeId": 1520205, + "weight": 1 + }, + { + "id": 3827, + "nodePlanId": 70508, + "nodeId": 1520305, + "weight": 1 + }, + { + "id": 3828, + "nodePlanId": 70508, + "nodeId": 1520405, + "weight": 1 + }, + { + "id": 3829, + "nodePlanId": 70508, + "nodeId": 1520505, + "weight": 1 + }, + { + "id": 3830, + "nodePlanId": 70508, + "nodeId": 1520605, + "weight": 1 + }, + { + "id": 3831, + "nodePlanId": 70508, + "nodeId": 1520705, + "weight": 1 + }, + { + "id": 3832, + "nodePlanId": 70508, + "nodeId": 1520805, + "weight": 1 + }, + { + "id": 3833, + "nodePlanId": 70508, + "nodeId": 2520105, + "weight": 1 + }, + { + "id": 3834, + "nodePlanId": 70508, + "nodeId": 2520205, + "weight": 1 + }, + { + "id": 3835, + "nodePlanId": 70508, + "nodeId": 2520305, + "weight": 1 + }, + { + "id": 3836, + "nodePlanId": 70508, + "nodeId": 2520405, + "weight": 1 + }, + { + "id": 3837, + "nodePlanId": 70508, + "nodeId": 2520505, + "weight": 2 + }, + { + "id": 3838, + "nodePlanId": 70508, + "nodeId": 2520605, + "weight": 2 + }, + { + "id": 3839, + "nodePlanId": 70508, + "nodeId": 5510105, + "weight": 3 + }, + { + "id": 3840, + "nodePlanId": 70508, + "nodeId": 6510105, + "weight": 3 + }, + { + "id": 3841, + "nodePlanId": 70509, + "nodeId": 3510105, + "weight": 1 + }, + { + "id": 3842, + "nodePlanId": 70510, + "nodeId": 1520105, + "weight": 1 + }, + { + "id": 3843, + "nodePlanId": 70510, + "nodeId": 1520205, + "weight": 1 + }, + { + "id": 3844, + "nodePlanId": 70510, + "nodeId": 1520305, + "weight": 1 + }, + { + "id": 3845, + "nodePlanId": 70510, + "nodeId": 1520405, + "weight": 1 + }, + { + "id": 3846, + "nodePlanId": 70510, + "nodeId": 1520505, + "weight": 1 + }, + { + "id": 3847, + "nodePlanId": 70510, + "nodeId": 1520605, + "weight": 1 + }, + { + "id": 3848, + "nodePlanId": 70510, + "nodeId": 1520705, + "weight": 1 + }, + { + "id": 3849, + "nodePlanId": 70510, + "nodeId": 1520805, + "weight": 1 + }, + { + "id": 3850, + "nodePlanId": 70510, + "nodeId": 2520105, + "weight": 1 + }, + { + "id": 3851, + "nodePlanId": 70510, + "nodeId": 2520205, + "weight": 1 + }, + { + "id": 3852, + "nodePlanId": 70510, + "nodeId": 2520305, + "weight": 1 + }, + { + "id": 3853, + "nodePlanId": 70510, + "nodeId": 2520405, + "weight": 1 + }, + { + "id": 3854, + "nodePlanId": 70510, + "nodeId": 2520505, + "weight": 2 + }, + { + "id": 3855, + "nodePlanId": 70510, + "nodeId": 2520605, + "weight": 2 + }, + { + "id": 3856, + "nodePlanId": 70510, + "nodeId": 5510105, + "weight": 3 + }, + { + "id": 3857, + "nodePlanId": 70510, + "nodeId": 6510105, + "weight": 3 + }, + { + "id": 3858, + "nodePlanId": 70511, + "nodeId": 1520105, + "weight": 1 + }, + { + "id": 3859, + "nodePlanId": 70511, + "nodeId": 1520205, + "weight": 1 + }, + { + "id": 3860, + "nodePlanId": 70511, + "nodeId": 1520305, + "weight": 1 + }, + { + "id": 3861, + "nodePlanId": 70511, + "nodeId": 1520405, + "weight": 1 + }, + { + "id": 3862, + "nodePlanId": 70511, + "nodeId": 1520505, + "weight": 1 + }, + { + "id": 3863, + "nodePlanId": 70511, + "nodeId": 1520605, + "weight": 1 + }, + { + "id": 3864, + "nodePlanId": 70511, + "nodeId": 1520705, + "weight": 1 + }, + { + "id": 3865, + "nodePlanId": 70511, + "nodeId": 1520805, + "weight": 1 + }, + { + "id": 3866, + "nodePlanId": 70511, + "nodeId": 2520105, + "weight": 1 + }, + { + "id": 3867, + "nodePlanId": 70511, + "nodeId": 2520205, + "weight": 1 + }, + { + "id": 3868, + "nodePlanId": 70511, + "nodeId": 2520305, + "weight": 1 + }, + { + "id": 3869, + "nodePlanId": 70511, + "nodeId": 2520405, + "weight": 1 + }, + { + "id": 3870, + "nodePlanId": 70511, + "nodeId": 2520505, + "weight": 2 + }, + { + "id": 3871, + "nodePlanId": 70511, + "nodeId": 2520605, + "weight": 2 + }, + { + "id": 3872, + "nodePlanId": 70511, + "nodeId": 4510105, + "weight": 2 + }, + { + "id": 3873, + "nodePlanId": 70511, + "nodeId": 6510105, + "weight": 2 + }, + { + "id": 3874, + "nodePlanId": 70511, + "nodeId": 6510105, + "weight": 2 + }, + { + "id": 3875, + "nodePlanId": 70512, + "nodeId": 1530105, + "weight": 1 + }, + { + "id": 3876, + "nodePlanId": 70512, + "nodeId": 1530205, + "weight": 1 + }, + { + "id": 3877, + "nodePlanId": 70512, + "nodeId": 1530305, + "weight": 1 + }, + { + "id": 3878, + "nodePlanId": 70512, + "nodeId": 1530405, + "weight": 1 + }, + { + "id": 3879, + "nodePlanId": 70512, + "nodeId": 1530505, + "weight": 1 + }, + { + "id": 3880, + "nodePlanId": 70512, + "nodeId": 2530105, + "weight": 1.5 + }, + { + "id": 3881, + "nodePlanId": 70512, + "nodeId": 2530205, + "weight": 1.5 + }, + { + "id": 3882, + "nodePlanId": 70512, + "nodeId": 2530305, + "weight": 1 + }, + { + "id": 3883, + "nodePlanId": 70512, + "nodeId": 2530405, + "weight": 1 + }, + { + "id": 3884, + "nodePlanId": 70512, + "nodeId": 2530505, + "weight": 1 + }, + { + "id": 3885, + "nodePlanId": 70512, + "nodeId": 2530605, + "weight": 1 + }, + { + "id": 3886, + "nodePlanId": 70513, + "nodeId": 1530605, + "weight": 1 + }, + { + "id": 3887, + "nodePlanId": 70513, + "nodeId": 1530705, + "weight": 1 + }, + { + "id": 3888, + "nodePlanId": 70513, + "nodeId": 1530805, + "weight": 1 + }, + { + "id": 3889, + "nodePlanId": 70513, + "nodeId": 2530105, + "weight": 1 + }, + { + "id": 3890, + "nodePlanId": 70513, + "nodeId": 2530205, + "weight": 1 + }, + { + "id": 3891, + "nodePlanId": 70513, + "nodeId": 2530305, + "weight": 2 + }, + { + "id": 3892, + "nodePlanId": 70513, + "nodeId": 2530405, + "weight": 2 + }, + { + "id": 3893, + "nodePlanId": 70513, + "nodeId": 2530505, + "weight": 1 + }, + { + "id": 3894, + "nodePlanId": 70513, + "nodeId": 2530605, + "weight": 1 + }, + { + "id": 3895, + "nodePlanId": 70513, + "nodeId": 5510105, + "weight": 3 + }, + { + "id": 3896, + "nodePlanId": 70513, + "nodeId": 6510105, + "weight": 2 + }, + { + "id": 3897, + "nodePlanId": 70514, + "nodeId": 4510105, + "weight": 1 + }, + { + "id": 3898, + "nodePlanId": 70514, + "nodeId": 6510105, + "weight": 1 + }, + { + "id": 3899, + "nodePlanId": 70514, + "nodeId": 6510105, + "weight": 1 + }, + { + "id": 3900, + "nodePlanId": 70514, + "nodeId": 2530505, + "weight": 1 + }, + { + "id": 3901, + "nodePlanId": 70514, + "nodeId": 2530605, + "weight": 1 + }, + { + "id": 3902, + "nodePlanId": 70515, + "nodeId": 1530105, + "weight": 1 + }, + { + "id": 3903, + "nodePlanId": 70515, + "nodeId": 1530205, + "weight": 1 + }, + { + "id": 3904, + "nodePlanId": 70515, + "nodeId": 1530305, + "weight": 1 + }, + { + "id": 3905, + "nodePlanId": 70515, + "nodeId": 1530405, + "weight": 1 + }, + { + "id": 3906, + "nodePlanId": 70515, + "nodeId": 1530505, + "weight": 1 + }, + { + "id": 3907, + "nodePlanId": 70515, + "nodeId": 1530605, + "weight": 1 + }, + { + "id": 3908, + "nodePlanId": 70515, + "nodeId": 1530705, + "weight": 1 + }, + { + "id": 3909, + "nodePlanId": 70515, + "nodeId": 1530805, + "weight": 1 + }, + { + "id": 3910, + "nodePlanId": 70515, + "nodeId": 6510105, + "weight": 3 + }, + { + "id": 3911, + "nodePlanId": 70515, + "nodeId": 6510105, + "weight": 2 + }, + { + "id": 3912, + "nodePlanId": 70516, + "nodeId": 5510105, + "weight": 1 + }, + { + "id": 3913, + "nodePlanId": 70516, + "nodeId": 5510105, + "weight": 1 + }, + { + "id": 3914, + "nodePlanId": 70516, + "nodeId": 1530105, + "weight": 1 + }, + { + "id": 3915, + "nodePlanId": 70516, + "nodeId": 1530205, + "weight": 1 + }, + { + "id": 3916, + "nodePlanId": 70517, + "nodeId": 2530105, + "weight": 1 + }, + { + "id": 3917, + "nodePlanId": 70517, + "nodeId": 2530205, + "weight": 1 + }, + { + "id": 3918, + "nodePlanId": 70517, + "nodeId": 2530305, + "weight": 1 + }, + { + "id": 3919, + "nodePlanId": 70517, + "nodeId": 2530405, + "weight": 1 + }, + { + "id": 3920, + "nodePlanId": 70517, + "nodeId": 2530505, + "weight": 1 + }, + { + "id": 3921, + "nodePlanId": 70517, + "nodeId": 2530605, + "weight": 1 + }, + { + "id": 3922, + "nodePlanId": 70518, + "nodeId": 5510105, + "weight": 1 + }, + { + "id": 3923, + "nodePlanId": 70518, + "nodeId": 6510105, + "weight": 1 + }, + { + "id": 3924, + "nodePlanId": 70519, + "nodeId": 4510105, + "weight": 1 + }, + { + "id": 3925, + "nodePlanId": 70520, + "nodeId": 7510105, + "weight": 1 + }, + { + "id": 3926, + "nodePlanId": 80101, + "nodeId": 1610101, + "weight": 1 + }, + { + "id": 3927, + "nodePlanId": 80101, + "nodeId": 1610201, + "weight": 1 + }, + { + "id": 3928, + "nodePlanId": 80101, + "nodeId": 1610301, + "weight": 1 + }, + { + "id": 3929, + "nodePlanId": 80101, + "nodeId": 1610401, + "weight": 1 + }, + { + "id": 3930, + "nodePlanId": 80101, + "nodeId": 1610501, + "weight": 1 + }, + { + "id": 3931, + "nodePlanId": 80101, + "nodeId": 1610601, + "weight": 1 + }, + { + "id": 3932, + "nodePlanId": 80101, + "nodeId": 1610701, + "weight": 1 + }, + { + "id": 3933, + "nodePlanId": 80101, + "nodeId": 1610801, + "weight": 1 + }, + { + "id": 3934, + "nodePlanId": 80102, + "nodeId": 1610101, + "weight": 1 + }, + { + "id": 3935, + "nodePlanId": 80102, + "nodeId": 1610201, + "weight": 1 + }, + { + "id": 3936, + "nodePlanId": 80102, + "nodeId": 1610301, + "weight": 1 + }, + { + "id": 3937, + "nodePlanId": 80102, + "nodeId": 1610401, + "weight": 1 + }, + { + "id": 3938, + "nodePlanId": 80102, + "nodeId": 1610501, + "weight": 1 + }, + { + "id": 3939, + "nodePlanId": 80102, + "nodeId": 1610601, + "weight": 1 + }, + { + "id": 3940, + "nodePlanId": 80102, + "nodeId": 1610701, + "weight": 1 + }, + { + "id": 3941, + "nodePlanId": 80102, + "nodeId": 1610801, + "weight": 1 + }, + { + "id": 3942, + "nodePlanId": 80103, + "nodeId": 1610101, + "weight": 1 + }, + { + "id": 3943, + "nodePlanId": 80103, + "nodeId": 1610201, + "weight": 1 + }, + { + "id": 3944, + "nodePlanId": 80103, + "nodeId": 1610301, + "weight": 1 + }, + { + "id": 3945, + "nodePlanId": 80103, + "nodeId": 1610401, + "weight": 1 + }, + { + "id": 3946, + "nodePlanId": 80103, + "nodeId": 1610501, + "weight": 1 + }, + { + "id": 3947, + "nodePlanId": 80103, + "nodeId": 1610601, + "weight": 1 + }, + { + "id": 3948, + "nodePlanId": 80103, + "nodeId": 1610701, + "weight": 1 + }, + { + "id": 3949, + "nodePlanId": 80103, + "nodeId": 1610801, + "weight": 1 + }, + { + "id": 3950, + "nodePlanId": 80103, + "nodeId": 2610101, + "weight": 4 + }, + { + "id": 3951, + "nodePlanId": 80103, + "nodeId": 2610201, + "weight": 4 + }, + { + "id": 3952, + "nodePlanId": 80103, + "nodeId": 6610101, + "weight": 8 + }, + { + "id": 3953, + "nodePlanId": 80104, + "nodeId": 2610301, + "weight": 1 + }, + { + "id": 3954, + "nodePlanId": 80104, + "nodeId": 2610401, + "weight": 1 + }, + { + "id": 3955, + "nodePlanId": 80104, + "nodeId": 2610501, + "weight": 1 + }, + { + "id": 3956, + "nodePlanId": 80104, + "nodeId": 2610601, + "weight": 1 + }, + { + "id": 3957, + "nodePlanId": 80105, + "nodeId": 5610101, + "weight": 1 + }, + { + "id": 3958, + "nodePlanId": 80106, + "nodeId": 1620101, + "weight": 1 + }, + { + "id": 3959, + "nodePlanId": 80106, + "nodeId": 1620201, + "weight": 1 + }, + { + "id": 3960, + "nodePlanId": 80106, + "nodeId": 1620301, + "weight": 1 + }, + { + "id": 3961, + "nodePlanId": 80106, + "nodeId": 1620401, + "weight": 1 + }, + { + "id": 3962, + "nodePlanId": 80106, + "nodeId": 1620501, + "weight": 1 + }, + { + "id": 3963, + "nodePlanId": 80106, + "nodeId": 1620601, + "weight": 1 + }, + { + "id": 3964, + "nodePlanId": 80106, + "nodeId": 1620701, + "weight": 1 + }, + { + "id": 3965, + "nodePlanId": 80106, + "nodeId": 1620801, + "weight": 1 + }, + { + "id": 3966, + "nodePlanId": 80106, + "nodeId": 2620101, + "weight": 2 + }, + { + "id": 3967, + "nodePlanId": 80106, + "nodeId": 2620201, + "weight": 2 + }, + { + "id": 3968, + "nodePlanId": 80106, + "nodeId": 2620301, + "weight": 1 + }, + { + "id": 3969, + "nodePlanId": 80106, + "nodeId": 2620401, + "weight": 1 + }, + { + "id": 3970, + "nodePlanId": 80106, + "nodeId": 2620501, + "weight": 1 + }, + { + "id": 3971, + "nodePlanId": 80106, + "nodeId": 2620601, + "weight": 1 + }, + { + "id": 3972, + "nodePlanId": 80106, + "nodeId": 4610101, + "weight": 3 + }, + { + "id": 3973, + "nodePlanId": 80106, + "nodeId": 6610101, + "weight": 3 + }, + { + "id": 3974, + "nodePlanId": 80107, + "nodeId": 1620101, + "weight": 1 + }, + { + "id": 3975, + "nodePlanId": 80107, + "nodeId": 1620201, + "weight": 1 + }, + { + "id": 3976, + "nodePlanId": 80107, + "nodeId": 1620301, + "weight": 1 + }, + { + "id": 3977, + "nodePlanId": 80107, + "nodeId": 1620401, + "weight": 1 + }, + { + "id": 3978, + "nodePlanId": 80107, + "nodeId": 1620501, + "weight": 1 + }, + { + "id": 3979, + "nodePlanId": 80107, + "nodeId": 1620601, + "weight": 1 + }, + { + "id": 3980, + "nodePlanId": 80107, + "nodeId": 1620701, + "weight": 1 + }, + { + "id": 3981, + "nodePlanId": 80107, + "nodeId": 1620801, + "weight": 1 + }, + { + "id": 3982, + "nodePlanId": 80107, + "nodeId": 2620101, + "weight": 1 + }, + { + "id": 3983, + "nodePlanId": 80107, + "nodeId": 2620201, + "weight": 1 + }, + { + "id": 3984, + "nodePlanId": 80107, + "nodeId": 2620301, + "weight": 2 + }, + { + "id": 3985, + "nodePlanId": 80107, + "nodeId": 2620401, + "weight": 2 + }, + { + "id": 3986, + "nodePlanId": 80107, + "nodeId": 2620501, + "weight": 1 + }, + { + "id": 3987, + "nodePlanId": 80107, + "nodeId": 2620601, + "weight": 1 + }, + { + "id": 3988, + "nodePlanId": 80107, + "nodeId": 5610101, + "weight": 3 + }, + { + "id": 3989, + "nodePlanId": 80108, + "nodeId": 1620101, + "weight": 1 + }, + { + "id": 3990, + "nodePlanId": 80108, + "nodeId": 1620201, + "weight": 1 + }, + { + "id": 3991, + "nodePlanId": 80108, + "nodeId": 1620301, + "weight": 1 + }, + { + "id": 3992, + "nodePlanId": 80108, + "nodeId": 1620401, + "weight": 1 + }, + { + "id": 3993, + "nodePlanId": 80108, + "nodeId": 1620501, + "weight": 1 + }, + { + "id": 3994, + "nodePlanId": 80108, + "nodeId": 1620601, + "weight": 1 + }, + { + "id": 3995, + "nodePlanId": 80108, + "nodeId": 1620701, + "weight": 1 + }, + { + "id": 3996, + "nodePlanId": 80108, + "nodeId": 1620801, + "weight": 1 + }, + { + "id": 3997, + "nodePlanId": 80108, + "nodeId": 2620101, + "weight": 1 + }, + { + "id": 3998, + "nodePlanId": 80108, + "nodeId": 2620201, + "weight": 1 + }, + { + "id": 3999, + "nodePlanId": 80108, + "nodeId": 2620301, + "weight": 1 + }, + { + "id": 4000, + "nodePlanId": 80108, + "nodeId": 2620401, + "weight": 1 + }, + { + "id": 4001, + "nodePlanId": 80108, + "nodeId": 2620501, + "weight": 2 + }, + { + "id": 4002, + "nodePlanId": 80108, + "nodeId": 2620601, + "weight": 2 + }, + { + "id": 4003, + "nodePlanId": 80108, + "nodeId": 5610101, + "weight": 3 + }, + { + "id": 4004, + "nodePlanId": 80108, + "nodeId": 6610101, + "weight": 3 + }, + { + "id": 4005, + "nodePlanId": 80109, + "nodeId": 3610101, + "weight": 1 + }, + { + "id": 4006, + "nodePlanId": 80110, + "nodeId": 1620101, + "weight": 1 + }, + { + "id": 4007, + "nodePlanId": 80110, + "nodeId": 1620201, + "weight": 1 + }, + { + "id": 4008, + "nodePlanId": 80110, + "nodeId": 1620301, + "weight": 1 + }, + { + "id": 4009, + "nodePlanId": 80110, + "nodeId": 1620401, + "weight": 1 + }, + { + "id": 4010, + "nodePlanId": 80110, + "nodeId": 1620501, + "weight": 1 + }, + { + "id": 4011, + "nodePlanId": 80110, + "nodeId": 1620601, + "weight": 1 + }, + { + "id": 4012, + "nodePlanId": 80110, + "nodeId": 1620701, + "weight": 1 + }, + { + "id": 4013, + "nodePlanId": 80110, + "nodeId": 1620801, + "weight": 1 + }, + { + "id": 4014, + "nodePlanId": 80110, + "nodeId": 2620101, + "weight": 1 + }, + { + "id": 4015, + "nodePlanId": 80110, + "nodeId": 2620201, + "weight": 1 + }, + { + "id": 4016, + "nodePlanId": 80110, + "nodeId": 2620301, + "weight": 1 + }, + { + "id": 4017, + "nodePlanId": 80110, + "nodeId": 2620401, + "weight": 1 + }, + { + "id": 4018, + "nodePlanId": 80110, + "nodeId": 2620501, + "weight": 2 + }, + { + "id": 4019, + "nodePlanId": 80110, + "nodeId": 2620601, + "weight": 2 + }, + { + "id": 4020, + "nodePlanId": 80110, + "nodeId": 5610101, + "weight": 3 + }, + { + "id": 4021, + "nodePlanId": 80110, + "nodeId": 6610101, + "weight": 3 + }, + { + "id": 4022, + "nodePlanId": 80111, + "nodeId": 1620101, + "weight": 1 + }, + { + "id": 4023, + "nodePlanId": 80111, + "nodeId": 1620201, + "weight": 1 + }, + { + "id": 4024, + "nodePlanId": 80111, + "nodeId": 1620301, + "weight": 1 + }, + { + "id": 4025, + "nodePlanId": 80111, + "nodeId": 1620401, + "weight": 1 + }, + { + "id": 4026, + "nodePlanId": 80111, + "nodeId": 1620501, + "weight": 1 + }, + { + "id": 4027, + "nodePlanId": 80111, + "nodeId": 1620601, + "weight": 1 + }, + { + "id": 4028, + "nodePlanId": 80111, + "nodeId": 1620701, + "weight": 1 + }, + { + "id": 4029, + "nodePlanId": 80111, + "nodeId": 1620801, + "weight": 1 + }, + { + "id": 4030, + "nodePlanId": 80111, + "nodeId": 2620101, + "weight": 1 + }, + { + "id": 4031, + "nodePlanId": 80111, + "nodeId": 2620201, + "weight": 1 + }, + { + "id": 4032, + "nodePlanId": 80111, + "nodeId": 2620301, + "weight": 1 + }, + { + "id": 4033, + "nodePlanId": 80111, + "nodeId": 2620401, + "weight": 1 + }, + { + "id": 4034, + "nodePlanId": 80111, + "nodeId": 2620501, + "weight": 2 + }, + { + "id": 4035, + "nodePlanId": 80111, + "nodeId": 2620601, + "weight": 2 + }, + { + "id": 4036, + "nodePlanId": 80111, + "nodeId": 4610101, + "weight": 2 + }, + { + "id": 4037, + "nodePlanId": 80111, + "nodeId": 6610101, + "weight": 2 + }, + { + "id": 4038, + "nodePlanId": 80111, + "nodeId": 6610101, + "weight": 2 + }, + { + "id": 4039, + "nodePlanId": 80112, + "nodeId": 1630101, + "weight": 1 + }, + { + "id": 4040, + "nodePlanId": 80112, + "nodeId": 1630201, + "weight": 1 + }, + { + "id": 4041, + "nodePlanId": 80112, + "nodeId": 1630301, + "weight": 1 + }, + { + "id": 4042, + "nodePlanId": 80112, + "nodeId": 1630401, + "weight": 1 + }, + { + "id": 4043, + "nodePlanId": 80112, + "nodeId": 1630501, + "weight": 1 + }, + { + "id": 4044, + "nodePlanId": 80112, + "nodeId": 2630101, + "weight": 1.5 + }, + { + "id": 4045, + "nodePlanId": 80112, + "nodeId": 2630201, + "weight": 1.5 + }, + { + "id": 4046, + "nodePlanId": 80112, + "nodeId": 2630301, + "weight": 1 + }, + { + "id": 4047, + "nodePlanId": 80112, + "nodeId": 2630401, + "weight": 1 + }, + { + "id": 4048, + "nodePlanId": 80112, + "nodeId": 2630501, + "weight": 1 + }, + { + "id": 4049, + "nodePlanId": 80112, + "nodeId": 2630601, + "weight": 1 + }, + { + "id": 4050, + "nodePlanId": 80113, + "nodeId": 1630601, + "weight": 1 + }, + { + "id": 4051, + "nodePlanId": 80113, + "nodeId": 1630701, + "weight": 1 + }, + { + "id": 4052, + "nodePlanId": 80113, + "nodeId": 1630801, + "weight": 1 + }, + { + "id": 4053, + "nodePlanId": 80113, + "nodeId": 2630101, + "weight": 1 + }, + { + "id": 4054, + "nodePlanId": 80113, + "nodeId": 2630201, + "weight": 1 + }, + { + "id": 4055, + "nodePlanId": 80113, + "nodeId": 2630301, + "weight": 2 + }, + { + "id": 4056, + "nodePlanId": 80113, + "nodeId": 2630401, + "weight": 2 + }, + { + "id": 4057, + "nodePlanId": 80113, + "nodeId": 2630501, + "weight": 1 + }, + { + "id": 4058, + "nodePlanId": 80113, + "nodeId": 2630601, + "weight": 1 + }, + { + "id": 4059, + "nodePlanId": 80113, + "nodeId": 5610101, + "weight": 3 + }, + { + "id": 4060, + "nodePlanId": 80113, + "nodeId": 6610101, + "weight": 2 + }, + { + "id": 4061, + "nodePlanId": 80114, + "nodeId": 4610101, + "weight": 1 + }, + { + "id": 4062, + "nodePlanId": 80115, + "nodeId": 7610101, + "weight": 1 + }, + { + "id": 4063, + "nodePlanId": 80201, + "nodeId": 1610102, + "weight": 1 + }, + { + "id": 4064, + "nodePlanId": 80201, + "nodeId": 1610202, + "weight": 1 + }, + { + "id": 4065, + "nodePlanId": 80201, + "nodeId": 1610302, + "weight": 1 + }, + { + "id": 4066, + "nodePlanId": 80201, + "nodeId": 1610402, + "weight": 1 + }, + { + "id": 4067, + "nodePlanId": 80201, + "nodeId": 1610502, + "weight": 1 + }, + { + "id": 4068, + "nodePlanId": 80201, + "nodeId": 1610602, + "weight": 1 + }, + { + "id": 4069, + "nodePlanId": 80201, + "nodeId": 1610702, + "weight": 1 + }, + { + "id": 4070, + "nodePlanId": 80201, + "nodeId": 1610802, + "weight": 1 + }, + { + "id": 4071, + "nodePlanId": 80202, + "nodeId": 1610102, + "weight": 1 + }, + { + "id": 4072, + "nodePlanId": 80202, + "nodeId": 1610202, + "weight": 1 + }, + { + "id": 4073, + "nodePlanId": 80202, + "nodeId": 1610302, + "weight": 1 + }, + { + "id": 4074, + "nodePlanId": 80202, + "nodeId": 1610402, + "weight": 1 + }, + { + "id": 4075, + "nodePlanId": 80202, + "nodeId": 1610502, + "weight": 1 + }, + { + "id": 4076, + "nodePlanId": 80202, + "nodeId": 1610602, + "weight": 1 + }, + { + "id": 4077, + "nodePlanId": 80202, + "nodeId": 1610702, + "weight": 1 + }, + { + "id": 4078, + "nodePlanId": 80202, + "nodeId": 1610802, + "weight": 1 + }, + { + "id": 4079, + "nodePlanId": 80203, + "nodeId": 1610102, + "weight": 1 + }, + { + "id": 4080, + "nodePlanId": 80203, + "nodeId": 1610202, + "weight": 1 + }, + { + "id": 4081, + "nodePlanId": 80203, + "nodeId": 1610302, + "weight": 1 + }, + { + "id": 4082, + "nodePlanId": 80203, + "nodeId": 1610402, + "weight": 1 + }, + { + "id": 4083, + "nodePlanId": 80203, + "nodeId": 1610502, + "weight": 1 + }, + { + "id": 4084, + "nodePlanId": 80203, + "nodeId": 1610602, + "weight": 1 + }, + { + "id": 4085, + "nodePlanId": 80203, + "nodeId": 1610702, + "weight": 1 + }, + { + "id": 4086, + "nodePlanId": 80203, + "nodeId": 1610802, + "weight": 1 + }, + { + "id": 4087, + "nodePlanId": 80203, + "nodeId": 2610102, + "weight": 4 + }, + { + "id": 4088, + "nodePlanId": 80203, + "nodeId": 2610202, + "weight": 4 + }, + { + "id": 4089, + "nodePlanId": 80203, + "nodeId": 6610102, + "weight": 8 + }, + { + "id": 4090, + "nodePlanId": 80204, + "nodeId": 2610302, + "weight": 1 + }, + { + "id": 4091, + "nodePlanId": 80204, + "nodeId": 2610402, + "weight": 1 + }, + { + "id": 4092, + "nodePlanId": 80204, + "nodeId": 2610502, + "weight": 1 + }, + { + "id": 4093, + "nodePlanId": 80204, + "nodeId": 2610602, + "weight": 1 + }, + { + "id": 4094, + "nodePlanId": 80205, + "nodeId": 5610102, + "weight": 1 + }, + { + "id": 4095, + "nodePlanId": 80206, + "nodeId": 1620102, + "weight": 1 + }, + { + "id": 4096, + "nodePlanId": 80206, + "nodeId": 1620202, + "weight": 1 + }, + { + "id": 4097, + "nodePlanId": 80206, + "nodeId": 1620302, + "weight": 1 + }, + { + "id": 4098, + "nodePlanId": 80206, + "nodeId": 1620402, + "weight": 1 + }, + { + "id": 4099, + "nodePlanId": 80206, + "nodeId": 1620502, + "weight": 1 + }, + { + "id": 4100, + "nodePlanId": 80206, + "nodeId": 1620602, + "weight": 1 + }, + { + "id": 4101, + "nodePlanId": 80206, + "nodeId": 1620702, + "weight": 1 + }, + { + "id": 4102, + "nodePlanId": 80206, + "nodeId": 1620802, + "weight": 1 + }, + { + "id": 4103, + "nodePlanId": 80206, + "nodeId": 2620102, + "weight": 2 + }, + { + "id": 4104, + "nodePlanId": 80206, + "nodeId": 2620202, + "weight": 2 + }, + { + "id": 4105, + "nodePlanId": 80206, + "nodeId": 2620302, + "weight": 1 + }, + { + "id": 4106, + "nodePlanId": 80206, + "nodeId": 2620402, + "weight": 1 + }, + { + "id": 4107, + "nodePlanId": 80206, + "nodeId": 2620502, + "weight": 1 + }, + { + "id": 4108, + "nodePlanId": 80206, + "nodeId": 2620602, + "weight": 1 + }, + { + "id": 4109, + "nodePlanId": 80206, + "nodeId": 4610102, + "weight": 3 + }, + { + "id": 4110, + "nodePlanId": 80206, + "nodeId": 6610102, + "weight": 3 + }, + { + "id": 4111, + "nodePlanId": 80207, + "nodeId": 1620102, + "weight": 1 + }, + { + "id": 4112, + "nodePlanId": 80207, + "nodeId": 1620202, + "weight": 1 + }, + { + "id": 4113, + "nodePlanId": 80207, + "nodeId": 1620302, + "weight": 1 + }, + { + "id": 4114, + "nodePlanId": 80207, + "nodeId": 1620402, + "weight": 1 + }, + { + "id": 4115, + "nodePlanId": 80207, + "nodeId": 1620502, + "weight": 1 + }, + { + "id": 4116, + "nodePlanId": 80207, + "nodeId": 1620602, + "weight": 1 + }, + { + "id": 4117, + "nodePlanId": 80207, + "nodeId": 1620702, + "weight": 1 + }, + { + "id": 4118, + "nodePlanId": 80207, + "nodeId": 1620802, + "weight": 1 + }, + { + "id": 4119, + "nodePlanId": 80207, + "nodeId": 2620102, + "weight": 1 + }, + { + "id": 4120, + "nodePlanId": 80207, + "nodeId": 2620202, + "weight": 1 + }, + { + "id": 4121, + "nodePlanId": 80207, + "nodeId": 2620302, + "weight": 2 + }, + { + "id": 4122, + "nodePlanId": 80207, + "nodeId": 2620402, + "weight": 2 + }, + { + "id": 4123, + "nodePlanId": 80207, + "nodeId": 2620502, + "weight": 1 + }, + { + "id": 4124, + "nodePlanId": 80207, + "nodeId": 2620602, + "weight": 1 + }, + { + "id": 4125, + "nodePlanId": 80207, + "nodeId": 5610102, + "weight": 3 + }, + { + "id": 4126, + "nodePlanId": 80208, + "nodeId": 1620102, + "weight": 1 + }, + { + "id": 4127, + "nodePlanId": 80208, + "nodeId": 1620202, + "weight": 1 + }, + { + "id": 4128, + "nodePlanId": 80208, + "nodeId": 1620302, + "weight": 1 + }, + { + "id": 4129, + "nodePlanId": 80208, + "nodeId": 1620402, + "weight": 1 + }, + { + "id": 4130, + "nodePlanId": 80208, + "nodeId": 1620502, + "weight": 1 + }, + { + "id": 4131, + "nodePlanId": 80208, + "nodeId": 1620602, + "weight": 1 + }, + { + "id": 4132, + "nodePlanId": 80208, + "nodeId": 1620702, + "weight": 1 + }, + { + "id": 4133, + "nodePlanId": 80208, + "nodeId": 1620802, + "weight": 1 + }, + { + "id": 4134, + "nodePlanId": 80208, + "nodeId": 2620102, + "weight": 1 + }, + { + "id": 4135, + "nodePlanId": 80208, + "nodeId": 2620202, + "weight": 1 + }, + { + "id": 4136, + "nodePlanId": 80208, + "nodeId": 2620302, + "weight": 1 + }, + { + "id": 4137, + "nodePlanId": 80208, + "nodeId": 2620402, + "weight": 1 + }, + { + "id": 4138, + "nodePlanId": 80208, + "nodeId": 2620502, + "weight": 2 + }, + { + "id": 4139, + "nodePlanId": 80208, + "nodeId": 2620602, + "weight": 2 + }, + { + "id": 4140, + "nodePlanId": 80208, + "nodeId": 5610102, + "weight": 3 + }, + { + "id": 4141, + "nodePlanId": 80208, + "nodeId": 6610102, + "weight": 3 + }, + { + "id": 4142, + "nodePlanId": 80209, + "nodeId": 3610102, + "weight": 1 + }, + { + "id": 4143, + "nodePlanId": 80210, + "nodeId": 1620102, + "weight": 1 + }, + { + "id": 4144, + "nodePlanId": 80210, + "nodeId": 1620202, + "weight": 1 + }, + { + "id": 4145, + "nodePlanId": 80210, + "nodeId": 1620302, + "weight": 1 + }, + { + "id": 4146, + "nodePlanId": 80210, + "nodeId": 1620402, + "weight": 1 + }, + { + "id": 4147, + "nodePlanId": 80210, + "nodeId": 1620502, + "weight": 1 + }, + { + "id": 4148, + "nodePlanId": 80210, + "nodeId": 1620602, + "weight": 1 + }, + { + "id": 4149, + "nodePlanId": 80210, + "nodeId": 1620702, + "weight": 1 + }, + { + "id": 4150, + "nodePlanId": 80210, + "nodeId": 1620802, + "weight": 1 + }, + { + "id": 4151, + "nodePlanId": 80210, + "nodeId": 2620102, + "weight": 1 + }, + { + "id": 4152, + "nodePlanId": 80210, + "nodeId": 2620202, + "weight": 1 + }, + { + "id": 4153, + "nodePlanId": 80210, + "nodeId": 2620302, + "weight": 1 + }, + { + "id": 4154, + "nodePlanId": 80210, + "nodeId": 2620402, + "weight": 1 + }, + { + "id": 4155, + "nodePlanId": 80210, + "nodeId": 2620502, + "weight": 2 + }, + { + "id": 4156, + "nodePlanId": 80210, + "nodeId": 2620602, + "weight": 2 + }, + { + "id": 4157, + "nodePlanId": 80210, + "nodeId": 5610102, + "weight": 3 + }, + { + "id": 4158, + "nodePlanId": 80210, + "nodeId": 6610102, + "weight": 3 + }, + { + "id": 4159, + "nodePlanId": 80211, + "nodeId": 1620102, + "weight": 1 + }, + { + "id": 4160, + "nodePlanId": 80211, + "nodeId": 1620202, + "weight": 1 + }, + { + "id": 4161, + "nodePlanId": 80211, + "nodeId": 1620302, + "weight": 1 + }, + { + "id": 4162, + "nodePlanId": 80211, + "nodeId": 1620402, + "weight": 1 + }, + { + "id": 4163, + "nodePlanId": 80211, + "nodeId": 1620502, + "weight": 1 + }, + { + "id": 4164, + "nodePlanId": 80211, + "nodeId": 1620602, + "weight": 1 + }, + { + "id": 4165, + "nodePlanId": 80211, + "nodeId": 1620702, + "weight": 1 + }, + { + "id": 4166, + "nodePlanId": 80211, + "nodeId": 1620802, + "weight": 1 + }, + { + "id": 4167, + "nodePlanId": 80211, + "nodeId": 2620102, + "weight": 1 + }, + { + "id": 4168, + "nodePlanId": 80211, + "nodeId": 2620202, + "weight": 1 + }, + { + "id": 4169, + "nodePlanId": 80211, + "nodeId": 2620302, + "weight": 1 + }, + { + "id": 4170, + "nodePlanId": 80211, + "nodeId": 2620402, + "weight": 1 + }, + { + "id": 4171, + "nodePlanId": 80211, + "nodeId": 2620502, + "weight": 2 + }, + { + "id": 4172, + "nodePlanId": 80211, + "nodeId": 2620602, + "weight": 2 + }, + { + "id": 4173, + "nodePlanId": 80211, + "nodeId": 4610102, + "weight": 2 + }, + { + "id": 4174, + "nodePlanId": 80211, + "nodeId": 6610102, + "weight": 2 + }, + { + "id": 4175, + "nodePlanId": 80211, + "nodeId": 6610102, + "weight": 2 + }, + { + "id": 4176, + "nodePlanId": 80212, + "nodeId": 1630102, + "weight": 1 + }, + { + "id": 4177, + "nodePlanId": 80212, + "nodeId": 1630202, + "weight": 1 + }, + { + "id": 4178, + "nodePlanId": 80212, + "nodeId": 1630302, + "weight": 1 + }, + { + "id": 4179, + "nodePlanId": 80212, + "nodeId": 1630402, + "weight": 1 + }, + { + "id": 4180, + "nodePlanId": 80212, + "nodeId": 1630502, + "weight": 1 + }, + { + "id": 4181, + "nodePlanId": 80212, + "nodeId": 2630102, + "weight": 1.5 + }, + { + "id": 4182, + "nodePlanId": 80212, + "nodeId": 2630202, + "weight": 1.5 + }, + { + "id": 4183, + "nodePlanId": 80212, + "nodeId": 2630302, + "weight": 1 + }, + { + "id": 4184, + "nodePlanId": 80212, + "nodeId": 2630402, + "weight": 1 + }, + { + "id": 4185, + "nodePlanId": 80212, + "nodeId": 2630502, + "weight": 1 + }, + { + "id": 4186, + "nodePlanId": 80212, + "nodeId": 2630602, + "weight": 1 + }, + { + "id": 4187, + "nodePlanId": 80213, + "nodeId": 1630602, + "weight": 1 + }, + { + "id": 4188, + "nodePlanId": 80213, + "nodeId": 1630702, + "weight": 1 + }, + { + "id": 4189, + "nodePlanId": 80213, + "nodeId": 1630802, + "weight": 1 + }, + { + "id": 4190, + "nodePlanId": 80213, + "nodeId": 2630102, + "weight": 1 + }, + { + "id": 4191, + "nodePlanId": 80213, + "nodeId": 2630202, + "weight": 1 + }, + { + "id": 4192, + "nodePlanId": 80213, + "nodeId": 2630302, + "weight": 2 + }, + { + "id": 4193, + "nodePlanId": 80213, + "nodeId": 2630402, + "weight": 2 + }, + { + "id": 4194, + "nodePlanId": 80213, + "nodeId": 2630502, + "weight": 1 + }, + { + "id": 4195, + "nodePlanId": 80213, + "nodeId": 2630602, + "weight": 1 + }, + { + "id": 4196, + "nodePlanId": 80213, + "nodeId": 5610102, + "weight": 3 + }, + { + "id": 4197, + "nodePlanId": 80213, + "nodeId": 6610102, + "weight": 2 + }, + { + "id": 4198, + "nodePlanId": 80214, + "nodeId": 4610102, + "weight": 1 + }, + { + "id": 4199, + "nodePlanId": 80215, + "nodeId": 7610102, + "weight": 1 + }, + { + "id": 4200, + "nodePlanId": 80301, + "nodeId": 1610103, + "weight": 1 + }, + { + "id": 4201, + "nodePlanId": 80301, + "nodeId": 1610203, + "weight": 1 + }, + { + "id": 4202, + "nodePlanId": 80301, + "nodeId": 1610303, + "weight": 1 + }, + { + "id": 4203, + "nodePlanId": 80301, + "nodeId": 1610403, + "weight": 1 + }, + { + "id": 4204, + "nodePlanId": 80301, + "nodeId": 1610503, + "weight": 1 + }, + { + "id": 4205, + "nodePlanId": 80301, + "nodeId": 1610603, + "weight": 1 + }, + { + "id": 4206, + "nodePlanId": 80301, + "nodeId": 1610703, + "weight": 1 + }, + { + "id": 4207, + "nodePlanId": 80301, + "nodeId": 1610803, + "weight": 1 + }, + { + "id": 4208, + "nodePlanId": 80302, + "nodeId": 1610103, + "weight": 1 + }, + { + "id": 4209, + "nodePlanId": 80302, + "nodeId": 1610203, + "weight": 1 + }, + { + "id": 4210, + "nodePlanId": 80302, + "nodeId": 1610303, + "weight": 1 + }, + { + "id": 4211, + "nodePlanId": 80302, + "nodeId": 1610403, + "weight": 1 + }, + { + "id": 4212, + "nodePlanId": 80302, + "nodeId": 1610503, + "weight": 1 + }, + { + "id": 4213, + "nodePlanId": 80302, + "nodeId": 1610603, + "weight": 1 + }, + { + "id": 4214, + "nodePlanId": 80302, + "nodeId": 1610703, + "weight": 1 + }, + { + "id": 4215, + "nodePlanId": 80302, + "nodeId": 1610803, + "weight": 1 + }, + { + "id": 4216, + "nodePlanId": 80303, + "nodeId": 1610103, + "weight": 1 + }, + { + "id": 4217, + "nodePlanId": 80303, + "nodeId": 1610203, + "weight": 1 + }, + { + "id": 4218, + "nodePlanId": 80303, + "nodeId": 1610303, + "weight": 1 + }, + { + "id": 4219, + "nodePlanId": 80303, + "nodeId": 1610403, + "weight": 1 + }, + { + "id": 4220, + "nodePlanId": 80303, + "nodeId": 1610503, + "weight": 1 + }, + { + "id": 4221, + "nodePlanId": 80303, + "nodeId": 1610603, + "weight": 1 + }, + { + "id": 4222, + "nodePlanId": 80303, + "nodeId": 1610703, + "weight": 1 + }, + { + "id": 4223, + "nodePlanId": 80303, + "nodeId": 1610803, + "weight": 1 + }, + { + "id": 4224, + "nodePlanId": 80303, + "nodeId": 2610103, + "weight": 4 + }, + { + "id": 4225, + "nodePlanId": 80303, + "nodeId": 2610203, + "weight": 4 + }, + { + "id": 4226, + "nodePlanId": 80303, + "nodeId": 6610103, + "weight": 8 + }, + { + "id": 4227, + "nodePlanId": 80304, + "nodeId": 2610303, + "weight": 1 + }, + { + "id": 4228, + "nodePlanId": 80304, + "nodeId": 2610403, + "weight": 1 + }, + { + "id": 4229, + "nodePlanId": 80304, + "nodeId": 2610503, + "weight": 1 + }, + { + "id": 4230, + "nodePlanId": 80304, + "nodeId": 2610603, + "weight": 1 + }, + { + "id": 4231, + "nodePlanId": 80305, + "nodeId": 5610103, + "weight": 1 + }, + { + "id": 4232, + "nodePlanId": 80306, + "nodeId": 1620103, + "weight": 1 + }, + { + "id": 4233, + "nodePlanId": 80306, + "nodeId": 1620203, + "weight": 1 + }, + { + "id": 4234, + "nodePlanId": 80306, + "nodeId": 1620303, + "weight": 1 + }, + { + "id": 4235, + "nodePlanId": 80306, + "nodeId": 1620403, + "weight": 1 + }, + { + "id": 4236, + "nodePlanId": 80306, + "nodeId": 1620503, + "weight": 1 + }, + { + "id": 4237, + "nodePlanId": 80306, + "nodeId": 1620603, + "weight": 1 + }, + { + "id": 4238, + "nodePlanId": 80306, + "nodeId": 1620703, + "weight": 1 + }, + { + "id": 4239, + "nodePlanId": 80306, + "nodeId": 1620803, + "weight": 1 + }, + { + "id": 4240, + "nodePlanId": 80306, + "nodeId": 2620103, + "weight": 2 + }, + { + "id": 4241, + "nodePlanId": 80306, + "nodeId": 2620203, + "weight": 2 + }, + { + "id": 4242, + "nodePlanId": 80306, + "nodeId": 2620303, + "weight": 1 + }, + { + "id": 4243, + "nodePlanId": 80306, + "nodeId": 2620403, + "weight": 1 + }, + { + "id": 4244, + "nodePlanId": 80306, + "nodeId": 2620503, + "weight": 1 + }, + { + "id": 4245, + "nodePlanId": 80306, + "nodeId": 2620603, + "weight": 1 + }, + { + "id": 4246, + "nodePlanId": 80306, + "nodeId": 4610103, + "weight": 3 + }, + { + "id": 4247, + "nodePlanId": 80306, + "nodeId": 6610103, + "weight": 3 + }, + { + "id": 4248, + "nodePlanId": 80307, + "nodeId": 1620103, + "weight": 1 + }, + { + "id": 4249, + "nodePlanId": 80307, + "nodeId": 1620203, + "weight": 1 + }, + { + "id": 4250, + "nodePlanId": 80307, + "nodeId": 1620303, + "weight": 1 + }, + { + "id": 4251, + "nodePlanId": 80307, + "nodeId": 1620403, + "weight": 1 + }, + { + "id": 4252, + "nodePlanId": 80307, + "nodeId": 1620503, + "weight": 1 + }, + { + "id": 4253, + "nodePlanId": 80307, + "nodeId": 1620603, + "weight": 1 + }, + { + "id": 4254, + "nodePlanId": 80307, + "nodeId": 1620703, + "weight": 1 + }, + { + "id": 4255, + "nodePlanId": 80307, + "nodeId": 1620803, + "weight": 1 + }, + { + "id": 4256, + "nodePlanId": 80307, + "nodeId": 2620103, + "weight": 1 + }, + { + "id": 4257, + "nodePlanId": 80307, + "nodeId": 2620203, + "weight": 1 + }, + { + "id": 4258, + "nodePlanId": 80307, + "nodeId": 2620303, + "weight": 2 + }, + { + "id": 4259, + "nodePlanId": 80307, + "nodeId": 2620403, + "weight": 2 + }, + { + "id": 4260, + "nodePlanId": 80307, + "nodeId": 2620503, + "weight": 1 + }, + { + "id": 4261, + "nodePlanId": 80307, + "nodeId": 2620603, + "weight": 1 + }, + { + "id": 4262, + "nodePlanId": 80307, + "nodeId": 5610103, + "weight": 3 + }, + { + "id": 4263, + "nodePlanId": 80308, + "nodeId": 1620103, + "weight": 1 + }, + { + "id": 4264, + "nodePlanId": 80308, + "nodeId": 1620203, + "weight": 1 + }, + { + "id": 4265, + "nodePlanId": 80308, + "nodeId": 1620303, + "weight": 1 + }, + { + "id": 4266, + "nodePlanId": 80308, + "nodeId": 1620403, + "weight": 1 + }, + { + "id": 4267, + "nodePlanId": 80308, + "nodeId": 1620503, + "weight": 1 + }, + { + "id": 4268, + "nodePlanId": 80308, + "nodeId": 1620603, + "weight": 1 + }, + { + "id": 4269, + "nodePlanId": 80308, + "nodeId": 1620703, + "weight": 1 + }, + { + "id": 4270, + "nodePlanId": 80308, + "nodeId": 1620803, + "weight": 1 + }, + { + "id": 4271, + "nodePlanId": 80308, + "nodeId": 2620103, + "weight": 1 + }, + { + "id": 4272, + "nodePlanId": 80308, + "nodeId": 2620203, + "weight": 1 + }, + { + "id": 4273, + "nodePlanId": 80308, + "nodeId": 2620303, + "weight": 1 + }, + { + "id": 4274, + "nodePlanId": 80308, + "nodeId": 2620403, + "weight": 1 + }, + { + "id": 4275, + "nodePlanId": 80308, + "nodeId": 2620503, + "weight": 2 + }, + { + "id": 4276, + "nodePlanId": 80308, + "nodeId": 2620603, + "weight": 2 + }, + { + "id": 4277, + "nodePlanId": 80308, + "nodeId": 5610103, + "weight": 3 + }, + { + "id": 4278, + "nodePlanId": 80308, + "nodeId": 6610103, + "weight": 3 + }, + { + "id": 4279, + "nodePlanId": 80309, + "nodeId": 3610103, + "weight": 1 + }, + { + "id": 4280, + "nodePlanId": 80310, + "nodeId": 1620103, + "weight": 1 + }, + { + "id": 4281, + "nodePlanId": 80310, + "nodeId": 1620203, + "weight": 1 + }, + { + "id": 4282, + "nodePlanId": 80310, + "nodeId": 1620303, + "weight": 1 + }, + { + "id": 4283, + "nodePlanId": 80310, + "nodeId": 1620403, + "weight": 1 + }, + { + "id": 4284, + "nodePlanId": 80310, + "nodeId": 1620503, + "weight": 1 + }, + { + "id": 4285, + "nodePlanId": 80310, + "nodeId": 1620603, + "weight": 1 + }, + { + "id": 4286, + "nodePlanId": 80310, + "nodeId": 1620703, + "weight": 1 + }, + { + "id": 4287, + "nodePlanId": 80310, + "nodeId": 1620803, + "weight": 1 + }, + { + "id": 4288, + "nodePlanId": 80310, + "nodeId": 2620103, + "weight": 1 + }, + { + "id": 4289, + "nodePlanId": 80310, + "nodeId": 2620203, + "weight": 1 + }, + { + "id": 4290, + "nodePlanId": 80310, + "nodeId": 2620303, + "weight": 1 + }, + { + "id": 4291, + "nodePlanId": 80310, + "nodeId": 2620403, + "weight": 1 + }, + { + "id": 4292, + "nodePlanId": 80310, + "nodeId": 2620503, + "weight": 2 + }, + { + "id": 4293, + "nodePlanId": 80310, + "nodeId": 2620603, + "weight": 2 + }, + { + "id": 4294, + "nodePlanId": 80310, + "nodeId": 5610103, + "weight": 3 + }, + { + "id": 4295, + "nodePlanId": 80310, + "nodeId": 6610103, + "weight": 3 + }, + { + "id": 4296, + "nodePlanId": 80311, + "nodeId": 1620103, + "weight": 1 + }, + { + "id": 4297, + "nodePlanId": 80311, + "nodeId": 1620203, + "weight": 1 + }, + { + "id": 4298, + "nodePlanId": 80311, + "nodeId": 1620303, + "weight": 1 + }, + { + "id": 4299, + "nodePlanId": 80311, + "nodeId": 1620403, + "weight": 1 + }, + { + "id": 4300, + "nodePlanId": 80311, + "nodeId": 1620503, + "weight": 1 + }, + { + "id": 4301, + "nodePlanId": 80311, + "nodeId": 1620603, + "weight": 1 + }, + { + "id": 4302, + "nodePlanId": 80311, + "nodeId": 1620703, + "weight": 1 + }, + { + "id": 4303, + "nodePlanId": 80311, + "nodeId": 1620803, + "weight": 1 + }, + { + "id": 4304, + "nodePlanId": 80311, + "nodeId": 2620103, + "weight": 1 + }, + { + "id": 4305, + "nodePlanId": 80311, + "nodeId": 2620203, + "weight": 1 + }, + { + "id": 4306, + "nodePlanId": 80311, + "nodeId": 2620303, + "weight": 1 + }, + { + "id": 4307, + "nodePlanId": 80311, + "nodeId": 2620403, + "weight": 1 + }, + { + "id": 4308, + "nodePlanId": 80311, + "nodeId": 2620503, + "weight": 2 + }, + { + "id": 4309, + "nodePlanId": 80311, + "nodeId": 2620603, + "weight": 2 + }, + { + "id": 4310, + "nodePlanId": 80311, + "nodeId": 4610103, + "weight": 2 + }, + { + "id": 4311, + "nodePlanId": 80311, + "nodeId": 6610103, + "weight": 2 + }, + { + "id": 4312, + "nodePlanId": 80311, + "nodeId": 6610103, + "weight": 2 + }, + { + "id": 4313, + "nodePlanId": 80312, + "nodeId": 1630103, + "weight": 1 + }, + { + "id": 4314, + "nodePlanId": 80312, + "nodeId": 1630203, + "weight": 1 + }, + { + "id": 4315, + "nodePlanId": 80312, + "nodeId": 1630303, + "weight": 1 + }, + { + "id": 4316, + "nodePlanId": 80312, + "nodeId": 1630403, + "weight": 1 + }, + { + "id": 4317, + "nodePlanId": 80312, + "nodeId": 1630503, + "weight": 1 + }, + { + "id": 4318, + "nodePlanId": 80312, + "nodeId": 2630103, + "weight": 1.5 + }, + { + "id": 4319, + "nodePlanId": 80312, + "nodeId": 2630203, + "weight": 1.5 + }, + { + "id": 4320, + "nodePlanId": 80312, + "nodeId": 2630303, + "weight": 1 + }, + { + "id": 4321, + "nodePlanId": 80312, + "nodeId": 2630403, + "weight": 1 + }, + { + "id": 4322, + "nodePlanId": 80312, + "nodeId": 2630503, + "weight": 1 + }, + { + "id": 4323, + "nodePlanId": 80312, + "nodeId": 2630603, + "weight": 1 + }, + { + "id": 4324, + "nodePlanId": 80313, + "nodeId": 1630603, + "weight": 1 + }, + { + "id": 4325, + "nodePlanId": 80313, + "nodeId": 1630703, + "weight": 1 + }, + { + "id": 4326, + "nodePlanId": 80313, + "nodeId": 1630803, + "weight": 1 + }, + { + "id": 4327, + "nodePlanId": 80313, + "nodeId": 2630103, + "weight": 1 + }, + { + "id": 4328, + "nodePlanId": 80313, + "nodeId": 2630203, + "weight": 1 + }, + { + "id": 4329, + "nodePlanId": 80313, + "nodeId": 2630303, + "weight": 2 + }, + { + "id": 4330, + "nodePlanId": 80313, + "nodeId": 2630403, + "weight": 2 + }, + { + "id": 4331, + "nodePlanId": 80313, + "nodeId": 2630503, + "weight": 1 + }, + { + "id": 4332, + "nodePlanId": 80313, + "nodeId": 2630603, + "weight": 1 + }, + { + "id": 4333, + "nodePlanId": 80313, + "nodeId": 5610103, + "weight": 3 + }, + { + "id": 4334, + "nodePlanId": 80313, + "nodeId": 6610103, + "weight": 2 + }, + { + "id": 4335, + "nodePlanId": 80314, + "nodeId": 4610103, + "weight": 1 + }, + { + "id": 4336, + "nodePlanId": 80315, + "nodeId": 7610103, + "weight": 1 + }, + { + "id": 4337, + "nodePlanId": 80401, + "nodeId": 1610104, + "weight": 1 + }, + { + "id": 4338, + "nodePlanId": 80401, + "nodeId": 1610204, + "weight": 1 + }, + { + "id": 4339, + "nodePlanId": 80401, + "nodeId": 1610304, + "weight": 1 + }, + { + "id": 4340, + "nodePlanId": 80401, + "nodeId": 1610404, + "weight": 1 + }, + { + "id": 4341, + "nodePlanId": 80401, + "nodeId": 1610504, + "weight": 1 + }, + { + "id": 4342, + "nodePlanId": 80401, + "nodeId": 1610604, + "weight": 1 + }, + { + "id": 4343, + "nodePlanId": 80401, + "nodeId": 1610704, + "weight": 1 + }, + { + "id": 4344, + "nodePlanId": 80401, + "nodeId": 1610804, + "weight": 1 + }, + { + "id": 4345, + "nodePlanId": 80402, + "nodeId": 1610104, + "weight": 1 + }, + { + "id": 4346, + "nodePlanId": 80402, + "nodeId": 1610204, + "weight": 1 + }, + { + "id": 4347, + "nodePlanId": 80402, + "nodeId": 1610304, + "weight": 1 + }, + { + "id": 4348, + "nodePlanId": 80402, + "nodeId": 1610404, + "weight": 1 + }, + { + "id": 4349, + "nodePlanId": 80402, + "nodeId": 1610504, + "weight": 1 + }, + { + "id": 4350, + "nodePlanId": 80402, + "nodeId": 1610604, + "weight": 1 + }, + { + "id": 4351, + "nodePlanId": 80402, + "nodeId": 1610704, + "weight": 1 + }, + { + "id": 4352, + "nodePlanId": 80402, + "nodeId": 1610804, + "weight": 1 + }, + { + "id": 4353, + "nodePlanId": 80403, + "nodeId": 1610104, + "weight": 1 + }, + { + "id": 4354, + "nodePlanId": 80403, + "nodeId": 1610204, + "weight": 1 + }, + { + "id": 4355, + "nodePlanId": 80403, + "nodeId": 1610304, + "weight": 1 + }, + { + "id": 4356, + "nodePlanId": 80403, + "nodeId": 1610404, + "weight": 1 + }, + { + "id": 4357, + "nodePlanId": 80403, + "nodeId": 1610504, + "weight": 1 + }, + { + "id": 4358, + "nodePlanId": 80403, + "nodeId": 1610604, + "weight": 1 + }, + { + "id": 4359, + "nodePlanId": 80403, + "nodeId": 1610704, + "weight": 1 + }, + { + "id": 4360, + "nodePlanId": 80403, + "nodeId": 1610804, + "weight": 1 + }, + { + "id": 4361, + "nodePlanId": 80403, + "nodeId": 2610104, + "weight": 4 + }, + { + "id": 4362, + "nodePlanId": 80403, + "nodeId": 2610204, + "weight": 4 + }, + { + "id": 4363, + "nodePlanId": 80403, + "nodeId": 6610104, + "weight": 8 + }, + { + "id": 4364, + "nodePlanId": 80404, + "nodeId": 2610304, + "weight": 1 + }, + { + "id": 4365, + "nodePlanId": 80404, + "nodeId": 2610404, + "weight": 1 + }, + { + "id": 4366, + "nodePlanId": 80404, + "nodeId": 2610504, + "weight": 1 + }, + { + "id": 4367, + "nodePlanId": 80404, + "nodeId": 2610604, + "weight": 1 + }, + { + "id": 4368, + "nodePlanId": 80405, + "nodeId": 5610104, + "weight": 1 + }, + { + "id": 4369, + "nodePlanId": 80406, + "nodeId": 1620104, + "weight": 1 + }, + { + "id": 4370, + "nodePlanId": 80406, + "nodeId": 1620204, + "weight": 1 + }, + { + "id": 4371, + "nodePlanId": 80406, + "nodeId": 1620304, + "weight": 1 + }, + { + "id": 4372, + "nodePlanId": 80406, + "nodeId": 1620404, + "weight": 1 + }, + { + "id": 4373, + "nodePlanId": 80406, + "nodeId": 1620504, + "weight": 1 + }, + { + "id": 4374, + "nodePlanId": 80406, + "nodeId": 1620604, + "weight": 1 + }, + { + "id": 4375, + "nodePlanId": 80406, + "nodeId": 1620704, + "weight": 1 + }, + { + "id": 4376, + "nodePlanId": 80406, + "nodeId": 1620804, + "weight": 1 + }, + { + "id": 4377, + "nodePlanId": 80406, + "nodeId": 2620104, + "weight": 2 + }, + { + "id": 4378, + "nodePlanId": 80406, + "nodeId": 2620204, + "weight": 2 + }, + { + "id": 4379, + "nodePlanId": 80406, + "nodeId": 2620304, + "weight": 1 + }, + { + "id": 4380, + "nodePlanId": 80406, + "nodeId": 2620404, + "weight": 1 + }, + { + "id": 4381, + "nodePlanId": 80406, + "nodeId": 2620504, + "weight": 1 + }, + { + "id": 4382, + "nodePlanId": 80406, + "nodeId": 2620604, + "weight": 1 + }, + { + "id": 4383, + "nodePlanId": 80406, + "nodeId": 4610104, + "weight": 3 + }, + { + "id": 4384, + "nodePlanId": 80406, + "nodeId": 6610104, + "weight": 3 + }, + { + "id": 4385, + "nodePlanId": 80407, + "nodeId": 1620104, + "weight": 1 + }, + { + "id": 4386, + "nodePlanId": 80407, + "nodeId": 1620204, + "weight": 1 + }, + { + "id": 4387, + "nodePlanId": 80407, + "nodeId": 1620304, + "weight": 1 + }, + { + "id": 4388, + "nodePlanId": 80407, + "nodeId": 1620404, + "weight": 1 + }, + { + "id": 4389, + "nodePlanId": 80407, + "nodeId": 1620504, + "weight": 1 + }, + { + "id": 4390, + "nodePlanId": 80407, + "nodeId": 1620604, + "weight": 1 + }, + { + "id": 4391, + "nodePlanId": 80407, + "nodeId": 1620704, + "weight": 1 + }, + { + "id": 4392, + "nodePlanId": 80407, + "nodeId": 1620804, + "weight": 1 + }, + { + "id": 4393, + "nodePlanId": 80407, + "nodeId": 2620104, + "weight": 1 + }, + { + "id": 4394, + "nodePlanId": 80407, + "nodeId": 2620204, + "weight": 1 + }, + { + "id": 4395, + "nodePlanId": 80407, + "nodeId": 2620304, + "weight": 2 + }, + { + "id": 4396, + "nodePlanId": 80407, + "nodeId": 2620404, + "weight": 2 + }, + { + "id": 4397, + "nodePlanId": 80407, + "nodeId": 2620504, + "weight": 1 + }, + { + "id": 4398, + "nodePlanId": 80407, + "nodeId": 2620604, + "weight": 1 + }, + { + "id": 4399, + "nodePlanId": 80407, + "nodeId": 5610104, + "weight": 3 + }, + { + "id": 4400, + "nodePlanId": 80408, + "nodeId": 1620104, + "weight": 1 + }, + { + "id": 4401, + "nodePlanId": 80408, + "nodeId": 1620204, + "weight": 1 + }, + { + "id": 4402, + "nodePlanId": 80408, + "nodeId": 1620304, + "weight": 1 + }, + { + "id": 4403, + "nodePlanId": 80408, + "nodeId": 1620404, + "weight": 1 + }, + { + "id": 4404, + "nodePlanId": 80408, + "nodeId": 1620504, + "weight": 1 + }, + { + "id": 4405, + "nodePlanId": 80408, + "nodeId": 1620604, + "weight": 1 + }, + { + "id": 4406, + "nodePlanId": 80408, + "nodeId": 1620704, + "weight": 1 + }, + { + "id": 4407, + "nodePlanId": 80408, + "nodeId": 1620804, + "weight": 1 + }, + { + "id": 4408, + "nodePlanId": 80408, + "nodeId": 2620104, + "weight": 1 + }, + { + "id": 4409, + "nodePlanId": 80408, + "nodeId": 2620204, + "weight": 1 + }, + { + "id": 4410, + "nodePlanId": 80408, + "nodeId": 2620304, + "weight": 1 + }, + { + "id": 4411, + "nodePlanId": 80408, + "nodeId": 2620404, + "weight": 1 + }, + { + "id": 4412, + "nodePlanId": 80408, + "nodeId": 2620504, + "weight": 2 + }, + { + "id": 4413, + "nodePlanId": 80408, + "nodeId": 2620604, + "weight": 2 + }, + { + "id": 4414, + "nodePlanId": 80408, + "nodeId": 5610104, + "weight": 3 + }, + { + "id": 4415, + "nodePlanId": 80408, + "nodeId": 6610104, + "weight": 3 + }, + { + "id": 4416, + "nodePlanId": 80409, + "nodeId": 3610104, + "weight": 1 + }, + { + "id": 4417, + "nodePlanId": 80410, + "nodeId": 1620104, + "weight": 1 + }, + { + "id": 4418, + "nodePlanId": 80410, + "nodeId": 1620204, + "weight": 1 + }, + { + "id": 4419, + "nodePlanId": 80410, + "nodeId": 1620304, + "weight": 1 + }, + { + "id": 4420, + "nodePlanId": 80410, + "nodeId": 1620404, + "weight": 1 + }, + { + "id": 4421, + "nodePlanId": 80410, + "nodeId": 1620504, + "weight": 1 + }, + { + "id": 4422, + "nodePlanId": 80410, + "nodeId": 1620604, + "weight": 1 + }, + { + "id": 4423, + "nodePlanId": 80410, + "nodeId": 1620704, + "weight": 1 + }, + { + "id": 4424, + "nodePlanId": 80410, + "nodeId": 1620804, + "weight": 1 + }, + { + "id": 4425, + "nodePlanId": 80410, + "nodeId": 2620104, + "weight": 1 + }, + { + "id": 4426, + "nodePlanId": 80410, + "nodeId": 2620204, + "weight": 1 + }, + { + "id": 4427, + "nodePlanId": 80410, + "nodeId": 2620304, + "weight": 1 + }, + { + "id": 4428, + "nodePlanId": 80410, + "nodeId": 2620404, + "weight": 1 + }, + { + "id": 4429, + "nodePlanId": 80410, + "nodeId": 2620504, + "weight": 2 + }, + { + "id": 4430, + "nodePlanId": 80410, + "nodeId": 2620604, + "weight": 2 + }, + { + "id": 4431, + "nodePlanId": 80410, + "nodeId": 5610104, + "weight": 3 + }, + { + "id": 4432, + "nodePlanId": 80410, + "nodeId": 6610104, + "weight": 3 + }, + { + "id": 4433, + "nodePlanId": 80411, + "nodeId": 1620104, + "weight": 1 + }, + { + "id": 4434, + "nodePlanId": 80411, + "nodeId": 1620204, + "weight": 1 + }, + { + "id": 4435, + "nodePlanId": 80411, + "nodeId": 1620304, + "weight": 1 + }, + { + "id": 4436, + "nodePlanId": 80411, + "nodeId": 1620404, + "weight": 1 + }, + { + "id": 4437, + "nodePlanId": 80411, + "nodeId": 1620504, + "weight": 1 + }, + { + "id": 4438, + "nodePlanId": 80411, + "nodeId": 1620604, + "weight": 1 + }, + { + "id": 4439, + "nodePlanId": 80411, + "nodeId": 1620704, + "weight": 1 + }, + { + "id": 4440, + "nodePlanId": 80411, + "nodeId": 1620804, + "weight": 1 + }, + { + "id": 4441, + "nodePlanId": 80411, + "nodeId": 2620104, + "weight": 1 + }, + { + "id": 4442, + "nodePlanId": 80411, + "nodeId": 2620204, + "weight": 1 + }, + { + "id": 4443, + "nodePlanId": 80411, + "nodeId": 2620304, + "weight": 1 + }, + { + "id": 4444, + "nodePlanId": 80411, + "nodeId": 2620404, + "weight": 1 + }, + { + "id": 4445, + "nodePlanId": 80411, + "nodeId": 2620504, + "weight": 2 + }, + { + "id": 4446, + "nodePlanId": 80411, + "nodeId": 2620604, + "weight": 2 + }, + { + "id": 4447, + "nodePlanId": 80411, + "nodeId": 4610104, + "weight": 2 + }, + { + "id": 4448, + "nodePlanId": 80411, + "nodeId": 6610104, + "weight": 2 + }, + { + "id": 4449, + "nodePlanId": 80411, + "nodeId": 6610104, + "weight": 2 + }, + { + "id": 4450, + "nodePlanId": 80412, + "nodeId": 1630104, + "weight": 1 + }, + { + "id": 4451, + "nodePlanId": 80412, + "nodeId": 1630204, + "weight": 1 + }, + { + "id": 4452, + "nodePlanId": 80412, + "nodeId": 1630304, + "weight": 1 + }, + { + "id": 4453, + "nodePlanId": 80412, + "nodeId": 1630404, + "weight": 1 + }, + { + "id": 4454, + "nodePlanId": 80412, + "nodeId": 1630504, + "weight": 1 + }, + { + "id": 4455, + "nodePlanId": 80412, + "nodeId": 2630104, + "weight": 1.5 + }, + { + "id": 4456, + "nodePlanId": 80412, + "nodeId": 2630204, + "weight": 1.5 + }, + { + "id": 4457, + "nodePlanId": 80412, + "nodeId": 2630304, + "weight": 1 + }, + { + "id": 4458, + "nodePlanId": 80412, + "nodeId": 2630404, + "weight": 1 + }, + { + "id": 4459, + "nodePlanId": 80412, + "nodeId": 2630504, + "weight": 1 + }, + { + "id": 4460, + "nodePlanId": 80412, + "nodeId": 2630604, + "weight": 1 + }, + { + "id": 4461, + "nodePlanId": 80413, + "nodeId": 1630604, + "weight": 1 + }, + { + "id": 4462, + "nodePlanId": 80413, + "nodeId": 1630704, + "weight": 1 + }, + { + "id": 4463, + "nodePlanId": 80413, + "nodeId": 1630804, + "weight": 1 + }, + { + "id": 4464, + "nodePlanId": 80413, + "nodeId": 2630104, + "weight": 1 + }, + { + "id": 4465, + "nodePlanId": 80413, + "nodeId": 2630204, + "weight": 1 + }, + { + "id": 4466, + "nodePlanId": 80413, + "nodeId": 2630304, + "weight": 2 + }, + { + "id": 4467, + "nodePlanId": 80413, + "nodeId": 2630404, + "weight": 2 + }, + { + "id": 4468, + "nodePlanId": 80413, + "nodeId": 2630504, + "weight": 1 + }, + { + "id": 4469, + "nodePlanId": 80413, + "nodeId": 2630604, + "weight": 1 + }, + { + "id": 4470, + "nodePlanId": 80413, + "nodeId": 5610104, + "weight": 3 + }, + { + "id": 4471, + "nodePlanId": 80413, + "nodeId": 6610104, + "weight": 2 + }, + { + "id": 4472, + "nodePlanId": 80414, + "nodeId": 4610104, + "weight": 1 + }, + { + "id": 4473, + "nodePlanId": 80415, + "nodeId": 7610104, + "weight": 1 + }, + { + "id": 4474, + "nodePlanId": 80501, + "nodeId": 1610105, + "weight": 1 + }, + { + "id": 4475, + "nodePlanId": 80501, + "nodeId": 1610205, + "weight": 1 + }, + { + "id": 4476, + "nodePlanId": 80501, + "nodeId": 1610305, + "weight": 1 + }, + { + "id": 4477, + "nodePlanId": 80501, + "nodeId": 1610405, + "weight": 1 + }, + { + "id": 4478, + "nodePlanId": 80501, + "nodeId": 1610505, + "weight": 1 + }, + { + "id": 4479, + "nodePlanId": 80501, + "nodeId": 1610605, + "weight": 1 + }, + { + "id": 4480, + "nodePlanId": 80501, + "nodeId": 1610705, + "weight": 1 + }, + { + "id": 4481, + "nodePlanId": 80501, + "nodeId": 1610805, + "weight": 1 + }, + { + "id": 4482, + "nodePlanId": 80502, + "nodeId": 1610105, + "weight": 1 + }, + { + "id": 4483, + "nodePlanId": 80502, + "nodeId": 1610205, + "weight": 1 + }, + { + "id": 4484, + "nodePlanId": 80502, + "nodeId": 1610305, + "weight": 1 + }, + { + "id": 4485, + "nodePlanId": 80502, + "nodeId": 1610405, + "weight": 1 + }, + { + "id": 4486, + "nodePlanId": 80502, + "nodeId": 1610505, + "weight": 1 + }, + { + "id": 4487, + "nodePlanId": 80502, + "nodeId": 1610605, + "weight": 1 + }, + { + "id": 4488, + "nodePlanId": 80502, + "nodeId": 1610705, + "weight": 1 + }, + { + "id": 4489, + "nodePlanId": 80502, + "nodeId": 1610805, + "weight": 1 + }, + { + "id": 4490, + "nodePlanId": 80503, + "nodeId": 1610105, + "weight": 1 + }, + { + "id": 4491, + "nodePlanId": 80503, + "nodeId": 1610205, + "weight": 1 + }, + { + "id": 4492, + "nodePlanId": 80503, + "nodeId": 1610305, + "weight": 1 + }, + { + "id": 4493, + "nodePlanId": 80503, + "nodeId": 1610405, + "weight": 1 + }, + { + "id": 4494, + "nodePlanId": 80503, + "nodeId": 1610505, + "weight": 1 + }, + { + "id": 4495, + "nodePlanId": 80503, + "nodeId": 1610605, + "weight": 1 + }, + { + "id": 4496, + "nodePlanId": 80503, + "nodeId": 1610705, + "weight": 1 + }, + { + "id": 4497, + "nodePlanId": 80503, + "nodeId": 1610805, + "weight": 1 + }, + { + "id": 4498, + "nodePlanId": 80503, + "nodeId": 2610105, + "weight": 4 + }, + { + "id": 4499, + "nodePlanId": 80503, + "nodeId": 2610205, + "weight": 4 + }, + { + "id": 4500, + "nodePlanId": 80503, + "nodeId": 6610105, + "weight": 8 + }, + { + "id": 4501, + "nodePlanId": 80504, + "nodeId": 2610305, + "weight": 1 + }, + { + "id": 4502, + "nodePlanId": 80504, + "nodeId": 2610405, + "weight": 1 + }, + { + "id": 4503, + "nodePlanId": 80504, + "nodeId": 2610505, + "weight": 1 + }, + { + "id": 4504, + "nodePlanId": 80504, + "nodeId": 2610605, + "weight": 1 + }, + { + "id": 4505, + "nodePlanId": 80505, + "nodeId": 5610105, + "weight": 1 + }, + { + "id": 4506, + "nodePlanId": 80506, + "nodeId": 1620105, + "weight": 1 + }, + { + "id": 4507, + "nodePlanId": 80506, + "nodeId": 1620205, + "weight": 1 + }, + { + "id": 4508, + "nodePlanId": 80506, + "nodeId": 1620305, + "weight": 1 + }, + { + "id": 4509, + "nodePlanId": 80506, + "nodeId": 1620405, + "weight": 1 + }, + { + "id": 4510, + "nodePlanId": 80506, + "nodeId": 1620505, + "weight": 1 + }, + { + "id": 4511, + "nodePlanId": 80506, + "nodeId": 1620605, + "weight": 1 + }, + { + "id": 4512, + "nodePlanId": 80506, + "nodeId": 1620705, + "weight": 1 + }, + { + "id": 4513, + "nodePlanId": 80506, + "nodeId": 1620805, + "weight": 1 + }, + { + "id": 4514, + "nodePlanId": 80506, + "nodeId": 2620105, + "weight": 2 + }, + { + "id": 4515, + "nodePlanId": 80506, + "nodeId": 2620205, + "weight": 2 + }, + { + "id": 4516, + "nodePlanId": 80506, + "nodeId": 2620305, + "weight": 1 + }, + { + "id": 4517, + "nodePlanId": 80506, + "nodeId": 2620405, + "weight": 1 + }, + { + "id": 4518, + "nodePlanId": 80506, + "nodeId": 2620505, + "weight": 1 + }, + { + "id": 4519, + "nodePlanId": 80506, + "nodeId": 2620605, + "weight": 1 + }, + { + "id": 4520, + "nodePlanId": 80506, + "nodeId": 4610105, + "weight": 3 + }, + { + "id": 4521, + "nodePlanId": 80506, + "nodeId": 6610105, + "weight": 3 + }, + { + "id": 4522, + "nodePlanId": 80507, + "nodeId": 1620105, + "weight": 1 + }, + { + "id": 4523, + "nodePlanId": 80507, + "nodeId": 1620205, + "weight": 1 + }, + { + "id": 4524, + "nodePlanId": 80507, + "nodeId": 1620305, + "weight": 1 + }, + { + "id": 4525, + "nodePlanId": 80507, + "nodeId": 1620405, + "weight": 1 + }, + { + "id": 4526, + "nodePlanId": 80507, + "nodeId": 1620505, + "weight": 1 + }, + { + "id": 4527, + "nodePlanId": 80507, + "nodeId": 1620605, + "weight": 1 + }, + { + "id": 4528, + "nodePlanId": 80507, + "nodeId": 1620705, + "weight": 1 + }, + { + "id": 4529, + "nodePlanId": 80507, + "nodeId": 1620805, + "weight": 1 + }, + { + "id": 4530, + "nodePlanId": 80507, + "nodeId": 2620105, + "weight": 1 + }, + { + "id": 4531, + "nodePlanId": 80507, + "nodeId": 2620205, + "weight": 1 + }, + { + "id": 4532, + "nodePlanId": 80507, + "nodeId": 2620305, + "weight": 2 + }, + { + "id": 4533, + "nodePlanId": 80507, + "nodeId": 2620405, + "weight": 2 + }, + { + "id": 4534, + "nodePlanId": 80507, + "nodeId": 2620505, + "weight": 1 + }, + { + "id": 4535, + "nodePlanId": 80507, + "nodeId": 2620605, + "weight": 1 + }, + { + "id": 4536, + "nodePlanId": 80507, + "nodeId": 5610105, + "weight": 3 + }, + { + "id": 4537, + "nodePlanId": 80508, + "nodeId": 1620105, + "weight": 1 + }, + { + "id": 4538, + "nodePlanId": 80508, + "nodeId": 1620205, + "weight": 1 + }, + { + "id": 4539, + "nodePlanId": 80508, + "nodeId": 1620305, + "weight": 1 + }, + { + "id": 4540, + "nodePlanId": 80508, + "nodeId": 1620405, + "weight": 1 + }, + { + "id": 4541, + "nodePlanId": 80508, + "nodeId": 1620505, + "weight": 1 + }, + { + "id": 4542, + "nodePlanId": 80508, + "nodeId": 1620605, + "weight": 1 + }, + { + "id": 4543, + "nodePlanId": 80508, + "nodeId": 1620705, + "weight": 1 + }, + { + "id": 4544, + "nodePlanId": 80508, + "nodeId": 1620805, + "weight": 1 + }, + { + "id": 4545, + "nodePlanId": 80508, + "nodeId": 2620105, + "weight": 1 + }, + { + "id": 4546, + "nodePlanId": 80508, + "nodeId": 2620205, + "weight": 1 + }, + { + "id": 4547, + "nodePlanId": 80508, + "nodeId": 2620305, + "weight": 1 + }, + { + "id": 4548, + "nodePlanId": 80508, + "nodeId": 2620405, + "weight": 1 + }, + { + "id": 4549, + "nodePlanId": 80508, + "nodeId": 2620505, + "weight": 2 + }, + { + "id": 4550, + "nodePlanId": 80508, + "nodeId": 2620605, + "weight": 2 + }, + { + "id": 4551, + "nodePlanId": 80508, + "nodeId": 5610105, + "weight": 3 + }, + { + "id": 4552, + "nodePlanId": 80508, + "nodeId": 6610105, + "weight": 3 + }, + { + "id": 4553, + "nodePlanId": 80509, + "nodeId": 3610105, + "weight": 1 + }, + { + "id": 4554, + "nodePlanId": 80510, + "nodeId": 1620105, + "weight": 1 + }, + { + "id": 4555, + "nodePlanId": 80510, + "nodeId": 1620205, + "weight": 1 + }, + { + "id": 4556, + "nodePlanId": 80510, + "nodeId": 1620305, + "weight": 1 + }, + { + "id": 4557, + "nodePlanId": 80510, + "nodeId": 1620405, + "weight": 1 + }, + { + "id": 4558, + "nodePlanId": 80510, + "nodeId": 1620505, + "weight": 1 + }, + { + "id": 4559, + "nodePlanId": 80510, + "nodeId": 1620605, + "weight": 1 + }, + { + "id": 4560, + "nodePlanId": 80510, + "nodeId": 1620705, + "weight": 1 + }, + { + "id": 4561, + "nodePlanId": 80510, + "nodeId": 1620805, + "weight": 1 + }, + { + "id": 4562, + "nodePlanId": 80510, + "nodeId": 2620105, + "weight": 1 + }, + { + "id": 4563, + "nodePlanId": 80510, + "nodeId": 2620205, + "weight": 1 + }, + { + "id": 4564, + "nodePlanId": 80510, + "nodeId": 2620305, + "weight": 1 + }, + { + "id": 4565, + "nodePlanId": 80510, + "nodeId": 2620405, + "weight": 1 + }, + { + "id": 4566, + "nodePlanId": 80510, + "nodeId": 2620505, + "weight": 2 + }, + { + "id": 4567, + "nodePlanId": 80510, + "nodeId": 2620605, + "weight": 2 + }, + { + "id": 4568, + "nodePlanId": 80510, + "nodeId": 5610105, + "weight": 3 + }, + { + "id": 4569, + "nodePlanId": 80510, + "nodeId": 6610105, + "weight": 3 + }, + { + "id": 4570, + "nodePlanId": 80511, + "nodeId": 1620105, + "weight": 1 + }, + { + "id": 4571, + "nodePlanId": 80511, + "nodeId": 1620205, + "weight": 1 + }, + { + "id": 4572, + "nodePlanId": 80511, + "nodeId": 1620305, + "weight": 1 + }, + { + "id": 4573, + "nodePlanId": 80511, + "nodeId": 1620405, + "weight": 1 + }, + { + "id": 4574, + "nodePlanId": 80511, + "nodeId": 1620505, + "weight": 1 + }, + { + "id": 4575, + "nodePlanId": 80511, + "nodeId": 1620605, + "weight": 1 + }, + { + "id": 4576, + "nodePlanId": 80511, + "nodeId": 1620705, + "weight": 1 + }, + { + "id": 4577, + "nodePlanId": 80511, + "nodeId": 1620805, + "weight": 1 + }, + { + "id": 4578, + "nodePlanId": 80511, + "nodeId": 2620105, + "weight": 1 + }, + { + "id": 4579, + "nodePlanId": 80511, + "nodeId": 2620205, + "weight": 1 + }, + { + "id": 4580, + "nodePlanId": 80511, + "nodeId": 2620305, + "weight": 1 + }, + { + "id": 4581, + "nodePlanId": 80511, + "nodeId": 2620405, + "weight": 1 + }, + { + "id": 4582, + "nodePlanId": 80511, + "nodeId": 2620505, + "weight": 2 + }, + { + "id": 4583, + "nodePlanId": 80511, + "nodeId": 2620605, + "weight": 2 + }, + { + "id": 4584, + "nodePlanId": 80511, + "nodeId": 4610105, + "weight": 2 + }, + { + "id": 4585, + "nodePlanId": 80511, + "nodeId": 6610105, + "weight": 2 + }, + { + "id": 4586, + "nodePlanId": 80511, + "nodeId": 6610105, + "weight": 2 + }, + { + "id": 4587, + "nodePlanId": 80512, + "nodeId": 1630105, + "weight": 1 + }, + { + "id": 4588, + "nodePlanId": 80512, + "nodeId": 1630205, + "weight": 1 + }, + { + "id": 4589, + "nodePlanId": 80512, + "nodeId": 1630305, + "weight": 1 + }, + { + "id": 4590, + "nodePlanId": 80512, + "nodeId": 1630405, + "weight": 1 + }, + { + "id": 4591, + "nodePlanId": 80512, + "nodeId": 1630505, + "weight": 1 + }, + { + "id": 4592, + "nodePlanId": 80512, + "nodeId": 2630105, + "weight": 1.5 + }, + { + "id": 4593, + "nodePlanId": 80512, + "nodeId": 2630205, + "weight": 1.5 + }, + { + "id": 4594, + "nodePlanId": 80512, + "nodeId": 2630305, + "weight": 1 + }, + { + "id": 4595, + "nodePlanId": 80512, + "nodeId": 2630405, + "weight": 1 + }, + { + "id": 4596, + "nodePlanId": 80512, + "nodeId": 2630505, + "weight": 1 + }, + { + "id": 4597, + "nodePlanId": 80512, + "nodeId": 2630605, + "weight": 1 + }, + { + "id": 4598, + "nodePlanId": 80513, + "nodeId": 1630605, + "weight": 1 + }, + { + "id": 4599, + "nodePlanId": 80513, + "nodeId": 1630705, + "weight": 1 + }, + { + "id": 4600, + "nodePlanId": 80513, + "nodeId": 1630805, + "weight": 1 + }, + { + "id": 4601, + "nodePlanId": 80513, + "nodeId": 2630105, + "weight": 1 + }, + { + "id": 4602, + "nodePlanId": 80513, + "nodeId": 2630205, + "weight": 1 + }, + { + "id": 4603, + "nodePlanId": 80513, + "nodeId": 2630305, + "weight": 2 + }, + { + "id": 4604, + "nodePlanId": 80513, + "nodeId": 2630405, + "weight": 2 + }, + { + "id": 4605, + "nodePlanId": 80513, + "nodeId": 2630505, + "weight": 1 + }, + { + "id": 4606, + "nodePlanId": 80513, + "nodeId": 2630605, + "weight": 1 + }, + { + "id": 4607, + "nodePlanId": 80513, + "nodeId": 5610105, + "weight": 3 + }, + { + "id": 4608, + "nodePlanId": 80513, + "nodeId": 6610105, + "weight": 2 + }, + { + "id": 4609, + "nodePlanId": 80514, + "nodeId": 4610105, + "weight": 1 + }, + { + "id": 4610, + "nodePlanId": 80514, + "nodeId": 6610105, + "weight": 1 + }, + { + "id": 4611, + "nodePlanId": 80514, + "nodeId": 6610105, + "weight": 1 + }, + { + "id": 4612, + "nodePlanId": 80514, + "nodeId": 2630505, + "weight": 1 + }, + { + "id": 4613, + "nodePlanId": 80514, + "nodeId": 2630605, + "weight": 1 + }, + { + "id": 4614, + "nodePlanId": 80515, + "nodeId": 1630105, + "weight": 1 + }, + { + "id": 4615, + "nodePlanId": 80515, + "nodeId": 1630205, + "weight": 1 + }, + { + "id": 4616, + "nodePlanId": 80515, + "nodeId": 1630305, + "weight": 1 + }, + { + "id": 4617, + "nodePlanId": 80515, + "nodeId": 1630405, + "weight": 1 + }, + { + "id": 4618, + "nodePlanId": 80515, + "nodeId": 1630505, + "weight": 1 + }, + { + "id": 4619, + "nodePlanId": 80515, + "nodeId": 1630605, + "weight": 1 + }, + { + "id": 4620, + "nodePlanId": 80515, + "nodeId": 1630705, + "weight": 1 + }, + { + "id": 4621, + "nodePlanId": 80515, + "nodeId": 1630805, + "weight": 1 + }, + { + "id": 4622, + "nodePlanId": 80515, + "nodeId": 6610105, + "weight": 3 + }, + { + "id": 4623, + "nodePlanId": 80515, + "nodeId": 6610105, + "weight": 2 + }, + { + "id": 4624, + "nodePlanId": 80516, + "nodeId": 5610105, + "weight": 1 + }, + { + "id": 4625, + "nodePlanId": 80516, + "nodeId": 5610105, + "weight": 1 + }, + { + "id": 4626, + "nodePlanId": 80516, + "nodeId": 1630105, + "weight": 1 + }, + { + "id": 4627, + "nodePlanId": 80516, + "nodeId": 1630205, + "weight": 1 + }, + { + "id": 4628, + "nodePlanId": 80517, + "nodeId": 2630105, + "weight": 1 + }, + { + "id": 4629, + "nodePlanId": 80517, + "nodeId": 2630205, + "weight": 1 + }, + { + "id": 4630, + "nodePlanId": 80517, + "nodeId": 2630305, + "weight": 1 + }, + { + "id": 4631, + "nodePlanId": 80517, + "nodeId": 2630405, + "weight": 1 + }, + { + "id": 4632, + "nodePlanId": 80517, + "nodeId": 2630505, + "weight": 1 + }, + { + "id": 4633, + "nodePlanId": 80517, + "nodeId": 2630605, + "weight": 1 + }, + { + "id": 4634, + "nodePlanId": 80518, + "nodeId": 5610105, + "weight": 1 + }, + { + "id": 4635, + "nodePlanId": 80518, + "nodeId": 6610105, + "weight": 1 + }, + { + "id": 4636, + "nodePlanId": 80519, + "nodeId": 4610105, + "weight": 1 + }, + { + "id": 4637, + "nodePlanId": 80520, + "nodeId": 7610105, + "weight": 1 + }, + { + "id": 4638, + "nodePlanId": 90101, + "nodeId": 1710101, + "weight": 1 + }, + { + "id": 4639, + "nodePlanId": 90101, + "nodeId": 1710201, + "weight": 1 + }, + { + "id": 4640, + "nodePlanId": 90101, + "nodeId": 1710301, + "weight": 1 + }, + { + "id": 4641, + "nodePlanId": 90101, + "nodeId": 1710401, + "weight": 1 + }, + { + "id": 4642, + "nodePlanId": 90101, + "nodeId": 1710501, + "weight": 1 + }, + { + "id": 4643, + "nodePlanId": 90101, + "nodeId": 1710601, + "weight": 1 + }, + { + "id": 4644, + "nodePlanId": 90101, + "nodeId": 1710701, + "weight": 1 + }, + { + "id": 4645, + "nodePlanId": 90101, + "nodeId": 1710801, + "weight": 1 + }, + { + "id": 4646, + "nodePlanId": 90102, + "nodeId": 1710101, + "weight": 1 + }, + { + "id": 4647, + "nodePlanId": 90102, + "nodeId": 1710201, + "weight": 1 + }, + { + "id": 4648, + "nodePlanId": 90102, + "nodeId": 1710301, + "weight": 1 + }, + { + "id": 4649, + "nodePlanId": 90102, + "nodeId": 1710401, + "weight": 1 + }, + { + "id": 4650, + "nodePlanId": 90102, + "nodeId": 1710501, + "weight": 1 + }, + { + "id": 4651, + "nodePlanId": 90102, + "nodeId": 1710601, + "weight": 1 + }, + { + "id": 4652, + "nodePlanId": 90102, + "nodeId": 1710701, + "weight": 1 + }, + { + "id": 4653, + "nodePlanId": 90102, + "nodeId": 1710801, + "weight": 1 + }, + { + "id": 4654, + "nodePlanId": 90103, + "nodeId": 1710101, + "weight": 1 + }, + { + "id": 4655, + "nodePlanId": 90103, + "nodeId": 1710201, + "weight": 1 + }, + { + "id": 4656, + "nodePlanId": 90103, + "nodeId": 1710301, + "weight": 1 + }, + { + "id": 4657, + "nodePlanId": 90103, + "nodeId": 1710401, + "weight": 1 + }, + { + "id": 4658, + "nodePlanId": 90103, + "nodeId": 1710501, + "weight": 1 + }, + { + "id": 4659, + "nodePlanId": 90103, + "nodeId": 1710601, + "weight": 1 + }, + { + "id": 4660, + "nodePlanId": 90103, + "nodeId": 1710701, + "weight": 1 + }, + { + "id": 4661, + "nodePlanId": 90103, + "nodeId": 1710801, + "weight": 1 + }, + { + "id": 4662, + "nodePlanId": 90103, + "nodeId": 2710101, + "weight": 4 + }, + { + "id": 4663, + "nodePlanId": 90103, + "nodeId": 2710201, + "weight": 4 + }, + { + "id": 4664, + "nodePlanId": 90103, + "nodeId": 6710101, + "weight": 8 + }, + { + "id": 4665, + "nodePlanId": 90104, + "nodeId": 2710301, + "weight": 1 + }, + { + "id": 4666, + "nodePlanId": 90104, + "nodeId": 2710401, + "weight": 1 + }, + { + "id": 4667, + "nodePlanId": 90104, + "nodeId": 2710501, + "weight": 1 + }, + { + "id": 4668, + "nodePlanId": 90104, + "nodeId": 2710601, + "weight": 1 + }, + { + "id": 4669, + "nodePlanId": 90105, + "nodeId": 5710101, + "weight": 1 + }, + { + "id": 4670, + "nodePlanId": 90106, + "nodeId": 1720101, + "weight": 1 + }, + { + "id": 4671, + "nodePlanId": 90106, + "nodeId": 1720201, + "weight": 1 + }, + { + "id": 4672, + "nodePlanId": 90106, + "nodeId": 1720301, + "weight": 1 + }, + { + "id": 4673, + "nodePlanId": 90106, + "nodeId": 1720401, + "weight": 1 + }, + { + "id": 4674, + "nodePlanId": 90106, + "nodeId": 1720501, + "weight": 1 + }, + { + "id": 4675, + "nodePlanId": 90106, + "nodeId": 1720601, + "weight": 1 + }, + { + "id": 4676, + "nodePlanId": 90106, + "nodeId": 1720701, + "weight": 1 + }, + { + "id": 4677, + "nodePlanId": 90106, + "nodeId": 1720801, + "weight": 1 + }, + { + "id": 4678, + "nodePlanId": 90106, + "nodeId": 2720101, + "weight": 2 + }, + { + "id": 4679, + "nodePlanId": 90106, + "nodeId": 2720201, + "weight": 2 + }, + { + "id": 4680, + "nodePlanId": 90106, + "nodeId": 2720301, + "weight": 1 + }, + { + "id": 4681, + "nodePlanId": 90106, + "nodeId": 2720401, + "weight": 1 + }, + { + "id": 4682, + "nodePlanId": 90106, + "nodeId": 2720501, + "weight": 1 + }, + { + "id": 4683, + "nodePlanId": 90106, + "nodeId": 2720601, + "weight": 1 + }, + { + "id": 4684, + "nodePlanId": 90106, + "nodeId": 4710101, + "weight": 3 + }, + { + "id": 4685, + "nodePlanId": 90106, + "nodeId": 6710101, + "weight": 3 + }, + { + "id": 4686, + "nodePlanId": 90107, + "nodeId": 1720101, + "weight": 1 + }, + { + "id": 4687, + "nodePlanId": 90107, + "nodeId": 1720201, + "weight": 1 + }, + { + "id": 4688, + "nodePlanId": 90107, + "nodeId": 1720301, + "weight": 1 + }, + { + "id": 4689, + "nodePlanId": 90107, + "nodeId": 1720401, + "weight": 1 + }, + { + "id": 4690, + "nodePlanId": 90107, + "nodeId": 1720501, + "weight": 1 + }, + { + "id": 4691, + "nodePlanId": 90107, + "nodeId": 1720601, + "weight": 1 + }, + { + "id": 4692, + "nodePlanId": 90107, + "nodeId": 1720701, + "weight": 1 + }, + { + "id": 4693, + "nodePlanId": 90107, + "nodeId": 1720801, + "weight": 1 + }, + { + "id": 4694, + "nodePlanId": 90107, + "nodeId": 2720101, + "weight": 1 + }, + { + "id": 4695, + "nodePlanId": 90107, + "nodeId": 2720201, + "weight": 1 + }, + { + "id": 4696, + "nodePlanId": 90107, + "nodeId": 2720301, + "weight": 2 + }, + { + "id": 4697, + "nodePlanId": 90107, + "nodeId": 2720401, + "weight": 2 + }, + { + "id": 4698, + "nodePlanId": 90107, + "nodeId": 2720501, + "weight": 1 + }, + { + "id": 4699, + "nodePlanId": 90107, + "nodeId": 2720601, + "weight": 1 + }, + { + "id": 4700, + "nodePlanId": 90107, + "nodeId": 5710101, + "weight": 3 + }, + { + "id": 4701, + "nodePlanId": 90108, + "nodeId": 1720101, + "weight": 1 + }, + { + "id": 4702, + "nodePlanId": 90108, + "nodeId": 1720201, + "weight": 1 + }, + { + "id": 4703, + "nodePlanId": 90108, + "nodeId": 1720301, + "weight": 1 + }, + { + "id": 4704, + "nodePlanId": 90108, + "nodeId": 1720401, + "weight": 1 + }, + { + "id": 4705, + "nodePlanId": 90108, + "nodeId": 1720501, + "weight": 1 + }, + { + "id": 4706, + "nodePlanId": 90108, + "nodeId": 1720601, + "weight": 1 + }, + { + "id": 4707, + "nodePlanId": 90108, + "nodeId": 1720701, + "weight": 1 + }, + { + "id": 4708, + "nodePlanId": 90108, + "nodeId": 1720801, + "weight": 1 + }, + { + "id": 4709, + "nodePlanId": 90108, + "nodeId": 2720101, + "weight": 1 + }, + { + "id": 4710, + "nodePlanId": 90108, + "nodeId": 2720201, + "weight": 1 + }, + { + "id": 4711, + "nodePlanId": 90108, + "nodeId": 2720301, + "weight": 1 + }, + { + "id": 4712, + "nodePlanId": 90108, + "nodeId": 2720401, + "weight": 1 + }, + { + "id": 4713, + "nodePlanId": 90108, + "nodeId": 2720501, + "weight": 2 + }, + { + "id": 4714, + "nodePlanId": 90108, + "nodeId": 2720601, + "weight": 2 + }, + { + "id": 4715, + "nodePlanId": 90108, + "nodeId": 5710101, + "weight": 3 + }, + { + "id": 4716, + "nodePlanId": 90108, + "nodeId": 6710101, + "weight": 3 + }, + { + "id": 4717, + "nodePlanId": 90109, + "nodeId": 3710101, + "weight": 1 + }, + { + "id": 4718, + "nodePlanId": 90110, + "nodeId": 1720101, + "weight": 1 + }, + { + "id": 4719, + "nodePlanId": 90110, + "nodeId": 1720201, + "weight": 1 + }, + { + "id": 4720, + "nodePlanId": 90110, + "nodeId": 1720301, + "weight": 1 + }, + { + "id": 4721, + "nodePlanId": 90110, + "nodeId": 1720401, + "weight": 1 + }, + { + "id": 4722, + "nodePlanId": 90110, + "nodeId": 1720501, + "weight": 1 + }, + { + "id": 4723, + "nodePlanId": 90110, + "nodeId": 1720601, + "weight": 1 + }, + { + "id": 4724, + "nodePlanId": 90110, + "nodeId": 1720701, + "weight": 1 + }, + { + "id": 4725, + "nodePlanId": 90110, + "nodeId": 1720801, + "weight": 1 + }, + { + "id": 4726, + "nodePlanId": 90110, + "nodeId": 2720101, + "weight": 1 + }, + { + "id": 4727, + "nodePlanId": 90110, + "nodeId": 2720201, + "weight": 1 + }, + { + "id": 4728, + "nodePlanId": 90110, + "nodeId": 2720301, + "weight": 1 + }, + { + "id": 4729, + "nodePlanId": 90110, + "nodeId": 2720401, + "weight": 1 + }, + { + "id": 4730, + "nodePlanId": 90110, + "nodeId": 2720501, + "weight": 2 + }, + { + "id": 4731, + "nodePlanId": 90110, + "nodeId": 2720601, + "weight": 2 + }, + { + "id": 4732, + "nodePlanId": 90110, + "nodeId": 5710101, + "weight": 3 + }, + { + "id": 4733, + "nodePlanId": 90110, + "nodeId": 6710101, + "weight": 3 + }, + { + "id": 4734, + "nodePlanId": 90111, + "nodeId": 1720101, + "weight": 1 + }, + { + "id": 4735, + "nodePlanId": 90111, + "nodeId": 1720201, + "weight": 1 + }, + { + "id": 4736, + "nodePlanId": 90111, + "nodeId": 1720301, + "weight": 1 + }, + { + "id": 4737, + "nodePlanId": 90111, + "nodeId": 1720401, + "weight": 1 + }, + { + "id": 4738, + "nodePlanId": 90111, + "nodeId": 1720501, + "weight": 1 + }, + { + "id": 4739, + "nodePlanId": 90111, + "nodeId": 1720601, + "weight": 1 + }, + { + "id": 4740, + "nodePlanId": 90111, + "nodeId": 1720701, + "weight": 1 + }, + { + "id": 4741, + "nodePlanId": 90111, + "nodeId": 1720801, + "weight": 1 + }, + { + "id": 4742, + "nodePlanId": 90111, + "nodeId": 2720101, + "weight": 1 + }, + { + "id": 4743, + "nodePlanId": 90111, + "nodeId": 2720201, + "weight": 1 + }, + { + "id": 4744, + "nodePlanId": 90111, + "nodeId": 2720301, + "weight": 1 + }, + { + "id": 4745, + "nodePlanId": 90111, + "nodeId": 2720401, + "weight": 1 + }, + { + "id": 4746, + "nodePlanId": 90111, + "nodeId": 2720501, + "weight": 2 + }, + { + "id": 4747, + "nodePlanId": 90111, + "nodeId": 2720601, + "weight": 2 + }, + { + "id": 4748, + "nodePlanId": 90111, + "nodeId": 4710101, + "weight": 2 + }, + { + "id": 4749, + "nodePlanId": 90111, + "nodeId": 6710101, + "weight": 2 + }, + { + "id": 4750, + "nodePlanId": 90111, + "nodeId": 6710101, + "weight": 2 + }, + { + "id": 4751, + "nodePlanId": 90112, + "nodeId": 1730101, + "weight": 1 + }, + { + "id": 4752, + "nodePlanId": 90112, + "nodeId": 1730201, + "weight": 1 + }, + { + "id": 4753, + "nodePlanId": 90112, + "nodeId": 1730301, + "weight": 1 + }, + { + "id": 4754, + "nodePlanId": 90112, + "nodeId": 1730401, + "weight": 1 + }, + { + "id": 4755, + "nodePlanId": 90112, + "nodeId": 1730501, + "weight": 1 + }, + { + "id": 4756, + "nodePlanId": 90112, + "nodeId": 2730101, + "weight": 1.5 + }, + { + "id": 4757, + "nodePlanId": 90112, + "nodeId": 2730201, + "weight": 1.5 + }, + { + "id": 4758, + "nodePlanId": 90112, + "nodeId": 2730301, + "weight": 1 + }, + { + "id": 4759, + "nodePlanId": 90112, + "nodeId": 2730401, + "weight": 1 + }, + { + "id": 4760, + "nodePlanId": 90112, + "nodeId": 2730501, + "weight": 1 + }, + { + "id": 4761, + "nodePlanId": 90112, + "nodeId": 2730601, + "weight": 1 + }, + { + "id": 4762, + "nodePlanId": 90113, + "nodeId": 1730601, + "weight": 1 + }, + { + "id": 4763, + "nodePlanId": 90113, + "nodeId": 1730701, + "weight": 1 + }, + { + "id": 4764, + "nodePlanId": 90113, + "nodeId": 1730801, + "weight": 1 + }, + { + "id": 4765, + "nodePlanId": 90113, + "nodeId": 2730101, + "weight": 1 + }, + { + "id": 4766, + "nodePlanId": 90113, + "nodeId": 2730201, + "weight": 1 + }, + { + "id": 4767, + "nodePlanId": 90113, + "nodeId": 2730301, + "weight": 2 + }, + { + "id": 4768, + "nodePlanId": 90113, + "nodeId": 2730401, + "weight": 2 + }, + { + "id": 4769, + "nodePlanId": 90113, + "nodeId": 2730501, + "weight": 1 + }, + { + "id": 4770, + "nodePlanId": 90113, + "nodeId": 2730601, + "weight": 1 + }, + { + "id": 4771, + "nodePlanId": 90113, + "nodeId": 5710101, + "weight": 3 + }, + { + "id": 4772, + "nodePlanId": 90113, + "nodeId": 6710101, + "weight": 2 + }, + { + "id": 4773, + "nodePlanId": 90114, + "nodeId": 4710101, + "weight": 1 + }, + { + "id": 4774, + "nodePlanId": 90115, + "nodeId": 7710101, + "weight": 1 + }, + { + "id": 4775, + "nodePlanId": 90201, + "nodeId": 1710102, + "weight": 1 + }, + { + "id": 4776, + "nodePlanId": 90201, + "nodeId": 1710202, + "weight": 1 + }, + { + "id": 4777, + "nodePlanId": 90201, + "nodeId": 1710302, + "weight": 1 + }, + { + "id": 4778, + "nodePlanId": 90201, + "nodeId": 1710402, + "weight": 1 + }, + { + "id": 4779, + "nodePlanId": 90201, + "nodeId": 1710502, + "weight": 1 + }, + { + "id": 4780, + "nodePlanId": 90201, + "nodeId": 1710602, + "weight": 1 + }, + { + "id": 4781, + "nodePlanId": 90201, + "nodeId": 1710702, + "weight": 1 + }, + { + "id": 4782, + "nodePlanId": 90201, + "nodeId": 1710802, + "weight": 1 + }, + { + "id": 4783, + "nodePlanId": 90202, + "nodeId": 1710102, + "weight": 1 + }, + { + "id": 4784, + "nodePlanId": 90202, + "nodeId": 1710202, + "weight": 1 + }, + { + "id": 4785, + "nodePlanId": 90202, + "nodeId": 1710302, + "weight": 1 + }, + { + "id": 4786, + "nodePlanId": 90202, + "nodeId": 1710402, + "weight": 1 + }, + { + "id": 4787, + "nodePlanId": 90202, + "nodeId": 1710502, + "weight": 1 + }, + { + "id": 4788, + "nodePlanId": 90202, + "nodeId": 1710602, + "weight": 1 + }, + { + "id": 4789, + "nodePlanId": 90202, + "nodeId": 1710702, + "weight": 1 + }, + { + "id": 4790, + "nodePlanId": 90202, + "nodeId": 1710802, + "weight": 1 + }, + { + "id": 4791, + "nodePlanId": 90203, + "nodeId": 1710102, + "weight": 1 + }, + { + "id": 4792, + "nodePlanId": 90203, + "nodeId": 1710202, + "weight": 1 + }, + { + "id": 4793, + "nodePlanId": 90203, + "nodeId": 1710302, + "weight": 1 + }, + { + "id": 4794, + "nodePlanId": 90203, + "nodeId": 1710402, + "weight": 1 + }, + { + "id": 4795, + "nodePlanId": 90203, + "nodeId": 1710502, + "weight": 1 + }, + { + "id": 4796, + "nodePlanId": 90203, + "nodeId": 1710602, + "weight": 1 + }, + { + "id": 4797, + "nodePlanId": 90203, + "nodeId": 1710702, + "weight": 1 + }, + { + "id": 4798, + "nodePlanId": 90203, + "nodeId": 1710802, + "weight": 1 + }, + { + "id": 4799, + "nodePlanId": 90203, + "nodeId": 2710102, + "weight": 4 + }, + { + "id": 4800, + "nodePlanId": 90203, + "nodeId": 2710202, + "weight": 4 + }, + { + "id": 4801, + "nodePlanId": 90203, + "nodeId": 6710102, + "weight": 8 + }, + { + "id": 4802, + "nodePlanId": 90204, + "nodeId": 2710302, + "weight": 1 + }, + { + "id": 4803, + "nodePlanId": 90204, + "nodeId": 2710402, + "weight": 1 + }, + { + "id": 4804, + "nodePlanId": 90204, + "nodeId": 2710502, + "weight": 1 + }, + { + "id": 4805, + "nodePlanId": 90204, + "nodeId": 2710602, + "weight": 1 + }, + { + "id": 4806, + "nodePlanId": 90205, + "nodeId": 5710102, + "weight": 1 + }, + { + "id": 4807, + "nodePlanId": 90206, + "nodeId": 1720102, + "weight": 1 + }, + { + "id": 4808, + "nodePlanId": 90206, + "nodeId": 1720202, + "weight": 1 + }, + { + "id": 4809, + "nodePlanId": 90206, + "nodeId": 1720302, + "weight": 1 + }, + { + "id": 4810, + "nodePlanId": 90206, + "nodeId": 1720402, + "weight": 1 + }, + { + "id": 4811, + "nodePlanId": 90206, + "nodeId": 1720502, + "weight": 1 + }, + { + "id": 4812, + "nodePlanId": 90206, + "nodeId": 1720602, + "weight": 1 + }, + { + "id": 4813, + "nodePlanId": 90206, + "nodeId": 1720702, + "weight": 1 + }, + { + "id": 4814, + "nodePlanId": 90206, + "nodeId": 1720802, + "weight": 1 + }, + { + "id": 4815, + "nodePlanId": 90206, + "nodeId": 2720102, + "weight": 2 + }, + { + "id": 4816, + "nodePlanId": 90206, + "nodeId": 2720202, + "weight": 2 + }, + { + "id": 4817, + "nodePlanId": 90206, + "nodeId": 2720302, + "weight": 1 + }, + { + "id": 4818, + "nodePlanId": 90206, + "nodeId": 2720402, + "weight": 1 + }, + { + "id": 4819, + "nodePlanId": 90206, + "nodeId": 2720502, + "weight": 1 + }, + { + "id": 4820, + "nodePlanId": 90206, + "nodeId": 2720602, + "weight": 1 + }, + { + "id": 4821, + "nodePlanId": 90206, + "nodeId": 4710102, + "weight": 3 + }, + { + "id": 4822, + "nodePlanId": 90206, + "nodeId": 6710102, + "weight": 3 + }, + { + "id": 4823, + "nodePlanId": 90207, + "nodeId": 1720102, + "weight": 1 + }, + { + "id": 4824, + "nodePlanId": 90207, + "nodeId": 1720202, + "weight": 1 + }, + { + "id": 4825, + "nodePlanId": 90207, + "nodeId": 1720302, + "weight": 1 + }, + { + "id": 4826, + "nodePlanId": 90207, + "nodeId": 1720402, + "weight": 1 + }, + { + "id": 4827, + "nodePlanId": 90207, + "nodeId": 1720502, + "weight": 1 + }, + { + "id": 4828, + "nodePlanId": 90207, + "nodeId": 1720602, + "weight": 1 + }, + { + "id": 4829, + "nodePlanId": 90207, + "nodeId": 1720702, + "weight": 1 + }, + { + "id": 4830, + "nodePlanId": 90207, + "nodeId": 1720802, + "weight": 1 + }, + { + "id": 4831, + "nodePlanId": 90207, + "nodeId": 2720102, + "weight": 1 + }, + { + "id": 4832, + "nodePlanId": 90207, + "nodeId": 2720202, + "weight": 1 + }, + { + "id": 4833, + "nodePlanId": 90207, + "nodeId": 2720302, + "weight": 2 + }, + { + "id": 4834, + "nodePlanId": 90207, + "nodeId": 2720402, + "weight": 2 + }, + { + "id": 4835, + "nodePlanId": 90207, + "nodeId": 2720502, + "weight": 1 + }, + { + "id": 4836, + "nodePlanId": 90207, + "nodeId": 2720602, + "weight": 1 + }, + { + "id": 4837, + "nodePlanId": 90207, + "nodeId": 5710102, + "weight": 3 + }, + { + "id": 4838, + "nodePlanId": 90208, + "nodeId": 1720102, + "weight": 1 + }, + { + "id": 4839, + "nodePlanId": 90208, + "nodeId": 1720202, + "weight": 1 + }, + { + "id": 4840, + "nodePlanId": 90208, + "nodeId": 1720302, + "weight": 1 + }, + { + "id": 4841, + "nodePlanId": 90208, + "nodeId": 1720402, + "weight": 1 + }, + { + "id": 4842, + "nodePlanId": 90208, + "nodeId": 1720502, + "weight": 1 + }, + { + "id": 4843, + "nodePlanId": 90208, + "nodeId": 1720602, + "weight": 1 + }, + { + "id": 4844, + "nodePlanId": 90208, + "nodeId": 1720702, + "weight": 1 + }, + { + "id": 4845, + "nodePlanId": 90208, + "nodeId": 1720802, + "weight": 1 + }, + { + "id": 4846, + "nodePlanId": 90208, + "nodeId": 2720102, + "weight": 1 + }, + { + "id": 4847, + "nodePlanId": 90208, + "nodeId": 2720202, + "weight": 1 + }, + { + "id": 4848, + "nodePlanId": 90208, + "nodeId": 2720302, + "weight": 1 + }, + { + "id": 4849, + "nodePlanId": 90208, + "nodeId": 2720402, + "weight": 1 + }, + { + "id": 4850, + "nodePlanId": 90208, + "nodeId": 2720502, + "weight": 2 + }, + { + "id": 4851, + "nodePlanId": 90208, + "nodeId": 2720602, + "weight": 2 + }, + { + "id": 4852, + "nodePlanId": 90208, + "nodeId": 5710102, + "weight": 3 + }, + { + "id": 4853, + "nodePlanId": 90208, + "nodeId": 6710102, + "weight": 3 + }, + { + "id": 4854, + "nodePlanId": 90209, + "nodeId": 3710102, + "weight": 1 + }, + { + "id": 4855, + "nodePlanId": 90210, + "nodeId": 1720102, + "weight": 1 + }, + { + "id": 4856, + "nodePlanId": 90210, + "nodeId": 1720202, + "weight": 1 + }, + { + "id": 4857, + "nodePlanId": 90210, + "nodeId": 1720302, + "weight": 1 + }, + { + "id": 4858, + "nodePlanId": 90210, + "nodeId": 1720402, + "weight": 1 + }, + { + "id": 4859, + "nodePlanId": 90210, + "nodeId": 1720502, + "weight": 1 + }, + { + "id": 4860, + "nodePlanId": 90210, + "nodeId": 1720602, + "weight": 1 + }, + { + "id": 4861, + "nodePlanId": 90210, + "nodeId": 1720702, + "weight": 1 + }, + { + "id": 4862, + "nodePlanId": 90210, + "nodeId": 1720802, + "weight": 1 + }, + { + "id": 4863, + "nodePlanId": 90210, + "nodeId": 2720102, + "weight": 1 + }, + { + "id": 4864, + "nodePlanId": 90210, + "nodeId": 2720202, + "weight": 1 + }, + { + "id": 4865, + "nodePlanId": 90210, + "nodeId": 2720302, + "weight": 1 + }, + { + "id": 4866, + "nodePlanId": 90210, + "nodeId": 2720402, + "weight": 1 + }, + { + "id": 4867, + "nodePlanId": 90210, + "nodeId": 2720502, + "weight": 2 + }, + { + "id": 4868, + "nodePlanId": 90210, + "nodeId": 2720602, + "weight": 2 + }, + { + "id": 4869, + "nodePlanId": 90210, + "nodeId": 5710102, + "weight": 3 + }, + { + "id": 4870, + "nodePlanId": 90210, + "nodeId": 6710102, + "weight": 3 + }, + { + "id": 4871, + "nodePlanId": 90211, + "nodeId": 1720102, + "weight": 1 + }, + { + "id": 4872, + "nodePlanId": 90211, + "nodeId": 1720202, + "weight": 1 + }, + { + "id": 4873, + "nodePlanId": 90211, + "nodeId": 1720302, + "weight": 1 + }, + { + "id": 4874, + "nodePlanId": 90211, + "nodeId": 1720402, + "weight": 1 + }, + { + "id": 4875, + "nodePlanId": 90211, + "nodeId": 1720502, + "weight": 1 + }, + { + "id": 4876, + "nodePlanId": 90211, + "nodeId": 1720602, + "weight": 1 + }, + { + "id": 4877, + "nodePlanId": 90211, + "nodeId": 1720702, + "weight": 1 + }, + { + "id": 4878, + "nodePlanId": 90211, + "nodeId": 1720802, + "weight": 1 + }, + { + "id": 4879, + "nodePlanId": 90211, + "nodeId": 2720102, + "weight": 1 + }, + { + "id": 4880, + "nodePlanId": 90211, + "nodeId": 2720202, + "weight": 1 + }, + { + "id": 4881, + "nodePlanId": 90211, + "nodeId": 2720302, + "weight": 1 + }, + { + "id": 4882, + "nodePlanId": 90211, + "nodeId": 2720402, + "weight": 1 + }, + { + "id": 4883, + "nodePlanId": 90211, + "nodeId": 2720502, + "weight": 2 + }, + { + "id": 4884, + "nodePlanId": 90211, + "nodeId": 2720602, + "weight": 2 + }, + { + "id": 4885, + "nodePlanId": 90211, + "nodeId": 4710102, + "weight": 2 + }, + { + "id": 4886, + "nodePlanId": 90211, + "nodeId": 6710102, + "weight": 2 + }, + { + "id": 4887, + "nodePlanId": 90211, + "nodeId": 6710102, + "weight": 2 + }, + { + "id": 4888, + "nodePlanId": 90212, + "nodeId": 1730102, + "weight": 1 + }, + { + "id": 4889, + "nodePlanId": 90212, + "nodeId": 1730202, + "weight": 1 + }, + { + "id": 4890, + "nodePlanId": 90212, + "nodeId": 1730302, + "weight": 1 + }, + { + "id": 4891, + "nodePlanId": 90212, + "nodeId": 1730402, + "weight": 1 + }, + { + "id": 4892, + "nodePlanId": 90212, + "nodeId": 1730502, + "weight": 1 + }, + { + "id": 4893, + "nodePlanId": 90212, + "nodeId": 2730102, + "weight": 1.5 + }, + { + "id": 4894, + "nodePlanId": 90212, + "nodeId": 2730202, + "weight": 1.5 + }, + { + "id": 4895, + "nodePlanId": 90212, + "nodeId": 2730302, + "weight": 1 + }, + { + "id": 4896, + "nodePlanId": 90212, + "nodeId": 2730402, + "weight": 1 + }, + { + "id": 4897, + "nodePlanId": 90212, + "nodeId": 2730502, + "weight": 1 + }, + { + "id": 4898, + "nodePlanId": 90212, + "nodeId": 2730602, + "weight": 1 + }, + { + "id": 4899, + "nodePlanId": 90213, + "nodeId": 1730602, + "weight": 1 + }, + { + "id": 4900, + "nodePlanId": 90213, + "nodeId": 1730702, + "weight": 1 + }, + { + "id": 4901, + "nodePlanId": 90213, + "nodeId": 1730802, + "weight": 1 + }, + { + "id": 4902, + "nodePlanId": 90213, + "nodeId": 2730102, + "weight": 1 + }, + { + "id": 4903, + "nodePlanId": 90213, + "nodeId": 2730202, + "weight": 1 + }, + { + "id": 4904, + "nodePlanId": 90213, + "nodeId": 2730302, + "weight": 2 + }, + { + "id": 4905, + "nodePlanId": 90213, + "nodeId": 2730402, + "weight": 2 + }, + { + "id": 4906, + "nodePlanId": 90213, + "nodeId": 2730502, + "weight": 1 + }, + { + "id": 4907, + "nodePlanId": 90213, + "nodeId": 2730602, + "weight": 1 + }, + { + "id": 4908, + "nodePlanId": 90213, + "nodeId": 5710102, + "weight": 3 + }, + { + "id": 4909, + "nodePlanId": 90213, + "nodeId": 6710102, + "weight": 2 + }, + { + "id": 4910, + "nodePlanId": 90214, + "nodeId": 4710102, + "weight": 1 + }, + { + "id": 4911, + "nodePlanId": 90215, + "nodeId": 7710102, + "weight": 1 + }, + { + "id": 4912, + "nodePlanId": 90301, + "nodeId": 1710103, + "weight": 1 + }, + { + "id": 4913, + "nodePlanId": 90301, + "nodeId": 1710203, + "weight": 1 + }, + { + "id": 4914, + "nodePlanId": 90301, + "nodeId": 1710303, + "weight": 1 + }, + { + "id": 4915, + "nodePlanId": 90301, + "nodeId": 1710403, + "weight": 1 + }, + { + "id": 4916, + "nodePlanId": 90301, + "nodeId": 1710503, + "weight": 1 + }, + { + "id": 4917, + "nodePlanId": 90301, + "nodeId": 1710603, + "weight": 1 + }, + { + "id": 4918, + "nodePlanId": 90301, + "nodeId": 1710703, + "weight": 1 + }, + { + "id": 4919, + "nodePlanId": 90301, + "nodeId": 1710803, + "weight": 1 + }, + { + "id": 4920, + "nodePlanId": 90302, + "nodeId": 1710103, + "weight": 1 + }, + { + "id": 4921, + "nodePlanId": 90302, + "nodeId": 1710203, + "weight": 1 + }, + { + "id": 4922, + "nodePlanId": 90302, + "nodeId": 1710303, + "weight": 1 + }, + { + "id": 4923, + "nodePlanId": 90302, + "nodeId": 1710403, + "weight": 1 + }, + { + "id": 4924, + "nodePlanId": 90302, + "nodeId": 1710503, + "weight": 1 + }, + { + "id": 4925, + "nodePlanId": 90302, + "nodeId": 1710603, + "weight": 1 + }, + { + "id": 4926, + "nodePlanId": 90302, + "nodeId": 1710703, + "weight": 1 + }, + { + "id": 4927, + "nodePlanId": 90302, + "nodeId": 1710803, + "weight": 1 + }, + { + "id": 4928, + "nodePlanId": 90303, + "nodeId": 1710103, + "weight": 1 + }, + { + "id": 4929, + "nodePlanId": 90303, + "nodeId": 1710203, + "weight": 1 + }, + { + "id": 4930, + "nodePlanId": 90303, + "nodeId": 1710303, + "weight": 1 + }, + { + "id": 4931, + "nodePlanId": 90303, + "nodeId": 1710403, + "weight": 1 + }, + { + "id": 4932, + "nodePlanId": 90303, + "nodeId": 1710503, + "weight": 1 + }, + { + "id": 4933, + "nodePlanId": 90303, + "nodeId": 1710603, + "weight": 1 + }, + { + "id": 4934, + "nodePlanId": 90303, + "nodeId": 1710703, + "weight": 1 + }, + { + "id": 4935, + "nodePlanId": 90303, + "nodeId": 1710803, + "weight": 1 + }, + { + "id": 4936, + "nodePlanId": 90303, + "nodeId": 2710103, + "weight": 4 + }, + { + "id": 4937, + "nodePlanId": 90303, + "nodeId": 2710203, + "weight": 4 + }, + { + "id": 4938, + "nodePlanId": 90303, + "nodeId": 6710103, + "weight": 8 + }, + { + "id": 4939, + "nodePlanId": 90304, + "nodeId": 2710303, + "weight": 1 + }, + { + "id": 4940, + "nodePlanId": 90304, + "nodeId": 2710403, + "weight": 1 + }, + { + "id": 4941, + "nodePlanId": 90304, + "nodeId": 2710503, + "weight": 1 + }, + { + "id": 4942, + "nodePlanId": 90304, + "nodeId": 2710603, + "weight": 1 + }, + { + "id": 4943, + "nodePlanId": 90305, + "nodeId": 5710103, + "weight": 1 + }, + { + "id": 4944, + "nodePlanId": 90306, + "nodeId": 1720103, + "weight": 1 + }, + { + "id": 4945, + "nodePlanId": 90306, + "nodeId": 1720203, + "weight": 1 + }, + { + "id": 4946, + "nodePlanId": 90306, + "nodeId": 1720303, + "weight": 1 + }, + { + "id": 4947, + "nodePlanId": 90306, + "nodeId": 1720403, + "weight": 1 + }, + { + "id": 4948, + "nodePlanId": 90306, + "nodeId": 1720503, + "weight": 1 + }, + { + "id": 4949, + "nodePlanId": 90306, + "nodeId": 1720603, + "weight": 1 + }, + { + "id": 4950, + "nodePlanId": 90306, + "nodeId": 1720703, + "weight": 1 + }, + { + "id": 4951, + "nodePlanId": 90306, + "nodeId": 1720803, + "weight": 1 + }, + { + "id": 4952, + "nodePlanId": 90306, + "nodeId": 2720103, + "weight": 2 + }, + { + "id": 4953, + "nodePlanId": 90306, + "nodeId": 2720203, + "weight": 2 + }, + { + "id": 4954, + "nodePlanId": 90306, + "nodeId": 2720303, + "weight": 1 + }, + { + "id": 4955, + "nodePlanId": 90306, + "nodeId": 2720403, + "weight": 1 + }, + { + "id": 4956, + "nodePlanId": 90306, + "nodeId": 2720503, + "weight": 1 + }, + { + "id": 4957, + "nodePlanId": 90306, + "nodeId": 2720603, + "weight": 1 + }, + { + "id": 4958, + "nodePlanId": 90306, + "nodeId": 4710103, + "weight": 3 + }, + { + "id": 4959, + "nodePlanId": 90306, + "nodeId": 6710103, + "weight": 3 + }, + { + "id": 4960, + "nodePlanId": 90307, + "nodeId": 1720103, + "weight": 1 + }, + { + "id": 4961, + "nodePlanId": 90307, + "nodeId": 1720203, + "weight": 1 + }, + { + "id": 4962, + "nodePlanId": 90307, + "nodeId": 1720303, + "weight": 1 + }, + { + "id": 4963, + "nodePlanId": 90307, + "nodeId": 1720403, + "weight": 1 + }, + { + "id": 4964, + "nodePlanId": 90307, + "nodeId": 1720503, + "weight": 1 + }, + { + "id": 4965, + "nodePlanId": 90307, + "nodeId": 1720603, + "weight": 1 + }, + { + "id": 4966, + "nodePlanId": 90307, + "nodeId": 1720703, + "weight": 1 + }, + { + "id": 4967, + "nodePlanId": 90307, + "nodeId": 1720803, + "weight": 1 + }, + { + "id": 4968, + "nodePlanId": 90307, + "nodeId": 2720103, + "weight": 1 + }, + { + "id": 4969, + "nodePlanId": 90307, + "nodeId": 2720203, + "weight": 1 + }, + { + "id": 4970, + "nodePlanId": 90307, + "nodeId": 2720303, + "weight": 2 + }, + { + "id": 4971, + "nodePlanId": 90307, + "nodeId": 2720403, + "weight": 2 + }, + { + "id": 4972, + "nodePlanId": 90307, + "nodeId": 2720503, + "weight": 1 + }, + { + "id": 4973, + "nodePlanId": 90307, + "nodeId": 2720603, + "weight": 1 + }, + { + "id": 4974, + "nodePlanId": 90307, + "nodeId": 5710103, + "weight": 3 + }, + { + "id": 4975, + "nodePlanId": 90308, + "nodeId": 1720103, + "weight": 1 + }, + { + "id": 4976, + "nodePlanId": 90308, + "nodeId": 1720203, + "weight": 1 + }, + { + "id": 4977, + "nodePlanId": 90308, + "nodeId": 1720303, + "weight": 1 + }, + { + "id": 4978, + "nodePlanId": 90308, + "nodeId": 1720403, + "weight": 1 + }, + { + "id": 4979, + "nodePlanId": 90308, + "nodeId": 1720503, + "weight": 1 + }, + { + "id": 4980, + "nodePlanId": 90308, + "nodeId": 1720603, + "weight": 1 + }, + { + "id": 4981, + "nodePlanId": 90308, + "nodeId": 1720703, + "weight": 1 + }, + { + "id": 4982, + "nodePlanId": 90308, + "nodeId": 1720803, + "weight": 1 + }, + { + "id": 4983, + "nodePlanId": 90308, + "nodeId": 2720103, + "weight": 1 + }, + { + "id": 4984, + "nodePlanId": 90308, + "nodeId": 2720203, + "weight": 1 + }, + { + "id": 4985, + "nodePlanId": 90308, + "nodeId": 2720303, + "weight": 1 + }, + { + "id": 4986, + "nodePlanId": 90308, + "nodeId": 2720403, + "weight": 1 + }, + { + "id": 4987, + "nodePlanId": 90308, + "nodeId": 2720503, + "weight": 2 + }, + { + "id": 4988, + "nodePlanId": 90308, + "nodeId": 2720603, + "weight": 2 + }, + { + "id": 4989, + "nodePlanId": 90308, + "nodeId": 5710103, + "weight": 3 + }, + { + "id": 4990, + "nodePlanId": 90308, + "nodeId": 6710103, + "weight": 3 + }, + { + "id": 4991, + "nodePlanId": 90309, + "nodeId": 3710103, + "weight": 1 + }, + { + "id": 4992, + "nodePlanId": 90310, + "nodeId": 1720103, + "weight": 1 + }, + { + "id": 4993, + "nodePlanId": 90310, + "nodeId": 1720203, + "weight": 1 + }, + { + "id": 4994, + "nodePlanId": 90310, + "nodeId": 1720303, + "weight": 1 + }, + { + "id": 4995, + "nodePlanId": 90310, + "nodeId": 1720403, + "weight": 1 + }, + { + "id": 4996, + "nodePlanId": 90310, + "nodeId": 1720503, + "weight": 1 + }, + { + "id": 4997, + "nodePlanId": 90310, + "nodeId": 1720603, + "weight": 1 + }, + { + "id": 4998, + "nodePlanId": 90310, + "nodeId": 1720703, + "weight": 1 + }, + { + "id": 4999, + "nodePlanId": 90310, + "nodeId": 1720803, + "weight": 1 + }, + { + "id": 5000, + "nodePlanId": 90310, + "nodeId": 2720103, + "weight": 1 + }, + { + "id": 5001, + "nodePlanId": 90310, + "nodeId": 2720203, + "weight": 1 + }, + { + "id": 5002, + "nodePlanId": 90310, + "nodeId": 2720303, + "weight": 1 + }, + { + "id": 5003, + "nodePlanId": 90310, + "nodeId": 2720403, + "weight": 1 + }, + { + "id": 5004, + "nodePlanId": 90310, + "nodeId": 2720503, + "weight": 2 + }, + { + "id": 5005, + "nodePlanId": 90310, + "nodeId": 2720603, + "weight": 2 + }, + { + "id": 5006, + "nodePlanId": 90310, + "nodeId": 5710103, + "weight": 3 + }, + { + "id": 5007, + "nodePlanId": 90310, + "nodeId": 6710103, + "weight": 3 + }, + { + "id": 5008, + "nodePlanId": 90311, + "nodeId": 1720103, + "weight": 1 + }, + { + "id": 5009, + "nodePlanId": 90311, + "nodeId": 1720203, + "weight": 1 + }, + { + "id": 5010, + "nodePlanId": 90311, + "nodeId": 1720303, + "weight": 1 + }, + { + "id": 5011, + "nodePlanId": 90311, + "nodeId": 1720403, + "weight": 1 + }, + { + "id": 5012, + "nodePlanId": 90311, + "nodeId": 1720503, + "weight": 1 + }, + { + "id": 5013, + "nodePlanId": 90311, + "nodeId": 1720603, + "weight": 1 + }, + { + "id": 5014, + "nodePlanId": 90311, + "nodeId": 1720703, + "weight": 1 + }, + { + "id": 5015, + "nodePlanId": 90311, + "nodeId": 1720803, + "weight": 1 + }, + { + "id": 5016, + "nodePlanId": 90311, + "nodeId": 2720103, + "weight": 1 + }, + { + "id": 5017, + "nodePlanId": 90311, + "nodeId": 2720203, + "weight": 1 + }, + { + "id": 5018, + "nodePlanId": 90311, + "nodeId": 2720303, + "weight": 1 + }, + { + "id": 5019, + "nodePlanId": 90311, + "nodeId": 2720403, + "weight": 1 + }, + { + "id": 5020, + "nodePlanId": 90311, + "nodeId": 2720503, + "weight": 2 + }, + { + "id": 5021, + "nodePlanId": 90311, + "nodeId": 2720603, + "weight": 2 + }, + { + "id": 5022, + "nodePlanId": 90311, + "nodeId": 4710103, + "weight": 2 + }, + { + "id": 5023, + "nodePlanId": 90311, + "nodeId": 6710103, + "weight": 2 + }, + { + "id": 5024, + "nodePlanId": 90311, + "nodeId": 6710103, + "weight": 2 + }, + { + "id": 5025, + "nodePlanId": 90312, + "nodeId": 1730103, + "weight": 1 + }, + { + "id": 5026, + "nodePlanId": 90312, + "nodeId": 1730203, + "weight": 1 + }, + { + "id": 5027, + "nodePlanId": 90312, + "nodeId": 1730303, + "weight": 1 + }, + { + "id": 5028, + "nodePlanId": 90312, + "nodeId": 1730403, + "weight": 1 + }, + { + "id": 5029, + "nodePlanId": 90312, + "nodeId": 1730503, + "weight": 1 + }, + { + "id": 5030, + "nodePlanId": 90312, + "nodeId": 2730103, + "weight": 1.5 + }, + { + "id": 5031, + "nodePlanId": 90312, + "nodeId": 2730203, + "weight": 1.5 + }, + { + "id": 5032, + "nodePlanId": 90312, + "nodeId": 2730303, + "weight": 1 + }, + { + "id": 5033, + "nodePlanId": 90312, + "nodeId": 2730403, + "weight": 1 + }, + { + "id": 5034, + "nodePlanId": 90312, + "nodeId": 2730503, + "weight": 1 + }, + { + "id": 5035, + "nodePlanId": 90312, + "nodeId": 2730603, + "weight": 1 + }, + { + "id": 5036, + "nodePlanId": 90313, + "nodeId": 1730603, + "weight": 1 + }, + { + "id": 5037, + "nodePlanId": 90313, + "nodeId": 1730703, + "weight": 1 + }, + { + "id": 5038, + "nodePlanId": 90313, + "nodeId": 1730803, + "weight": 1 + }, + { + "id": 5039, + "nodePlanId": 90313, + "nodeId": 2730103, + "weight": 1 + }, + { + "id": 5040, + "nodePlanId": 90313, + "nodeId": 2730203, + "weight": 1 + }, + { + "id": 5041, + "nodePlanId": 90313, + "nodeId": 2730303, + "weight": 2 + }, + { + "id": 5042, + "nodePlanId": 90313, + "nodeId": 2730403, + "weight": 2 + }, + { + "id": 5043, + "nodePlanId": 90313, + "nodeId": 2730503, + "weight": 1 + }, + { + "id": 5044, + "nodePlanId": 90313, + "nodeId": 2730603, + "weight": 1 + }, + { + "id": 5045, + "nodePlanId": 90313, + "nodeId": 5710103, + "weight": 3 + }, + { + "id": 5046, + "nodePlanId": 90313, + "nodeId": 6710103, + "weight": 2 + }, + { + "id": 5047, + "nodePlanId": 90314, + "nodeId": 4710103, + "weight": 1 + }, + { + "id": 5048, + "nodePlanId": 90315, + "nodeId": 7710103, + "weight": 1 + }, + { + "id": 5049, + "nodePlanId": 90401, + "nodeId": 1710104, + "weight": 1 + }, + { + "id": 5050, + "nodePlanId": 90401, + "nodeId": 1710204, + "weight": 1 + }, + { + "id": 5051, + "nodePlanId": 90401, + "nodeId": 1710304, + "weight": 1 + }, + { + "id": 5052, + "nodePlanId": 90401, + "nodeId": 1710404, + "weight": 1 + }, + { + "id": 5053, + "nodePlanId": 90401, + "nodeId": 1710504, + "weight": 1 + }, + { + "id": 5054, + "nodePlanId": 90401, + "nodeId": 1710604, + "weight": 1 + }, + { + "id": 5055, + "nodePlanId": 90401, + "nodeId": 1710704, + "weight": 1 + }, + { + "id": 5056, + "nodePlanId": 90401, + "nodeId": 1710804, + "weight": 1 + }, + { + "id": 5057, + "nodePlanId": 90402, + "nodeId": 1710104, + "weight": 1 + }, + { + "id": 5058, + "nodePlanId": 90402, + "nodeId": 1710204, + "weight": 1 + }, + { + "id": 5059, + "nodePlanId": 90402, + "nodeId": 1710304, + "weight": 1 + }, + { + "id": 5060, + "nodePlanId": 90402, + "nodeId": 1710404, + "weight": 1 + }, + { + "id": 5061, + "nodePlanId": 90402, + "nodeId": 1710504, + "weight": 1 + }, + { + "id": 5062, + "nodePlanId": 90402, + "nodeId": 1710604, + "weight": 1 + }, + { + "id": 5063, + "nodePlanId": 90402, + "nodeId": 1710704, + "weight": 1 + }, + { + "id": 5064, + "nodePlanId": 90402, + "nodeId": 1710804, + "weight": 1 + }, + { + "id": 5065, + "nodePlanId": 90403, + "nodeId": 1710104, + "weight": 1 + }, + { + "id": 5066, + "nodePlanId": 90403, + "nodeId": 1710204, + "weight": 1 + }, + { + "id": 5067, + "nodePlanId": 90403, + "nodeId": 1710304, + "weight": 1 + }, + { + "id": 5068, + "nodePlanId": 90403, + "nodeId": 1710404, + "weight": 1 + }, + { + "id": 5069, + "nodePlanId": 90403, + "nodeId": 1710504, + "weight": 1 + }, + { + "id": 5070, + "nodePlanId": 90403, + "nodeId": 1710604, + "weight": 1 + }, + { + "id": 5071, + "nodePlanId": 90403, + "nodeId": 1710704, + "weight": 1 + }, + { + "id": 5072, + "nodePlanId": 90403, + "nodeId": 1710804, + "weight": 1 + }, + { + "id": 5073, + "nodePlanId": 90403, + "nodeId": 2710104, + "weight": 4 + }, + { + "id": 5074, + "nodePlanId": 90403, + "nodeId": 2710204, + "weight": 4 + }, + { + "id": 5075, + "nodePlanId": 90403, + "nodeId": 6710104, + "weight": 8 + }, + { + "id": 5076, + "nodePlanId": 90404, + "nodeId": 2710304, + "weight": 1 + }, + { + "id": 5077, + "nodePlanId": 90404, + "nodeId": 2710404, + "weight": 1 + }, + { + "id": 5078, + "nodePlanId": 90404, + "nodeId": 2710504, + "weight": 1 + }, + { + "id": 5079, + "nodePlanId": 90404, + "nodeId": 2710604, + "weight": 1 + }, + { + "id": 5080, + "nodePlanId": 90405, + "nodeId": 5710104, + "weight": 1 + }, + { + "id": 5081, + "nodePlanId": 90406, + "nodeId": 1720104, + "weight": 1 + }, + { + "id": 5082, + "nodePlanId": 90406, + "nodeId": 1720204, + "weight": 1 + }, + { + "id": 5083, + "nodePlanId": 90406, + "nodeId": 1720304, + "weight": 1 + }, + { + "id": 5084, + "nodePlanId": 90406, + "nodeId": 1720404, + "weight": 1 + }, + { + "id": 5085, + "nodePlanId": 90406, + "nodeId": 1720504, + "weight": 1 + }, + { + "id": 5086, + "nodePlanId": 90406, + "nodeId": 1720604, + "weight": 1 + }, + { + "id": 5087, + "nodePlanId": 90406, + "nodeId": 1720704, + "weight": 1 + }, + { + "id": 5088, + "nodePlanId": 90406, + "nodeId": 1720804, + "weight": 1 + }, + { + "id": 5089, + "nodePlanId": 90406, + "nodeId": 2720104, + "weight": 2 + }, + { + "id": 5090, + "nodePlanId": 90406, + "nodeId": 2720204, + "weight": 2 + }, + { + "id": 5091, + "nodePlanId": 90406, + "nodeId": 2720304, + "weight": 1 + }, + { + "id": 5092, + "nodePlanId": 90406, + "nodeId": 2720404, + "weight": 1 + }, + { + "id": 5093, + "nodePlanId": 90406, + "nodeId": 2720504, + "weight": 1 + }, + { + "id": 5094, + "nodePlanId": 90406, + "nodeId": 2720604, + "weight": 1 + }, + { + "id": 5095, + "nodePlanId": 90406, + "nodeId": 4710104, + "weight": 3 + }, + { + "id": 5096, + "nodePlanId": 90406, + "nodeId": 6710104, + "weight": 3 + }, + { + "id": 5097, + "nodePlanId": 90407, + "nodeId": 1720104, + "weight": 1 + }, + { + "id": 5098, + "nodePlanId": 90407, + "nodeId": 1720204, + "weight": 1 + }, + { + "id": 5099, + "nodePlanId": 90407, + "nodeId": 1720304, + "weight": 1 + }, + { + "id": 5100, + "nodePlanId": 90407, + "nodeId": 1720404, + "weight": 1 + }, + { + "id": 5101, + "nodePlanId": 90407, + "nodeId": 1720504, + "weight": 1 + }, + { + "id": 5102, + "nodePlanId": 90407, + "nodeId": 1720604, + "weight": 1 + }, + { + "id": 5103, + "nodePlanId": 90407, + "nodeId": 1720704, + "weight": 1 + }, + { + "id": 5104, + "nodePlanId": 90407, + "nodeId": 1720804, + "weight": 1 + }, + { + "id": 5105, + "nodePlanId": 90407, + "nodeId": 2720104, + "weight": 1 + }, + { + "id": 5106, + "nodePlanId": 90407, + "nodeId": 2720204, + "weight": 1 + }, + { + "id": 5107, + "nodePlanId": 90407, + "nodeId": 2720304, + "weight": 2 + }, + { + "id": 5108, + "nodePlanId": 90407, + "nodeId": 2720404, + "weight": 2 + }, + { + "id": 5109, + "nodePlanId": 90407, + "nodeId": 2720504, + "weight": 1 + }, + { + "id": 5110, + "nodePlanId": 90407, + "nodeId": 2720604, + "weight": 1 + }, + { + "id": 5111, + "nodePlanId": 90407, + "nodeId": 5710104, + "weight": 3 + }, + { + "id": 5112, + "nodePlanId": 90408, + "nodeId": 1720104, + "weight": 1 + }, + { + "id": 5113, + "nodePlanId": 90408, + "nodeId": 1720204, + "weight": 1 + }, + { + "id": 5114, + "nodePlanId": 90408, + "nodeId": 1720304, + "weight": 1 + }, + { + "id": 5115, + "nodePlanId": 90408, + "nodeId": 1720404, + "weight": 1 + }, + { + "id": 5116, + "nodePlanId": 90408, + "nodeId": 1720504, + "weight": 1 + }, + { + "id": 5117, + "nodePlanId": 90408, + "nodeId": 1720604, + "weight": 1 + }, + { + "id": 5118, + "nodePlanId": 90408, + "nodeId": 1720704, + "weight": 1 + }, + { + "id": 5119, + "nodePlanId": 90408, + "nodeId": 1720804, + "weight": 1 + }, + { + "id": 5120, + "nodePlanId": 90408, + "nodeId": 2720104, + "weight": 1 + }, + { + "id": 5121, + "nodePlanId": 90408, + "nodeId": 2720204, + "weight": 1 + }, + { + "id": 5122, + "nodePlanId": 90408, + "nodeId": 2720304, + "weight": 1 + }, + { + "id": 5123, + "nodePlanId": 90408, + "nodeId": 2720404, + "weight": 1 + }, + { + "id": 5124, + "nodePlanId": 90408, + "nodeId": 2720504, + "weight": 2 + }, + { + "id": 5125, + "nodePlanId": 90408, + "nodeId": 2720604, + "weight": 2 + }, + { + "id": 5126, + "nodePlanId": 90408, + "nodeId": 5710104, + "weight": 3 + }, + { + "id": 5127, + "nodePlanId": 90408, + "nodeId": 6710104, + "weight": 3 + }, + { + "id": 5128, + "nodePlanId": 90409, + "nodeId": 3710104, + "weight": 1 + }, + { + "id": 5129, + "nodePlanId": 90410, + "nodeId": 1720104, + "weight": 1 + }, + { + "id": 5130, + "nodePlanId": 90410, + "nodeId": 1720204, + "weight": 1 + }, + { + "id": 5131, + "nodePlanId": 90410, + "nodeId": 1720304, + "weight": 1 + }, + { + "id": 5132, + "nodePlanId": 90410, + "nodeId": 1720404, + "weight": 1 + }, + { + "id": 5133, + "nodePlanId": 90410, + "nodeId": 1720504, + "weight": 1 + }, + { + "id": 5134, + "nodePlanId": 90410, + "nodeId": 1720604, + "weight": 1 + }, + { + "id": 5135, + "nodePlanId": 90410, + "nodeId": 1720704, + "weight": 1 + }, + { + "id": 5136, + "nodePlanId": 90410, + "nodeId": 1720804, + "weight": 1 + }, + { + "id": 5137, + "nodePlanId": 90410, + "nodeId": 2720104, + "weight": 1 + }, + { + "id": 5138, + "nodePlanId": 90410, + "nodeId": 2720204, + "weight": 1 + }, + { + "id": 5139, + "nodePlanId": 90410, + "nodeId": 2720304, + "weight": 1 + }, + { + "id": 5140, + "nodePlanId": 90410, + "nodeId": 2720404, + "weight": 1 + }, + { + "id": 5141, + "nodePlanId": 90410, + "nodeId": 2720504, + "weight": 2 + }, + { + "id": 5142, + "nodePlanId": 90410, + "nodeId": 2720604, + "weight": 2 + }, + { + "id": 5143, + "nodePlanId": 90410, + "nodeId": 5710104, + "weight": 3 + }, + { + "id": 5144, + "nodePlanId": 90410, + "nodeId": 6710104, + "weight": 3 + }, + { + "id": 5145, + "nodePlanId": 90411, + "nodeId": 1720104, + "weight": 1 + }, + { + "id": 5146, + "nodePlanId": 90411, + "nodeId": 1720204, + "weight": 1 + }, + { + "id": 5147, + "nodePlanId": 90411, + "nodeId": 1720304, + "weight": 1 + }, + { + "id": 5148, + "nodePlanId": 90411, + "nodeId": 1720404, + "weight": 1 + }, + { + "id": 5149, + "nodePlanId": 90411, + "nodeId": 1720504, + "weight": 1 + }, + { + "id": 5150, + "nodePlanId": 90411, + "nodeId": 1720604, + "weight": 1 + }, + { + "id": 5151, + "nodePlanId": 90411, + "nodeId": 1720704, + "weight": 1 + }, + { + "id": 5152, + "nodePlanId": 90411, + "nodeId": 1720804, + "weight": 1 + }, + { + "id": 5153, + "nodePlanId": 90411, + "nodeId": 2720104, + "weight": 1 + }, + { + "id": 5154, + "nodePlanId": 90411, + "nodeId": 2720204, + "weight": 1 + }, + { + "id": 5155, + "nodePlanId": 90411, + "nodeId": 2720304, + "weight": 1 + }, + { + "id": 5156, + "nodePlanId": 90411, + "nodeId": 2720404, + "weight": 1 + }, + { + "id": 5157, + "nodePlanId": 90411, + "nodeId": 2720504, + "weight": 2 + }, + { + "id": 5158, + "nodePlanId": 90411, + "nodeId": 2720604, + "weight": 2 + }, + { + "id": 5159, + "nodePlanId": 90411, + "nodeId": 4710104, + "weight": 2 + }, + { + "id": 5160, + "nodePlanId": 90411, + "nodeId": 6710104, + "weight": 2 + }, + { + "id": 5161, + "nodePlanId": 90411, + "nodeId": 6710104, + "weight": 2 + }, + { + "id": 5162, + "nodePlanId": 90412, + "nodeId": 1730104, + "weight": 1 + }, + { + "id": 5163, + "nodePlanId": 90412, + "nodeId": 1730204, + "weight": 1 + }, + { + "id": 5164, + "nodePlanId": 90412, + "nodeId": 1730304, + "weight": 1 + }, + { + "id": 5165, + "nodePlanId": 90412, + "nodeId": 1730404, + "weight": 1 + }, + { + "id": 5166, + "nodePlanId": 90412, + "nodeId": 1730504, + "weight": 1 + }, + { + "id": 5167, + "nodePlanId": 90412, + "nodeId": 2730104, + "weight": 1.5 + }, + { + "id": 5168, + "nodePlanId": 90412, + "nodeId": 2730204, + "weight": 1.5 + }, + { + "id": 5169, + "nodePlanId": 90412, + "nodeId": 2730304, + "weight": 1 + }, + { + "id": 5170, + "nodePlanId": 90412, + "nodeId": 2730404, + "weight": 1 + }, + { + "id": 5171, + "nodePlanId": 90412, + "nodeId": 2730504, + "weight": 1 + }, + { + "id": 5172, + "nodePlanId": 90412, + "nodeId": 2730604, + "weight": 1 + }, + { + "id": 5173, + "nodePlanId": 90413, + "nodeId": 1730604, + "weight": 1 + }, + { + "id": 5174, + "nodePlanId": 90413, + "nodeId": 1730704, + "weight": 1 + }, + { + "id": 5175, + "nodePlanId": 90413, + "nodeId": 1730804, + "weight": 1 + }, + { + "id": 5176, + "nodePlanId": 90413, + "nodeId": 2730104, + "weight": 1 + }, + { + "id": 5177, + "nodePlanId": 90413, + "nodeId": 2730204, + "weight": 1 + }, + { + "id": 5178, + "nodePlanId": 90413, + "nodeId": 2730304, + "weight": 2 + }, + { + "id": 5179, + "nodePlanId": 90413, + "nodeId": 2730404, + "weight": 2 + }, + { + "id": 5180, + "nodePlanId": 90413, + "nodeId": 2730504, + "weight": 1 + }, + { + "id": 5181, + "nodePlanId": 90413, + "nodeId": 2730604, + "weight": 1 + }, + { + "id": 5182, + "nodePlanId": 90413, + "nodeId": 5710104, + "weight": 3 + }, + { + "id": 5183, + "nodePlanId": 90413, + "nodeId": 6710104, + "weight": 2 + }, + { + "id": 5184, + "nodePlanId": 90414, + "nodeId": 4710104, + "weight": 1 + }, + { + "id": 5185, + "nodePlanId": 90415, + "nodeId": 7710104, + "weight": 1 + }, + { + "id": 5186, + "nodePlanId": 90501, + "nodeId": 1710105, + "weight": 1 + }, + { + "id": 5187, + "nodePlanId": 90501, + "nodeId": 1710205, + "weight": 1 + }, + { + "id": 5188, + "nodePlanId": 90501, + "nodeId": 1710305, + "weight": 1 + }, + { + "id": 5189, + "nodePlanId": 90501, + "nodeId": 1710405, + "weight": 1 + }, + { + "id": 5190, + "nodePlanId": 90501, + "nodeId": 1710505, + "weight": 1 + }, + { + "id": 5191, + "nodePlanId": 90501, + "nodeId": 1710605, + "weight": 1 + }, + { + "id": 5192, + "nodePlanId": 90501, + "nodeId": 1710705, + "weight": 1 + }, + { + "id": 5193, + "nodePlanId": 90501, + "nodeId": 1710805, + "weight": 1 + }, + { + "id": 5194, + "nodePlanId": 90502, + "nodeId": 1710105, + "weight": 1 + }, + { + "id": 5195, + "nodePlanId": 90502, + "nodeId": 1710205, + "weight": 1 + }, + { + "id": 5196, + "nodePlanId": 90502, + "nodeId": 1710305, + "weight": 1 + }, + { + "id": 5197, + "nodePlanId": 90502, + "nodeId": 1710405, + "weight": 1 + }, + { + "id": 5198, + "nodePlanId": 90502, + "nodeId": 1710505, + "weight": 1 + }, + { + "id": 5199, + "nodePlanId": 90502, + "nodeId": 1710605, + "weight": 1 + }, + { + "id": 5200, + "nodePlanId": 90502, + "nodeId": 1710705, + "weight": 1 + }, + { + "id": 5201, + "nodePlanId": 90502, + "nodeId": 1710805, + "weight": 1 + }, + { + "id": 5202, + "nodePlanId": 90503, + "nodeId": 1710105, + "weight": 1 + }, + { + "id": 5203, + "nodePlanId": 90503, + "nodeId": 1710205, + "weight": 1 + }, + { + "id": 5204, + "nodePlanId": 90503, + "nodeId": 1710305, + "weight": 1 + }, + { + "id": 5205, + "nodePlanId": 90503, + "nodeId": 1710405, + "weight": 1 + }, + { + "id": 5206, + "nodePlanId": 90503, + "nodeId": 1710505, + "weight": 1 + }, + { + "id": 5207, + "nodePlanId": 90503, + "nodeId": 1710605, + "weight": 1 + }, + { + "id": 5208, + "nodePlanId": 90503, + "nodeId": 1710705, + "weight": 1 + }, + { + "id": 5209, + "nodePlanId": 90503, + "nodeId": 1710805, + "weight": 1 + }, + { + "id": 5210, + "nodePlanId": 90503, + "nodeId": 2710105, + "weight": 4 + }, + { + "id": 5211, + "nodePlanId": 90503, + "nodeId": 2710205, + "weight": 4 + }, + { + "id": 5212, + "nodePlanId": 90503, + "nodeId": 6710105, + "weight": 8 + }, + { + "id": 5213, + "nodePlanId": 90504, + "nodeId": 2710305, + "weight": 1 + }, + { + "id": 5214, + "nodePlanId": 90504, + "nodeId": 2710405, + "weight": 1 + }, + { + "id": 5215, + "nodePlanId": 90504, + "nodeId": 2710505, + "weight": 1 + }, + { + "id": 5216, + "nodePlanId": 90504, + "nodeId": 2710605, + "weight": 1 + }, + { + "id": 5217, + "nodePlanId": 90505, + "nodeId": 5710105, + "weight": 1 + }, + { + "id": 5218, + "nodePlanId": 90506, + "nodeId": 1720105, + "weight": 1 + }, + { + "id": 5219, + "nodePlanId": 90506, + "nodeId": 1720205, + "weight": 1 + }, + { + "id": 5220, + "nodePlanId": 90506, + "nodeId": 1720305, + "weight": 1 + }, + { + "id": 5221, + "nodePlanId": 90506, + "nodeId": 1720405, + "weight": 1 + }, + { + "id": 5222, + "nodePlanId": 90506, + "nodeId": 1720505, + "weight": 1 + }, + { + "id": 5223, + "nodePlanId": 90506, + "nodeId": 1720605, + "weight": 1 + }, + { + "id": 5224, + "nodePlanId": 90506, + "nodeId": 1720705, + "weight": 1 + }, + { + "id": 5225, + "nodePlanId": 90506, + "nodeId": 1720805, + "weight": 1 + }, + { + "id": 5226, + "nodePlanId": 90506, + "nodeId": 2720105, + "weight": 2 + }, + { + "id": 5227, + "nodePlanId": 90506, + "nodeId": 2720205, + "weight": 2 + }, + { + "id": 5228, + "nodePlanId": 90506, + "nodeId": 2720305, + "weight": 1 + }, + { + "id": 5229, + "nodePlanId": 90506, + "nodeId": 2720405, + "weight": 1 + }, + { + "id": 5230, + "nodePlanId": 90506, + "nodeId": 2720505, + "weight": 1 + }, + { + "id": 5231, + "nodePlanId": 90506, + "nodeId": 2720605, + "weight": 1 + }, + { + "id": 5232, + "nodePlanId": 90506, + "nodeId": 4710105, + "weight": 3 + }, + { + "id": 5233, + "nodePlanId": 90506, + "nodeId": 6710105, + "weight": 3 + }, + { + "id": 5234, + "nodePlanId": 90507, + "nodeId": 1720105, + "weight": 1 + }, + { + "id": 5235, + "nodePlanId": 90507, + "nodeId": 1720205, + "weight": 1 + }, + { + "id": 5236, + "nodePlanId": 90507, + "nodeId": 1720305, + "weight": 1 + }, + { + "id": 5237, + "nodePlanId": 90507, + "nodeId": 1720405, + "weight": 1 + }, + { + "id": 5238, + "nodePlanId": 90507, + "nodeId": 1720505, + "weight": 1 + }, + { + "id": 5239, + "nodePlanId": 90507, + "nodeId": 1720605, + "weight": 1 + }, + { + "id": 5240, + "nodePlanId": 90507, + "nodeId": 1720705, + "weight": 1 + }, + { + "id": 5241, + "nodePlanId": 90507, + "nodeId": 1720805, + "weight": 1 + }, + { + "id": 5242, + "nodePlanId": 90507, + "nodeId": 2720105, + "weight": 1 + }, + { + "id": 5243, + "nodePlanId": 90507, + "nodeId": 2720205, + "weight": 1 + }, + { + "id": 5244, + "nodePlanId": 90507, + "nodeId": 2720305, + "weight": 2 + }, + { + "id": 5245, + "nodePlanId": 90507, + "nodeId": 2720405, + "weight": 2 + }, + { + "id": 5246, + "nodePlanId": 90507, + "nodeId": 2720505, + "weight": 1 + }, + { + "id": 5247, + "nodePlanId": 90507, + "nodeId": 2720605, + "weight": 1 + }, + { + "id": 5248, + "nodePlanId": 90507, + "nodeId": 5710105, + "weight": 3 + }, + { + "id": 5249, + "nodePlanId": 90508, + "nodeId": 1720105, + "weight": 1 + }, + { + "id": 5250, + "nodePlanId": 90508, + "nodeId": 1720205, + "weight": 1 + }, + { + "id": 5251, + "nodePlanId": 90508, + "nodeId": 1720305, + "weight": 1 + }, + { + "id": 5252, + "nodePlanId": 90508, + "nodeId": 1720405, + "weight": 1 + }, + { + "id": 5253, + "nodePlanId": 90508, + "nodeId": 1720505, + "weight": 1 + }, + { + "id": 5254, + "nodePlanId": 90508, + "nodeId": 1720605, + "weight": 1 + }, + { + "id": 5255, + "nodePlanId": 90508, + "nodeId": 1720705, + "weight": 1 + }, + { + "id": 5256, + "nodePlanId": 90508, + "nodeId": 1720805, + "weight": 1 + }, + { + "id": 5257, + "nodePlanId": 90508, + "nodeId": 2720105, + "weight": 1 + }, + { + "id": 5258, + "nodePlanId": 90508, + "nodeId": 2720205, + "weight": 1 + }, + { + "id": 5259, + "nodePlanId": 90508, + "nodeId": 2720305, + "weight": 1 + }, + { + "id": 5260, + "nodePlanId": 90508, + "nodeId": 2720405, + "weight": 1 + }, + { + "id": 5261, + "nodePlanId": 90508, + "nodeId": 2720505, + "weight": 2 + }, + { + "id": 5262, + "nodePlanId": 90508, + "nodeId": 2720605, + "weight": 2 + }, + { + "id": 5263, + "nodePlanId": 90508, + "nodeId": 5710105, + "weight": 3 + }, + { + "id": 5264, + "nodePlanId": 90508, + "nodeId": 6710105, + "weight": 3 + }, + { + "id": 5265, + "nodePlanId": 90509, + "nodeId": 3710105, + "weight": 1 + }, + { + "id": 5266, + "nodePlanId": 90510, + "nodeId": 1720105, + "weight": 1 + }, + { + "id": 5267, + "nodePlanId": 90510, + "nodeId": 1720205, + "weight": 1 + }, + { + "id": 5268, + "nodePlanId": 90510, + "nodeId": 1720305, + "weight": 1 + }, + { + "id": 5269, + "nodePlanId": 90510, + "nodeId": 1720405, + "weight": 1 + }, + { + "id": 5270, + "nodePlanId": 90510, + "nodeId": 1720505, + "weight": 1 + }, + { + "id": 5271, + "nodePlanId": 90510, + "nodeId": 1720605, + "weight": 1 + }, + { + "id": 5272, + "nodePlanId": 90510, + "nodeId": 1720705, + "weight": 1 + }, + { + "id": 5273, + "nodePlanId": 90510, + "nodeId": 1720805, + "weight": 1 + }, + { + "id": 5274, + "nodePlanId": 90510, + "nodeId": 2720105, + "weight": 1 + }, + { + "id": 5275, + "nodePlanId": 90510, + "nodeId": 2720205, + "weight": 1 + }, + { + "id": 5276, + "nodePlanId": 90510, + "nodeId": 2720305, + "weight": 1 + }, + { + "id": 5277, + "nodePlanId": 90510, + "nodeId": 2720405, + "weight": 1 + }, + { + "id": 5278, + "nodePlanId": 90510, + "nodeId": 2720505, + "weight": 2 + }, + { + "id": 5279, + "nodePlanId": 90510, + "nodeId": 2720605, + "weight": 2 + }, + { + "id": 5280, + "nodePlanId": 90510, + "nodeId": 5710105, + "weight": 3 + }, + { + "id": 5281, + "nodePlanId": 90510, + "nodeId": 6710105, + "weight": 3 + }, + { + "id": 5282, + "nodePlanId": 90511, + "nodeId": 1720105, + "weight": 1 + }, + { + "id": 5283, + "nodePlanId": 90511, + "nodeId": 1720205, + "weight": 1 + }, + { + "id": 5284, + "nodePlanId": 90511, + "nodeId": 1720305, + "weight": 1 + }, + { + "id": 5285, + "nodePlanId": 90511, + "nodeId": 1720405, + "weight": 1 + }, + { + "id": 5286, + "nodePlanId": 90511, + "nodeId": 1720505, + "weight": 1 + }, + { + "id": 5287, + "nodePlanId": 90511, + "nodeId": 1720605, + "weight": 1 + }, + { + "id": 5288, + "nodePlanId": 90511, + "nodeId": 1720705, + "weight": 1 + }, + { + "id": 5289, + "nodePlanId": 90511, + "nodeId": 1720805, + "weight": 1 + }, + { + "id": 5290, + "nodePlanId": 90511, + "nodeId": 2720105, + "weight": 1 + }, + { + "id": 5291, + "nodePlanId": 90511, + "nodeId": 2720205, + "weight": 1 + }, + { + "id": 5292, + "nodePlanId": 90511, + "nodeId": 2720305, + "weight": 1 + }, + { + "id": 5293, + "nodePlanId": 90511, + "nodeId": 2720405, + "weight": 1 + }, + { + "id": 5294, + "nodePlanId": 90511, + "nodeId": 2720505, + "weight": 2 + }, + { + "id": 5295, + "nodePlanId": 90511, + "nodeId": 2720605, + "weight": 2 + }, + { + "id": 5296, + "nodePlanId": 90511, + "nodeId": 4710105, + "weight": 2 + }, + { + "id": 5297, + "nodePlanId": 90511, + "nodeId": 6710105, + "weight": 2 + }, + { + "id": 5298, + "nodePlanId": 90511, + "nodeId": 6710105, + "weight": 2 + }, + { + "id": 5299, + "nodePlanId": 90512, + "nodeId": 1730105, + "weight": 1 + }, + { + "id": 5300, + "nodePlanId": 90512, + "nodeId": 1730205, + "weight": 1 + }, + { + "id": 5301, + "nodePlanId": 90512, + "nodeId": 1730305, + "weight": 1 + }, + { + "id": 5302, + "nodePlanId": 90512, + "nodeId": 1730405, + "weight": 1 + }, + { + "id": 5303, + "nodePlanId": 90512, + "nodeId": 1730505, + "weight": 1 + }, + { + "id": 5304, + "nodePlanId": 90512, + "nodeId": 2730105, + "weight": 1.5 + }, + { + "id": 5305, + "nodePlanId": 90512, + "nodeId": 2730205, + "weight": 1.5 + }, + { + "id": 5306, + "nodePlanId": 90512, + "nodeId": 2730305, + "weight": 1 + }, + { + "id": 5307, + "nodePlanId": 90512, + "nodeId": 2730405, + "weight": 1 + }, + { + "id": 5308, + "nodePlanId": 90512, + "nodeId": 2730505, + "weight": 1 + }, + { + "id": 5309, + "nodePlanId": 90512, + "nodeId": 2730605, + "weight": 1 + }, + { + "id": 5310, + "nodePlanId": 90513, + "nodeId": 1730605, + "weight": 1 + }, + { + "id": 5311, + "nodePlanId": 90513, + "nodeId": 1730705, + "weight": 1 + }, + { + "id": 5312, + "nodePlanId": 90513, + "nodeId": 1730805, + "weight": 1 + }, + { + "id": 5313, + "nodePlanId": 90513, + "nodeId": 2730105, + "weight": 1 + }, + { + "id": 5314, + "nodePlanId": 90513, + "nodeId": 2730205, + "weight": 1 + }, + { + "id": 5315, + "nodePlanId": 90513, + "nodeId": 2730305, + "weight": 2 + }, + { + "id": 5316, + "nodePlanId": 90513, + "nodeId": 2730405, + "weight": 2 + }, + { + "id": 5317, + "nodePlanId": 90513, + "nodeId": 2730505, + "weight": 1 + }, + { + "id": 5318, + "nodePlanId": 90513, + "nodeId": 2730605, + "weight": 1 + }, + { + "id": 5319, + "nodePlanId": 90513, + "nodeId": 5710105, + "weight": 3 + }, + { + "id": 5320, + "nodePlanId": 90513, + "nodeId": 6710105, + "weight": 2 + }, + { + "id": 5321, + "nodePlanId": 90514, + "nodeId": 4710105, + "weight": 1 + }, + { + "id": 5322, + "nodePlanId": 90514, + "nodeId": 6710105, + "weight": 1 + }, + { + "id": 5323, + "nodePlanId": 90514, + "nodeId": 6710105, + "weight": 1 + }, + { + "id": 5324, + "nodePlanId": 90514, + "nodeId": 2730505, + "weight": 1 + }, + { + "id": 5325, + "nodePlanId": 90514, + "nodeId": 2730605, + "weight": 1 + }, + { + "id": 5326, + "nodePlanId": 90515, + "nodeId": 1730105, + "weight": 1 + }, + { + "id": 5327, + "nodePlanId": 90515, + "nodeId": 1730205, + "weight": 1 + }, + { + "id": 5328, + "nodePlanId": 90515, + "nodeId": 1730305, + "weight": 1 + }, + { + "id": 5329, + "nodePlanId": 90515, + "nodeId": 1730405, + "weight": 1 + }, + { + "id": 5330, + "nodePlanId": 90515, + "nodeId": 1730505, + "weight": 1 + }, + { + "id": 5331, + "nodePlanId": 90515, + "nodeId": 1730605, + "weight": 1 + }, + { + "id": 5332, + "nodePlanId": 90515, + "nodeId": 1730705, + "weight": 1 + }, + { + "id": 5333, + "nodePlanId": 90515, + "nodeId": 1730805, + "weight": 1 + }, + { + "id": 5334, + "nodePlanId": 90515, + "nodeId": 6710105, + "weight": 3 + }, + { + "id": 5335, + "nodePlanId": 90515, + "nodeId": 6710105, + "weight": 2 + }, + { + "id": 5336, + "nodePlanId": 90516, + "nodeId": 5710105, + "weight": 1 + }, + { + "id": 5337, + "nodePlanId": 90516, + "nodeId": 5710105, + "weight": 1 + }, + { + "id": 5338, + "nodePlanId": 90516, + "nodeId": 1730105, + "weight": 1 + }, + { + "id": 5339, + "nodePlanId": 90516, + "nodeId": 1730205, + "weight": 1 + }, + { + "id": 5340, + "nodePlanId": 90517, + "nodeId": 2730105, + "weight": 1 + }, + { + "id": 5341, + "nodePlanId": 90517, + "nodeId": 2730205, + "weight": 1 + }, + { + "id": 5342, + "nodePlanId": 90517, + "nodeId": 2730305, + "weight": 1 + }, + { + "id": 5343, + "nodePlanId": 90517, + "nodeId": 2730405, + "weight": 1 + }, + { + "id": 5344, + "nodePlanId": 90517, + "nodeId": 2730505, + "weight": 1 + }, + { + "id": 5345, + "nodePlanId": 90517, + "nodeId": 2730605, + "weight": 1 + }, + { + "id": 5346, + "nodePlanId": 90518, + "nodeId": 5710105, + "weight": 1 + }, + { + "id": 5347, + "nodePlanId": 90518, + "nodeId": 6710105, + "weight": 1 + }, + { + "id": 5348, + "nodePlanId": 90519, + "nodeId": 4710105, + "weight": 1 + }, + { + "id": 5349, + "nodePlanId": 90520, + "nodeId": 7710105, + "weight": 1 + }, + { + "id": 5350, + "nodePlanId": 100101, + "nodeId": 1810101, + "weight": 1 + }, + { + "id": 5351, + "nodePlanId": 100101, + "nodeId": 1810201, + "weight": 1 + }, + { + "id": 5352, + "nodePlanId": 100101, + "nodeId": 1810301, + "weight": 1 + }, + { + "id": 5353, + "nodePlanId": 100101, + "nodeId": 1810401, + "weight": 1 + }, + { + "id": 5354, + "nodePlanId": 100101, + "nodeId": 1810501, + "weight": 1 + }, + { + "id": 5355, + "nodePlanId": 100101, + "nodeId": 1810601, + "weight": 1 + }, + { + "id": 5356, + "nodePlanId": 100101, + "nodeId": 1810701, + "weight": 1 + }, + { + "id": 5357, + "nodePlanId": 100101, + "nodeId": 1810801, + "weight": 1 + }, + { + "id": 5358, + "nodePlanId": 100102, + "nodeId": 1810101, + "weight": 1 + }, + { + "id": 5359, + "nodePlanId": 100102, + "nodeId": 1810201, + "weight": 1 + }, + { + "id": 5360, + "nodePlanId": 100102, + "nodeId": 1810301, + "weight": 1 + }, + { + "id": 5361, + "nodePlanId": 100102, + "nodeId": 1810401, + "weight": 1 + }, + { + "id": 5362, + "nodePlanId": 100102, + "nodeId": 1810501, + "weight": 1 + }, + { + "id": 5363, + "nodePlanId": 100102, + "nodeId": 1810601, + "weight": 1 + }, + { + "id": 5364, + "nodePlanId": 100102, + "nodeId": 1810701, + "weight": 1 + }, + { + "id": 5365, + "nodePlanId": 100102, + "nodeId": 1810801, + "weight": 1 + }, + { + "id": 5366, + "nodePlanId": 100103, + "nodeId": 1810101, + "weight": 1 + }, + { + "id": 5367, + "nodePlanId": 100103, + "nodeId": 1810201, + "weight": 1 + }, + { + "id": 5368, + "nodePlanId": 100103, + "nodeId": 1810301, + "weight": 1 + }, + { + "id": 5369, + "nodePlanId": 100103, + "nodeId": 1810401, + "weight": 1 + }, + { + "id": 5370, + "nodePlanId": 100103, + "nodeId": 1810501, + "weight": 1 + }, + { + "id": 5371, + "nodePlanId": 100103, + "nodeId": 1810601, + "weight": 1 + }, + { + "id": 5372, + "nodePlanId": 100103, + "nodeId": 1810701, + "weight": 1 + }, + { + "id": 5373, + "nodePlanId": 100103, + "nodeId": 1810801, + "weight": 1 + }, + { + "id": 5374, + "nodePlanId": 100103, + "nodeId": 2810101, + "weight": 4 + }, + { + "id": 5375, + "nodePlanId": 100103, + "nodeId": 2810201, + "weight": 4 + }, + { + "id": 5376, + "nodePlanId": 100103, + "nodeId": 6810101, + "weight": 8 + }, + { + "id": 5377, + "nodePlanId": 100104, + "nodeId": 2810301, + "weight": 1 + }, + { + "id": 5378, + "nodePlanId": 100104, + "nodeId": 2810401, + "weight": 1 + }, + { + "id": 5379, + "nodePlanId": 100104, + "nodeId": 2810501, + "weight": 1 + }, + { + "id": 5380, + "nodePlanId": 100104, + "nodeId": 2810601, + "weight": 1 + }, + { + "id": 5381, + "nodePlanId": 100105, + "nodeId": 5810101, + "weight": 1 + }, + { + "id": 5382, + "nodePlanId": 100106, + "nodeId": 1820101, + "weight": 1 + }, + { + "id": 5383, + "nodePlanId": 100106, + "nodeId": 1820201, + "weight": 1 + }, + { + "id": 5384, + "nodePlanId": 100106, + "nodeId": 1820301, + "weight": 1 + }, + { + "id": 5385, + "nodePlanId": 100106, + "nodeId": 1820401, + "weight": 1 + }, + { + "id": 5386, + "nodePlanId": 100106, + "nodeId": 1820501, + "weight": 1 + }, + { + "id": 5387, + "nodePlanId": 100106, + "nodeId": 1820601, + "weight": 1 + }, + { + "id": 5388, + "nodePlanId": 100106, + "nodeId": 1820701, + "weight": 1 + }, + { + "id": 5389, + "nodePlanId": 100106, + "nodeId": 1820801, + "weight": 1 + }, + { + "id": 5390, + "nodePlanId": 100106, + "nodeId": 2820101, + "weight": 2 + }, + { + "id": 5391, + "nodePlanId": 100106, + "nodeId": 2820201, + "weight": 2 + }, + { + "id": 5392, + "nodePlanId": 100106, + "nodeId": 2820301, + "weight": 1 + }, + { + "id": 5393, + "nodePlanId": 100106, + "nodeId": 2820401, + "weight": 1 + }, + { + "id": 5394, + "nodePlanId": 100106, + "nodeId": 2820501, + "weight": 1 + }, + { + "id": 5395, + "nodePlanId": 100106, + "nodeId": 2820601, + "weight": 1 + }, + { + "id": 5396, + "nodePlanId": 100106, + "nodeId": 4810101, + "weight": 3 + }, + { + "id": 5397, + "nodePlanId": 100106, + "nodeId": 6810101, + "weight": 3 + }, + { + "id": 5398, + "nodePlanId": 100107, + "nodeId": 1820101, + "weight": 1 + }, + { + "id": 5399, + "nodePlanId": 100107, + "nodeId": 1820201, + "weight": 1 + }, + { + "id": 5400, + "nodePlanId": 100107, + "nodeId": 1820301, + "weight": 1 + }, + { + "id": 5401, + "nodePlanId": 100107, + "nodeId": 1820401, + "weight": 1 + }, + { + "id": 5402, + "nodePlanId": 100107, + "nodeId": 1820501, + "weight": 1 + }, + { + "id": 5403, + "nodePlanId": 100107, + "nodeId": 1820601, + "weight": 1 + }, + { + "id": 5404, + "nodePlanId": 100107, + "nodeId": 1820701, + "weight": 1 + }, + { + "id": 5405, + "nodePlanId": 100107, + "nodeId": 1820801, + "weight": 1 + }, + { + "id": 5406, + "nodePlanId": 100107, + "nodeId": 2820101, + "weight": 1 + }, + { + "id": 5407, + "nodePlanId": 100107, + "nodeId": 2820201, + "weight": 1 + }, + { + "id": 5408, + "nodePlanId": 100107, + "nodeId": 2820301, + "weight": 2 + }, + { + "id": 5409, + "nodePlanId": 100107, + "nodeId": 2820401, + "weight": 2 + }, + { + "id": 5410, + "nodePlanId": 100107, + "nodeId": 2820501, + "weight": 1 + }, + { + "id": 5411, + "nodePlanId": 100107, + "nodeId": 2820601, + "weight": 1 + }, + { + "id": 5412, + "nodePlanId": 100107, + "nodeId": 5810101, + "weight": 3 + }, + { + "id": 5413, + "nodePlanId": 100108, + "nodeId": 1820101, + "weight": 1 + }, + { + "id": 5414, + "nodePlanId": 100108, + "nodeId": 1820201, + "weight": 1 + }, + { + "id": 5415, + "nodePlanId": 100108, + "nodeId": 1820301, + "weight": 1 + }, + { + "id": 5416, + "nodePlanId": 100108, + "nodeId": 1820401, + "weight": 1 + }, + { + "id": 5417, + "nodePlanId": 100108, + "nodeId": 1820501, + "weight": 1 + }, + { + "id": 5418, + "nodePlanId": 100108, + "nodeId": 1820601, + "weight": 1 + }, + { + "id": 5419, + "nodePlanId": 100108, + "nodeId": 1820701, + "weight": 1 + }, + { + "id": 5420, + "nodePlanId": 100108, + "nodeId": 1820801, + "weight": 1 + }, + { + "id": 5421, + "nodePlanId": 100108, + "nodeId": 2820101, + "weight": 1 + }, + { + "id": 5422, + "nodePlanId": 100108, + "nodeId": 2820201, + "weight": 1 + }, + { + "id": 5423, + "nodePlanId": 100108, + "nodeId": 2820301, + "weight": 1 + }, + { + "id": 5424, + "nodePlanId": 100108, + "nodeId": 2820401, + "weight": 1 + }, + { + "id": 5425, + "nodePlanId": 100108, + "nodeId": 2820501, + "weight": 2 + }, + { + "id": 5426, + "nodePlanId": 100108, + "nodeId": 2820601, + "weight": 2 + }, + { + "id": 5427, + "nodePlanId": 100108, + "nodeId": 5810101, + "weight": 3 + }, + { + "id": 5428, + "nodePlanId": 100108, + "nodeId": 6810101, + "weight": 3 + }, + { + "id": 5429, + "nodePlanId": 100109, + "nodeId": 3810101, + "weight": 1 + }, + { + "id": 5430, + "nodePlanId": 100110, + "nodeId": 1820101, + "weight": 1 + }, + { + "id": 5431, + "nodePlanId": 100110, + "nodeId": 1820201, + "weight": 1 + }, + { + "id": 5432, + "nodePlanId": 100110, + "nodeId": 1820301, + "weight": 1 + }, + { + "id": 5433, + "nodePlanId": 100110, + "nodeId": 1820401, + "weight": 1 + }, + { + "id": 5434, + "nodePlanId": 100110, + "nodeId": 1820501, + "weight": 1 + }, + { + "id": 5435, + "nodePlanId": 100110, + "nodeId": 1820601, + "weight": 1 + }, + { + "id": 5436, + "nodePlanId": 100110, + "nodeId": 1820701, + "weight": 1 + }, + { + "id": 5437, + "nodePlanId": 100110, + "nodeId": 1820801, + "weight": 1 + }, + { + "id": 5438, + "nodePlanId": 100110, + "nodeId": 2820101, + "weight": 1 + }, + { + "id": 5439, + "nodePlanId": 100110, + "nodeId": 2820201, + "weight": 1 + }, + { + "id": 5440, + "nodePlanId": 100110, + "nodeId": 2820301, + "weight": 1 + }, + { + "id": 5441, + "nodePlanId": 100110, + "nodeId": 2820401, + "weight": 1 + }, + { + "id": 5442, + "nodePlanId": 100110, + "nodeId": 2820501, + "weight": 2 + }, + { + "id": 5443, + "nodePlanId": 100110, + "nodeId": 2820601, + "weight": 2 + }, + { + "id": 5444, + "nodePlanId": 100110, + "nodeId": 5810101, + "weight": 3 + }, + { + "id": 5445, + "nodePlanId": 100110, + "nodeId": 6810101, + "weight": 3 + }, + { + "id": 5446, + "nodePlanId": 100111, + "nodeId": 1820101, + "weight": 1 + }, + { + "id": 5447, + "nodePlanId": 100111, + "nodeId": 1820201, + "weight": 1 + }, + { + "id": 5448, + "nodePlanId": 100111, + "nodeId": 1820301, + "weight": 1 + }, + { + "id": 5449, + "nodePlanId": 100111, + "nodeId": 1820401, + "weight": 1 + }, + { + "id": 5450, + "nodePlanId": 100111, + "nodeId": 1820501, + "weight": 1 + }, + { + "id": 5451, + "nodePlanId": 100111, + "nodeId": 1820601, + "weight": 1 + }, + { + "id": 5452, + "nodePlanId": 100111, + "nodeId": 1820701, + "weight": 1 + }, + { + "id": 5453, + "nodePlanId": 100111, + "nodeId": 1820801, + "weight": 1 + }, + { + "id": 5454, + "nodePlanId": 100111, + "nodeId": 2820101, + "weight": 1 + }, + { + "id": 5455, + "nodePlanId": 100111, + "nodeId": 2820201, + "weight": 1 + }, + { + "id": 5456, + "nodePlanId": 100111, + "nodeId": 2820301, + "weight": 1 + }, + { + "id": 5457, + "nodePlanId": 100111, + "nodeId": 2820401, + "weight": 1 + }, + { + "id": 5458, + "nodePlanId": 100111, + "nodeId": 2820501, + "weight": 2 + }, + { + "id": 5459, + "nodePlanId": 100111, + "nodeId": 2820601, + "weight": 2 + }, + { + "id": 5460, + "nodePlanId": 100111, + "nodeId": 4810101, + "weight": 2 + }, + { + "id": 5461, + "nodePlanId": 100111, + "nodeId": 6810101, + "weight": 2 + }, + { + "id": 5462, + "nodePlanId": 100111, + "nodeId": 6810101, + "weight": 2 + }, + { + "id": 5463, + "nodePlanId": 100112, + "nodeId": 1830101, + "weight": 1 + }, + { + "id": 5464, + "nodePlanId": 100112, + "nodeId": 1830201, + "weight": 1 + }, + { + "id": 5465, + "nodePlanId": 100112, + "nodeId": 1830301, + "weight": 1 + }, + { + "id": 5466, + "nodePlanId": 100112, + "nodeId": 1830401, + "weight": 1 + }, + { + "id": 5467, + "nodePlanId": 100112, + "nodeId": 1830501, + "weight": 1 + }, + { + "id": 5468, + "nodePlanId": 100112, + "nodeId": 2830101, + "weight": 1.5 + }, + { + "id": 5469, + "nodePlanId": 100112, + "nodeId": 2830201, + "weight": 1.5 + }, + { + "id": 5470, + "nodePlanId": 100112, + "nodeId": 2830301, + "weight": 1 + }, + { + "id": 5471, + "nodePlanId": 100112, + "nodeId": 2830401, + "weight": 1 + }, + { + "id": 5472, + "nodePlanId": 100112, + "nodeId": 2830501, + "weight": 1 + }, + { + "id": 5473, + "nodePlanId": 100112, + "nodeId": 2830601, + "weight": 1 + }, + { + "id": 5474, + "nodePlanId": 100113, + "nodeId": 1830601, + "weight": 1 + }, + { + "id": 5475, + "nodePlanId": 100113, + "nodeId": 1830701, + "weight": 1 + }, + { + "id": 5476, + "nodePlanId": 100113, + "nodeId": 1830801, + "weight": 1 + }, + { + "id": 5477, + "nodePlanId": 100113, + "nodeId": 2830101, + "weight": 1 + }, + { + "id": 5478, + "nodePlanId": 100113, + "nodeId": 2830201, + "weight": 1 + }, + { + "id": 5479, + "nodePlanId": 100113, + "nodeId": 2830301, + "weight": 2 + }, + { + "id": 5480, + "nodePlanId": 100113, + "nodeId": 2830401, + "weight": 2 + }, + { + "id": 5481, + "nodePlanId": 100113, + "nodeId": 2830501, + "weight": 1 + }, + { + "id": 5482, + "nodePlanId": 100113, + "nodeId": 2830601, + "weight": 1 + }, + { + "id": 5483, + "nodePlanId": 100113, + "nodeId": 5810101, + "weight": 3 + }, + { + "id": 5484, + "nodePlanId": 100113, + "nodeId": 6810101, + "weight": 2 + }, + { + "id": 5485, + "nodePlanId": 100114, + "nodeId": 4810101, + "weight": 1 + }, + { + "id": 5486, + "nodePlanId": 100115, + "nodeId": 7810101, + "weight": 1 + }, + { + "id": 5487, + "nodePlanId": 100201, + "nodeId": 1810102, + "weight": 1 + }, + { + "id": 5488, + "nodePlanId": 100201, + "nodeId": 1810202, + "weight": 1 + }, + { + "id": 5489, + "nodePlanId": 100201, + "nodeId": 1810302, + "weight": 1 + }, + { + "id": 5490, + "nodePlanId": 100201, + "nodeId": 1810402, + "weight": 1 + }, + { + "id": 5491, + "nodePlanId": 100201, + "nodeId": 1810502, + "weight": 1 + }, + { + "id": 5492, + "nodePlanId": 100201, + "nodeId": 1810602, + "weight": 1 + }, + { + "id": 5493, + "nodePlanId": 100201, + "nodeId": 1810702, + "weight": 1 + }, + { + "id": 5494, + "nodePlanId": 100201, + "nodeId": 1810802, + "weight": 1 + }, + { + "id": 5495, + "nodePlanId": 100202, + "nodeId": 1810102, + "weight": 1 + }, + { + "id": 5496, + "nodePlanId": 100202, + "nodeId": 1810202, + "weight": 1 + }, + { + "id": 5497, + "nodePlanId": 100202, + "nodeId": 1810302, + "weight": 1 + }, + { + "id": 5498, + "nodePlanId": 100202, + "nodeId": 1810402, + "weight": 1 + }, + { + "id": 5499, + "nodePlanId": 100202, + "nodeId": 1810502, + "weight": 1 + }, + { + "id": 5500, + "nodePlanId": 100202, + "nodeId": 1810602, + "weight": 1 + }, + { + "id": 5501, + "nodePlanId": 100202, + "nodeId": 1810702, + "weight": 1 + }, + { + "id": 5502, + "nodePlanId": 100202, + "nodeId": 1810802, + "weight": 1 + }, + { + "id": 5503, + "nodePlanId": 100203, + "nodeId": 1810102, + "weight": 1 + }, + { + "id": 5504, + "nodePlanId": 100203, + "nodeId": 1810202, + "weight": 1 + }, + { + "id": 5505, + "nodePlanId": 100203, + "nodeId": 1810302, + "weight": 1 + }, + { + "id": 5506, + "nodePlanId": 100203, + "nodeId": 1810402, + "weight": 1 + }, + { + "id": 5507, + "nodePlanId": 100203, + "nodeId": 1810502, + "weight": 1 + }, + { + "id": 5508, + "nodePlanId": 100203, + "nodeId": 1810602, + "weight": 1 + }, + { + "id": 5509, + "nodePlanId": 100203, + "nodeId": 1810702, + "weight": 1 + }, + { + "id": 5510, + "nodePlanId": 100203, + "nodeId": 1810802, + "weight": 1 + }, + { + "id": 5511, + "nodePlanId": 100203, + "nodeId": 2810102, + "weight": 4 + }, + { + "id": 5512, + "nodePlanId": 100203, + "nodeId": 2810202, + "weight": 4 + }, + { + "id": 5513, + "nodePlanId": 100203, + "nodeId": 6810102, + "weight": 8 + }, + { + "id": 5514, + "nodePlanId": 100204, + "nodeId": 2810302, + "weight": 1 + }, + { + "id": 5515, + "nodePlanId": 100204, + "nodeId": 2810402, + "weight": 1 + }, + { + "id": 5516, + "nodePlanId": 100204, + "nodeId": 2810502, + "weight": 1 + }, + { + "id": 5517, + "nodePlanId": 100204, + "nodeId": 2810602, + "weight": 1 + }, + { + "id": 5518, + "nodePlanId": 100205, + "nodeId": 5810102, + "weight": 1 + }, + { + "id": 5519, + "nodePlanId": 100206, + "nodeId": 1820102, + "weight": 1 + }, + { + "id": 5520, + "nodePlanId": 100206, + "nodeId": 1820202, + "weight": 1 + }, + { + "id": 5521, + "nodePlanId": 100206, + "nodeId": 1820302, + "weight": 1 + }, + { + "id": 5522, + "nodePlanId": 100206, + "nodeId": 1820402, + "weight": 1 + }, + { + "id": 5523, + "nodePlanId": 100206, + "nodeId": 1820502, + "weight": 1 + }, + { + "id": 5524, + "nodePlanId": 100206, + "nodeId": 1820602, + "weight": 1 + }, + { + "id": 5525, + "nodePlanId": 100206, + "nodeId": 1820702, + "weight": 1 + }, + { + "id": 5526, + "nodePlanId": 100206, + "nodeId": 1820802, + "weight": 1 + }, + { + "id": 5527, + "nodePlanId": 100206, + "nodeId": 2820102, + "weight": 2 + }, + { + "id": 5528, + "nodePlanId": 100206, + "nodeId": 2820202, + "weight": 2 + }, + { + "id": 5529, + "nodePlanId": 100206, + "nodeId": 2820302, + "weight": 1 + }, + { + "id": 5530, + "nodePlanId": 100206, + "nodeId": 2820402, + "weight": 1 + }, + { + "id": 5531, + "nodePlanId": 100206, + "nodeId": 2820502, + "weight": 1 + }, + { + "id": 5532, + "nodePlanId": 100206, + "nodeId": 2820602, + "weight": 1 + }, + { + "id": 5533, + "nodePlanId": 100206, + "nodeId": 4810102, + "weight": 3 + }, + { + "id": 5534, + "nodePlanId": 100206, + "nodeId": 6810102, + "weight": 3 + }, + { + "id": 5535, + "nodePlanId": 100207, + "nodeId": 1820102, + "weight": 1 + }, + { + "id": 5536, + "nodePlanId": 100207, + "nodeId": 1820202, + "weight": 1 + }, + { + "id": 5537, + "nodePlanId": 100207, + "nodeId": 1820302, + "weight": 1 + }, + { + "id": 5538, + "nodePlanId": 100207, + "nodeId": 1820402, + "weight": 1 + }, + { + "id": 5539, + "nodePlanId": 100207, + "nodeId": 1820502, + "weight": 1 + }, + { + "id": 5540, + "nodePlanId": 100207, + "nodeId": 1820602, + "weight": 1 + }, + { + "id": 5541, + "nodePlanId": 100207, + "nodeId": 1820702, + "weight": 1 + }, + { + "id": 5542, + "nodePlanId": 100207, + "nodeId": 1820802, + "weight": 1 + }, + { + "id": 5543, + "nodePlanId": 100207, + "nodeId": 2820102, + "weight": 1 + }, + { + "id": 5544, + "nodePlanId": 100207, + "nodeId": 2820202, + "weight": 1 + }, + { + "id": 5545, + "nodePlanId": 100207, + "nodeId": 2820302, + "weight": 2 + }, + { + "id": 5546, + "nodePlanId": 100207, + "nodeId": 2820402, + "weight": 2 + }, + { + "id": 5547, + "nodePlanId": 100207, + "nodeId": 2820502, + "weight": 1 + }, + { + "id": 5548, + "nodePlanId": 100207, + "nodeId": 2820602, + "weight": 1 + }, + { + "id": 5549, + "nodePlanId": 100207, + "nodeId": 5810102, + "weight": 3 + }, + { + "id": 5550, + "nodePlanId": 100208, + "nodeId": 1820102, + "weight": 1 + }, + { + "id": 5551, + "nodePlanId": 100208, + "nodeId": 1820202, + "weight": 1 + }, + { + "id": 5552, + "nodePlanId": 100208, + "nodeId": 1820302, + "weight": 1 + }, + { + "id": 5553, + "nodePlanId": 100208, + "nodeId": 1820402, + "weight": 1 + }, + { + "id": 5554, + "nodePlanId": 100208, + "nodeId": 1820502, + "weight": 1 + }, + { + "id": 5555, + "nodePlanId": 100208, + "nodeId": 1820602, + "weight": 1 + }, + { + "id": 5556, + "nodePlanId": 100208, + "nodeId": 1820702, + "weight": 1 + }, + { + "id": 5557, + "nodePlanId": 100208, + "nodeId": 1820802, + "weight": 1 + }, + { + "id": 5558, + "nodePlanId": 100208, + "nodeId": 2820102, + "weight": 1 + }, + { + "id": 5559, + "nodePlanId": 100208, + "nodeId": 2820202, + "weight": 1 + }, + { + "id": 5560, + "nodePlanId": 100208, + "nodeId": 2820302, + "weight": 1 + }, + { + "id": 5561, + "nodePlanId": 100208, + "nodeId": 2820402, + "weight": 1 + }, + { + "id": 5562, + "nodePlanId": 100208, + "nodeId": 2820502, + "weight": 2 + }, + { + "id": 5563, + "nodePlanId": 100208, + "nodeId": 2820602, + "weight": 2 + }, + { + "id": 5564, + "nodePlanId": 100208, + "nodeId": 5810102, + "weight": 3 + }, + { + "id": 5565, + "nodePlanId": 100208, + "nodeId": 6810102, + "weight": 3 + }, + { + "id": 5566, + "nodePlanId": 100209, + "nodeId": 3810102, + "weight": 1 + }, + { + "id": 5567, + "nodePlanId": 100210, + "nodeId": 1820102, + "weight": 1 + }, + { + "id": 5568, + "nodePlanId": 100210, + "nodeId": 1820202, + "weight": 1 + }, + { + "id": 5569, + "nodePlanId": 100210, + "nodeId": 1820302, + "weight": 1 + }, + { + "id": 5570, + "nodePlanId": 100210, + "nodeId": 1820402, + "weight": 1 + }, + { + "id": 5571, + "nodePlanId": 100210, + "nodeId": 1820502, + "weight": 1 + }, + { + "id": 5572, + "nodePlanId": 100210, + "nodeId": 1820602, + "weight": 1 + }, + { + "id": 5573, + "nodePlanId": 100210, + "nodeId": 1820702, + "weight": 1 + }, + { + "id": 5574, + "nodePlanId": 100210, + "nodeId": 1820802, + "weight": 1 + }, + { + "id": 5575, + "nodePlanId": 100210, + "nodeId": 2820102, + "weight": 1 + }, + { + "id": 5576, + "nodePlanId": 100210, + "nodeId": 2820202, + "weight": 1 + }, + { + "id": 5577, + "nodePlanId": 100210, + "nodeId": 2820302, + "weight": 1 + }, + { + "id": 5578, + "nodePlanId": 100210, + "nodeId": 2820402, + "weight": 1 + }, + { + "id": 5579, + "nodePlanId": 100210, + "nodeId": 2820502, + "weight": 2 + }, + { + "id": 5580, + "nodePlanId": 100210, + "nodeId": 2820602, + "weight": 2 + }, + { + "id": 5581, + "nodePlanId": 100210, + "nodeId": 5810102, + "weight": 3 + }, + { + "id": 5582, + "nodePlanId": 100210, + "nodeId": 6810102, + "weight": 3 + }, + { + "id": 5583, + "nodePlanId": 100211, + "nodeId": 1820102, + "weight": 1 + }, + { + "id": 5584, + "nodePlanId": 100211, + "nodeId": 1820202, + "weight": 1 + }, + { + "id": 5585, + "nodePlanId": 100211, + "nodeId": 1820302, + "weight": 1 + }, + { + "id": 5586, + "nodePlanId": 100211, + "nodeId": 1820402, + "weight": 1 + }, + { + "id": 5587, + "nodePlanId": 100211, + "nodeId": 1820502, + "weight": 1 + }, + { + "id": 5588, + "nodePlanId": 100211, + "nodeId": 1820602, + "weight": 1 + }, + { + "id": 5589, + "nodePlanId": 100211, + "nodeId": 1820702, + "weight": 1 + }, + { + "id": 5590, + "nodePlanId": 100211, + "nodeId": 1820802, + "weight": 1 + }, + { + "id": 5591, + "nodePlanId": 100211, + "nodeId": 2820102, + "weight": 1 + }, + { + "id": 5592, + "nodePlanId": 100211, + "nodeId": 2820202, + "weight": 1 + }, + { + "id": 5593, + "nodePlanId": 100211, + "nodeId": 2820302, + "weight": 1 + }, + { + "id": 5594, + "nodePlanId": 100211, + "nodeId": 2820402, + "weight": 1 + }, + { + "id": 5595, + "nodePlanId": 100211, + "nodeId": 2820502, + "weight": 2 + }, + { + "id": 5596, + "nodePlanId": 100211, + "nodeId": 2820602, + "weight": 2 + }, + { + "id": 5597, + "nodePlanId": 100211, + "nodeId": 4810102, + "weight": 2 + }, + { + "id": 5598, + "nodePlanId": 100211, + "nodeId": 6810102, + "weight": 2 + }, + { + "id": 5599, + "nodePlanId": 100211, + "nodeId": 6810102, + "weight": 2 + }, + { + "id": 5600, + "nodePlanId": 100212, + "nodeId": 1830102, + "weight": 1 + }, + { + "id": 5601, + "nodePlanId": 100212, + "nodeId": 1830202, + "weight": 1 + }, + { + "id": 5602, + "nodePlanId": 100212, + "nodeId": 1830302, + "weight": 1 + }, + { + "id": 5603, + "nodePlanId": 100212, + "nodeId": 1830402, + "weight": 1 + }, + { + "id": 5604, + "nodePlanId": 100212, + "nodeId": 1830502, + "weight": 1 + }, + { + "id": 5605, + "nodePlanId": 100212, + "nodeId": 2830102, + "weight": 1.5 + }, + { + "id": 5606, + "nodePlanId": 100212, + "nodeId": 2830202, + "weight": 1.5 + }, + { + "id": 5607, + "nodePlanId": 100212, + "nodeId": 2830302, + "weight": 1 + }, + { + "id": 5608, + "nodePlanId": 100212, + "nodeId": 2830402, + "weight": 1 + }, + { + "id": 5609, + "nodePlanId": 100212, + "nodeId": 2830502, + "weight": 1 + }, + { + "id": 5610, + "nodePlanId": 100212, + "nodeId": 2830602, + "weight": 1 + }, + { + "id": 5611, + "nodePlanId": 100213, + "nodeId": 1830602, + "weight": 1 + }, + { + "id": 5612, + "nodePlanId": 100213, + "nodeId": 1830702, + "weight": 1 + }, + { + "id": 5613, + "nodePlanId": 100213, + "nodeId": 1830802, + "weight": 1 + }, + { + "id": 5614, + "nodePlanId": 100213, + "nodeId": 2830102, + "weight": 1 + }, + { + "id": 5615, + "nodePlanId": 100213, + "nodeId": 2830202, + "weight": 1 + }, + { + "id": 5616, + "nodePlanId": 100213, + "nodeId": 2830302, + "weight": 2 + }, + { + "id": 5617, + "nodePlanId": 100213, + "nodeId": 2830402, + "weight": 2 + }, + { + "id": 5618, + "nodePlanId": 100213, + "nodeId": 2830502, + "weight": 1 + }, + { + "id": 5619, + "nodePlanId": 100213, + "nodeId": 2830602, + "weight": 1 + }, + { + "id": 5620, + "nodePlanId": 100213, + "nodeId": 5810102, + "weight": 3 + }, + { + "id": 5621, + "nodePlanId": 100213, + "nodeId": 6810102, + "weight": 2 + }, + { + "id": 5622, + "nodePlanId": 100214, + "nodeId": 4810102, + "weight": 1 + }, + { + "id": 5623, + "nodePlanId": 100215, + "nodeId": 7810102, + "weight": 1 + }, + { + "id": 5624, + "nodePlanId": 100301, + "nodeId": 1810103, + "weight": 1 + }, + { + "id": 5625, + "nodePlanId": 100301, + "nodeId": 1810203, + "weight": 1 + }, + { + "id": 5626, + "nodePlanId": 100301, + "nodeId": 1810303, + "weight": 1 + }, + { + "id": 5627, + "nodePlanId": 100301, + "nodeId": 1810403, + "weight": 1 + }, + { + "id": 5628, + "nodePlanId": 100301, + "nodeId": 1810503, + "weight": 1 + }, + { + "id": 5629, + "nodePlanId": 100301, + "nodeId": 1810603, + "weight": 1 + }, + { + "id": 5630, + "nodePlanId": 100301, + "nodeId": 1810703, + "weight": 1 + }, + { + "id": 5631, + "nodePlanId": 100301, + "nodeId": 1810803, + "weight": 1 + }, + { + "id": 5632, + "nodePlanId": 100302, + "nodeId": 1810103, + "weight": 1 + }, + { + "id": 5633, + "nodePlanId": 100302, + "nodeId": 1810203, + "weight": 1 + }, + { + "id": 5634, + "nodePlanId": 100302, + "nodeId": 1810303, + "weight": 1 + }, + { + "id": 5635, + "nodePlanId": 100302, + "nodeId": 1810403, + "weight": 1 + }, + { + "id": 5636, + "nodePlanId": 100302, + "nodeId": 1810503, + "weight": 1 + }, + { + "id": 5637, + "nodePlanId": 100302, + "nodeId": 1810603, + "weight": 1 + }, + { + "id": 5638, + "nodePlanId": 100302, + "nodeId": 1810703, + "weight": 1 + }, + { + "id": 5639, + "nodePlanId": 100302, + "nodeId": 1810803, + "weight": 1 + }, + { + "id": 5640, + "nodePlanId": 100303, + "nodeId": 1810103, + "weight": 1 + }, + { + "id": 5641, + "nodePlanId": 100303, + "nodeId": 1810203, + "weight": 1 + }, + { + "id": 5642, + "nodePlanId": 100303, + "nodeId": 1810303, + "weight": 1 + }, + { + "id": 5643, + "nodePlanId": 100303, + "nodeId": 1810403, + "weight": 1 + }, + { + "id": 5644, + "nodePlanId": 100303, + "nodeId": 1810503, + "weight": 1 + }, + { + "id": 5645, + "nodePlanId": 100303, + "nodeId": 1810603, + "weight": 1 + }, + { + "id": 5646, + "nodePlanId": 100303, + "nodeId": 1810703, + "weight": 1 + }, + { + "id": 5647, + "nodePlanId": 100303, + "nodeId": 1810803, + "weight": 1 + }, + { + "id": 5648, + "nodePlanId": 100303, + "nodeId": 2810103, + "weight": 4 + }, + { + "id": 5649, + "nodePlanId": 100303, + "nodeId": 2810203, + "weight": 4 + }, + { + "id": 5650, + "nodePlanId": 100303, + "nodeId": 6810103, + "weight": 8 + }, + { + "id": 5651, + "nodePlanId": 100304, + "nodeId": 2810303, + "weight": 1 + }, + { + "id": 5652, + "nodePlanId": 100304, + "nodeId": 2810403, + "weight": 1 + }, + { + "id": 5653, + "nodePlanId": 100304, + "nodeId": 2810503, + "weight": 1 + }, + { + "id": 5654, + "nodePlanId": 100304, + "nodeId": 2810603, + "weight": 1 + }, + { + "id": 5655, + "nodePlanId": 100305, + "nodeId": 5810103, + "weight": 1 + }, + { + "id": 5656, + "nodePlanId": 100306, + "nodeId": 1820103, + "weight": 1 + }, + { + "id": 5657, + "nodePlanId": 100306, + "nodeId": 1820203, + "weight": 1 + }, + { + "id": 5658, + "nodePlanId": 100306, + "nodeId": 1820303, + "weight": 1 + }, + { + "id": 5659, + "nodePlanId": 100306, + "nodeId": 1820403, + "weight": 1 + }, + { + "id": 5660, + "nodePlanId": 100306, + "nodeId": 1820503, + "weight": 1 + }, + { + "id": 5661, + "nodePlanId": 100306, + "nodeId": 1820603, + "weight": 1 + }, + { + "id": 5662, + "nodePlanId": 100306, + "nodeId": 1820703, + "weight": 1 + }, + { + "id": 5663, + "nodePlanId": 100306, + "nodeId": 1820803, + "weight": 1 + }, + { + "id": 5664, + "nodePlanId": 100306, + "nodeId": 2820103, + "weight": 2 + }, + { + "id": 5665, + "nodePlanId": 100306, + "nodeId": 2820203, + "weight": 2 + }, + { + "id": 5666, + "nodePlanId": 100306, + "nodeId": 2820303, + "weight": 1 + }, + { + "id": 5667, + "nodePlanId": 100306, + "nodeId": 2820403, + "weight": 1 + }, + { + "id": 5668, + "nodePlanId": 100306, + "nodeId": 2820503, + "weight": 1 + }, + { + "id": 5669, + "nodePlanId": 100306, + "nodeId": 2820603, + "weight": 1 + }, + { + "id": 5670, + "nodePlanId": 100306, + "nodeId": 4810103, + "weight": 3 + }, + { + "id": 5671, + "nodePlanId": 100306, + "nodeId": 6810103, + "weight": 3 + }, + { + "id": 5672, + "nodePlanId": 100307, + "nodeId": 1820103, + "weight": 1 + }, + { + "id": 5673, + "nodePlanId": 100307, + "nodeId": 1820203, + "weight": 1 + }, + { + "id": 5674, + "nodePlanId": 100307, + "nodeId": 1820303, + "weight": 1 + }, + { + "id": 5675, + "nodePlanId": 100307, + "nodeId": 1820403, + "weight": 1 + }, + { + "id": 5676, + "nodePlanId": 100307, + "nodeId": 1820503, + "weight": 1 + }, + { + "id": 5677, + "nodePlanId": 100307, + "nodeId": 1820603, + "weight": 1 + }, + { + "id": 5678, + "nodePlanId": 100307, + "nodeId": 1820703, + "weight": 1 + }, + { + "id": 5679, + "nodePlanId": 100307, + "nodeId": 1820803, + "weight": 1 + }, + { + "id": 5680, + "nodePlanId": 100307, + "nodeId": 2820103, + "weight": 1 + }, + { + "id": 5681, + "nodePlanId": 100307, + "nodeId": 2820203, + "weight": 1 + }, + { + "id": 5682, + "nodePlanId": 100307, + "nodeId": 2820303, + "weight": 2 + }, + { + "id": 5683, + "nodePlanId": 100307, + "nodeId": 2820403, + "weight": 2 + }, + { + "id": 5684, + "nodePlanId": 100307, + "nodeId": 2820503, + "weight": 1 + }, + { + "id": 5685, + "nodePlanId": 100307, + "nodeId": 2820603, + "weight": 1 + }, + { + "id": 5686, + "nodePlanId": 100307, + "nodeId": 5810103, + "weight": 3 + }, + { + "id": 5687, + "nodePlanId": 100308, + "nodeId": 1820103, + "weight": 1 + }, + { + "id": 5688, + "nodePlanId": 100308, + "nodeId": 1820203, + "weight": 1 + }, + { + "id": 5689, + "nodePlanId": 100308, + "nodeId": 1820303, + "weight": 1 + }, + { + "id": 5690, + "nodePlanId": 100308, + "nodeId": 1820403, + "weight": 1 + }, + { + "id": 5691, + "nodePlanId": 100308, + "nodeId": 1820503, + "weight": 1 + }, + { + "id": 5692, + "nodePlanId": 100308, + "nodeId": 1820603, + "weight": 1 + }, + { + "id": 5693, + "nodePlanId": 100308, + "nodeId": 1820703, + "weight": 1 + }, + { + "id": 5694, + "nodePlanId": 100308, + "nodeId": 1820803, + "weight": 1 + }, + { + "id": 5695, + "nodePlanId": 100308, + "nodeId": 2820103, + "weight": 1 + }, + { + "id": 5696, + "nodePlanId": 100308, + "nodeId": 2820203, + "weight": 1 + }, + { + "id": 5697, + "nodePlanId": 100308, + "nodeId": 2820303, + "weight": 1 + }, + { + "id": 5698, + "nodePlanId": 100308, + "nodeId": 2820403, + "weight": 1 + }, + { + "id": 5699, + "nodePlanId": 100308, + "nodeId": 2820503, + "weight": 2 + }, + { + "id": 5700, + "nodePlanId": 100308, + "nodeId": 2820603, + "weight": 2 + }, + { + "id": 5701, + "nodePlanId": 100308, + "nodeId": 5810103, + "weight": 3 + }, + { + "id": 5702, + "nodePlanId": 100308, + "nodeId": 6810103, + "weight": 3 + }, + { + "id": 5703, + "nodePlanId": 100309, + "nodeId": 3810103, + "weight": 1 + }, + { + "id": 5704, + "nodePlanId": 100310, + "nodeId": 1820103, + "weight": 1 + }, + { + "id": 5705, + "nodePlanId": 100310, + "nodeId": 1820203, + "weight": 1 + }, + { + "id": 5706, + "nodePlanId": 100310, + "nodeId": 1820303, + "weight": 1 + }, + { + "id": 5707, + "nodePlanId": 100310, + "nodeId": 1820403, + "weight": 1 + }, + { + "id": 5708, + "nodePlanId": 100310, + "nodeId": 1820503, + "weight": 1 + }, + { + "id": 5709, + "nodePlanId": 100310, + "nodeId": 1820603, + "weight": 1 + }, + { + "id": 5710, + "nodePlanId": 100310, + "nodeId": 1820703, + "weight": 1 + }, + { + "id": 5711, + "nodePlanId": 100310, + "nodeId": 1820803, + "weight": 1 + }, + { + "id": 5712, + "nodePlanId": 100310, + "nodeId": 2820103, + "weight": 1 + }, + { + "id": 5713, + "nodePlanId": 100310, + "nodeId": 2820203, + "weight": 1 + }, + { + "id": 5714, + "nodePlanId": 100310, + "nodeId": 2820303, + "weight": 1 + }, + { + "id": 5715, + "nodePlanId": 100310, + "nodeId": 2820403, + "weight": 1 + }, + { + "id": 5716, + "nodePlanId": 100310, + "nodeId": 2820503, + "weight": 2 + }, + { + "id": 5717, + "nodePlanId": 100310, + "nodeId": 2820603, + "weight": 2 + }, + { + "id": 5718, + "nodePlanId": 100310, + "nodeId": 5810103, + "weight": 3 + }, + { + "id": 5719, + "nodePlanId": 100310, + "nodeId": 6810103, + "weight": 3 + }, + { + "id": 5720, + "nodePlanId": 100311, + "nodeId": 1820103, + "weight": 1 + }, + { + "id": 5721, + "nodePlanId": 100311, + "nodeId": 1820203, + "weight": 1 + }, + { + "id": 5722, + "nodePlanId": 100311, + "nodeId": 1820303, + "weight": 1 + }, + { + "id": 5723, + "nodePlanId": 100311, + "nodeId": 1820403, + "weight": 1 + }, + { + "id": 5724, + "nodePlanId": 100311, + "nodeId": 1820503, + "weight": 1 + }, + { + "id": 5725, + "nodePlanId": 100311, + "nodeId": 1820603, + "weight": 1 + }, + { + "id": 5726, + "nodePlanId": 100311, + "nodeId": 1820703, + "weight": 1 + }, + { + "id": 5727, + "nodePlanId": 100311, + "nodeId": 1820803, + "weight": 1 + }, + { + "id": 5728, + "nodePlanId": 100311, + "nodeId": 2820103, + "weight": 1 + }, + { + "id": 5729, + "nodePlanId": 100311, + "nodeId": 2820203, + "weight": 1 + }, + { + "id": 5730, + "nodePlanId": 100311, + "nodeId": 2820303, + "weight": 1 + }, + { + "id": 5731, + "nodePlanId": 100311, + "nodeId": 2820403, + "weight": 1 + }, + { + "id": 5732, + "nodePlanId": 100311, + "nodeId": 2820503, + "weight": 2 + }, + { + "id": 5733, + "nodePlanId": 100311, + "nodeId": 2820603, + "weight": 2 + }, + { + "id": 5734, + "nodePlanId": 100311, + "nodeId": 4810103, + "weight": 2 + }, + { + "id": 5735, + "nodePlanId": 100311, + "nodeId": 6810103, + "weight": 2 + }, + { + "id": 5736, + "nodePlanId": 100311, + "nodeId": 6810103, + "weight": 2 + }, + { + "id": 5737, + "nodePlanId": 100312, + "nodeId": 1830103, + "weight": 1 + }, + { + "id": 5738, + "nodePlanId": 100312, + "nodeId": 1830203, + "weight": 1 + }, + { + "id": 5739, + "nodePlanId": 100312, + "nodeId": 1830303, + "weight": 1 + }, + { + "id": 5740, + "nodePlanId": 100312, + "nodeId": 1830403, + "weight": 1 + }, + { + "id": 5741, + "nodePlanId": 100312, + "nodeId": 1830503, + "weight": 1 + }, + { + "id": 5742, + "nodePlanId": 100312, + "nodeId": 2830103, + "weight": 1.5 + }, + { + "id": 5743, + "nodePlanId": 100312, + "nodeId": 2830203, + "weight": 1.5 + }, + { + "id": 5744, + "nodePlanId": 100312, + "nodeId": 2830303, + "weight": 1 + }, + { + "id": 5745, + "nodePlanId": 100312, + "nodeId": 2830403, + "weight": 1 + }, + { + "id": 5746, + "nodePlanId": 100312, + "nodeId": 2830503, + "weight": 1 + }, + { + "id": 5747, + "nodePlanId": 100312, + "nodeId": 2830603, + "weight": 1 + }, + { + "id": 5748, + "nodePlanId": 100313, + "nodeId": 1830603, + "weight": 1 + }, + { + "id": 5749, + "nodePlanId": 100313, + "nodeId": 1830703, + "weight": 1 + }, + { + "id": 5750, + "nodePlanId": 100313, + "nodeId": 1830803, + "weight": 1 + }, + { + "id": 5751, + "nodePlanId": 100313, + "nodeId": 2830103, + "weight": 1 + }, + { + "id": 5752, + "nodePlanId": 100313, + "nodeId": 2830203, + "weight": 1 + }, + { + "id": 5753, + "nodePlanId": 100313, + "nodeId": 2830303, + "weight": 2 + }, + { + "id": 5754, + "nodePlanId": 100313, + "nodeId": 2830403, + "weight": 2 + }, + { + "id": 5755, + "nodePlanId": 100313, + "nodeId": 2830503, + "weight": 1 + }, + { + "id": 5756, + "nodePlanId": 100313, + "nodeId": 2830603, + "weight": 1 + }, + { + "id": 5757, + "nodePlanId": 100313, + "nodeId": 5810103, + "weight": 3 + }, + { + "id": 5758, + "nodePlanId": 100313, + "nodeId": 6810103, + "weight": 2 + }, + { + "id": 5759, + "nodePlanId": 100314, + "nodeId": 4810103, + "weight": 1 + }, + { + "id": 5760, + "nodePlanId": 100315, + "nodeId": 7810103, + "weight": 1 + }, + { + "id": 5761, + "nodePlanId": 100401, + "nodeId": 1810104, + "weight": 1 + }, + { + "id": 5762, + "nodePlanId": 100401, + "nodeId": 1810204, + "weight": 1 + }, + { + "id": 5763, + "nodePlanId": 100401, + "nodeId": 1810304, + "weight": 1 + }, + { + "id": 5764, + "nodePlanId": 100401, + "nodeId": 1810404, + "weight": 1 + }, + { + "id": 5765, + "nodePlanId": 100401, + "nodeId": 1810504, + "weight": 1 + }, + { + "id": 5766, + "nodePlanId": 100401, + "nodeId": 1810604, + "weight": 1 + }, + { + "id": 5767, + "nodePlanId": 100401, + "nodeId": 1810704, + "weight": 1 + }, + { + "id": 5768, + "nodePlanId": 100401, + "nodeId": 1810804, + "weight": 1 + }, + { + "id": 5769, + "nodePlanId": 100402, + "nodeId": 1810104, + "weight": 1 + }, + { + "id": 5770, + "nodePlanId": 100402, + "nodeId": 1810204, + "weight": 1 + }, + { + "id": 5771, + "nodePlanId": 100402, + "nodeId": 1810304, + "weight": 1 + }, + { + "id": 5772, + "nodePlanId": 100402, + "nodeId": 1810404, + "weight": 1 + }, + { + "id": 5773, + "nodePlanId": 100402, + "nodeId": 1810504, + "weight": 1 + }, + { + "id": 5774, + "nodePlanId": 100402, + "nodeId": 1810604, + "weight": 1 + }, + { + "id": 5775, + "nodePlanId": 100402, + "nodeId": 1810704, + "weight": 1 + }, + { + "id": 5776, + "nodePlanId": 100402, + "nodeId": 1810804, + "weight": 1 + }, + { + "id": 5777, + "nodePlanId": 100403, + "nodeId": 1810104, + "weight": 1 + }, + { + "id": 5778, + "nodePlanId": 100403, + "nodeId": 1810204, + "weight": 1 + }, + { + "id": 5779, + "nodePlanId": 100403, + "nodeId": 1810304, + "weight": 1 + }, + { + "id": 5780, + "nodePlanId": 100403, + "nodeId": 1810404, + "weight": 1 + }, + { + "id": 5781, + "nodePlanId": 100403, + "nodeId": 1810504, + "weight": 1 + }, + { + "id": 5782, + "nodePlanId": 100403, + "nodeId": 1810604, + "weight": 1 + }, + { + "id": 5783, + "nodePlanId": 100403, + "nodeId": 1810704, + "weight": 1 + }, + { + "id": 5784, + "nodePlanId": 100403, + "nodeId": 1810804, + "weight": 1 + }, + { + "id": 5785, + "nodePlanId": 100403, + "nodeId": 2810104, + "weight": 4 + }, + { + "id": 5786, + "nodePlanId": 100403, + "nodeId": 2810204, + "weight": 4 + }, + { + "id": 5787, + "nodePlanId": 100403, + "nodeId": 6810104, + "weight": 8 + }, + { + "id": 5788, + "nodePlanId": 100404, + "nodeId": 2810304, + "weight": 1 + }, + { + "id": 5789, + "nodePlanId": 100404, + "nodeId": 2810404, + "weight": 1 + }, + { + "id": 5790, + "nodePlanId": 100404, + "nodeId": 2810504, + "weight": 1 + }, + { + "id": 5791, + "nodePlanId": 100404, + "nodeId": 2810604, + "weight": 1 + }, + { + "id": 5792, + "nodePlanId": 100405, + "nodeId": 5810104, + "weight": 1 + }, + { + "id": 5793, + "nodePlanId": 100406, + "nodeId": 1820104, + "weight": 1 + }, + { + "id": 5794, + "nodePlanId": 100406, + "nodeId": 1820204, + "weight": 1 + }, + { + "id": 5795, + "nodePlanId": 100406, + "nodeId": 1820304, + "weight": 1 + }, + { + "id": 5796, + "nodePlanId": 100406, + "nodeId": 1820404, + "weight": 1 + }, + { + "id": 5797, + "nodePlanId": 100406, + "nodeId": 1820504, + "weight": 1 + }, + { + "id": 5798, + "nodePlanId": 100406, + "nodeId": 1820604, + "weight": 1 + }, + { + "id": 5799, + "nodePlanId": 100406, + "nodeId": 1820704, + "weight": 1 + }, + { + "id": 5800, + "nodePlanId": 100406, + "nodeId": 1820804, + "weight": 1 + }, + { + "id": 5801, + "nodePlanId": 100406, + "nodeId": 2820104, + "weight": 2 + }, + { + "id": 5802, + "nodePlanId": 100406, + "nodeId": 2820204, + "weight": 2 + }, + { + "id": 5803, + "nodePlanId": 100406, + "nodeId": 2820304, + "weight": 1 + }, + { + "id": 5804, + "nodePlanId": 100406, + "nodeId": 2820404, + "weight": 1 + }, + { + "id": 5805, + "nodePlanId": 100406, + "nodeId": 2820504, + "weight": 1 + }, + { + "id": 5806, + "nodePlanId": 100406, + "nodeId": 2820604, + "weight": 1 + }, + { + "id": 5807, + "nodePlanId": 100406, + "nodeId": 4810104, + "weight": 3 + }, + { + "id": 5808, + "nodePlanId": 100406, + "nodeId": 6810104, + "weight": 3 + }, + { + "id": 5809, + "nodePlanId": 100407, + "nodeId": 1820104, + "weight": 1 + }, + { + "id": 5810, + "nodePlanId": 100407, + "nodeId": 1820204, + "weight": 1 + }, + { + "id": 5811, + "nodePlanId": 100407, + "nodeId": 1820304, + "weight": 1 + }, + { + "id": 5812, + "nodePlanId": 100407, + "nodeId": 1820404, + "weight": 1 + }, + { + "id": 5813, + "nodePlanId": 100407, + "nodeId": 1820504, + "weight": 1 + }, + { + "id": 5814, + "nodePlanId": 100407, + "nodeId": 1820604, + "weight": 1 + }, + { + "id": 5815, + "nodePlanId": 100407, + "nodeId": 1820704, + "weight": 1 + }, + { + "id": 5816, + "nodePlanId": 100407, + "nodeId": 1820804, + "weight": 1 + }, + { + "id": 5817, + "nodePlanId": 100407, + "nodeId": 2820104, + "weight": 1 + }, + { + "id": 5818, + "nodePlanId": 100407, + "nodeId": 2820204, + "weight": 1 + }, + { + "id": 5819, + "nodePlanId": 100407, + "nodeId": 2820304, + "weight": 2 + }, + { + "id": 5820, + "nodePlanId": 100407, + "nodeId": 2820404, + "weight": 2 + }, + { + "id": 5821, + "nodePlanId": 100407, + "nodeId": 2820504, + "weight": 1 + }, + { + "id": 5822, + "nodePlanId": 100407, + "nodeId": 2820604, + "weight": 1 + }, + { + "id": 5823, + "nodePlanId": 100407, + "nodeId": 5810104, + "weight": 3 + }, + { + "id": 5824, + "nodePlanId": 100408, + "nodeId": 1820104, + "weight": 1 + }, + { + "id": 5825, + "nodePlanId": 100408, + "nodeId": 1820204, + "weight": 1 + }, + { + "id": 5826, + "nodePlanId": 100408, + "nodeId": 1820304, + "weight": 1 + }, + { + "id": 5827, + "nodePlanId": 100408, + "nodeId": 1820404, + "weight": 1 + }, + { + "id": 5828, + "nodePlanId": 100408, + "nodeId": 1820504, + "weight": 1 + }, + { + "id": 5829, + "nodePlanId": 100408, + "nodeId": 1820604, + "weight": 1 + }, + { + "id": 5830, + "nodePlanId": 100408, + "nodeId": 1820704, + "weight": 1 + }, + { + "id": 5831, + "nodePlanId": 100408, + "nodeId": 1820804, + "weight": 1 + }, + { + "id": 5832, + "nodePlanId": 100408, + "nodeId": 2820104, + "weight": 1 + }, + { + "id": 5833, + "nodePlanId": 100408, + "nodeId": 2820204, + "weight": 1 + }, + { + "id": 5834, + "nodePlanId": 100408, + "nodeId": 2820304, + "weight": 1 + }, + { + "id": 5835, + "nodePlanId": 100408, + "nodeId": 2820404, + "weight": 1 + }, + { + "id": 5836, + "nodePlanId": 100408, + "nodeId": 2820504, + "weight": 2 + }, + { + "id": 5837, + "nodePlanId": 100408, + "nodeId": 2820604, + "weight": 2 + }, + { + "id": 5838, + "nodePlanId": 100408, + "nodeId": 5810104, + "weight": 3 + }, + { + "id": 5839, + "nodePlanId": 100408, + "nodeId": 6810104, + "weight": 3 + }, + { + "id": 5840, + "nodePlanId": 100409, + "nodeId": 3810104, + "weight": 1 + }, + { + "id": 5841, + "nodePlanId": 100410, + "nodeId": 1820104, + "weight": 1 + }, + { + "id": 5842, + "nodePlanId": 100410, + "nodeId": 1820204, + "weight": 1 + }, + { + "id": 5843, + "nodePlanId": 100410, + "nodeId": 1820304, + "weight": 1 + }, + { + "id": 5844, + "nodePlanId": 100410, + "nodeId": 1820404, + "weight": 1 + }, + { + "id": 5845, + "nodePlanId": 100410, + "nodeId": 1820504, + "weight": 1 + }, + { + "id": 5846, + "nodePlanId": 100410, + "nodeId": 1820604, + "weight": 1 + }, + { + "id": 5847, + "nodePlanId": 100410, + "nodeId": 1820704, + "weight": 1 + }, + { + "id": 5848, + "nodePlanId": 100410, + "nodeId": 1820804, + "weight": 1 + }, + { + "id": 5849, + "nodePlanId": 100410, + "nodeId": 2820104, + "weight": 1 + }, + { + "id": 5850, + "nodePlanId": 100410, + "nodeId": 2820204, + "weight": 1 + }, + { + "id": 5851, + "nodePlanId": 100410, + "nodeId": 2820304, + "weight": 1 + }, + { + "id": 5852, + "nodePlanId": 100410, + "nodeId": 2820404, + "weight": 1 + }, + { + "id": 5853, + "nodePlanId": 100410, + "nodeId": 2820504, + "weight": 2 + }, + { + "id": 5854, + "nodePlanId": 100410, + "nodeId": 2820604, + "weight": 2 + }, + { + "id": 5855, + "nodePlanId": 100410, + "nodeId": 5810104, + "weight": 3 + }, + { + "id": 5856, + "nodePlanId": 100410, + "nodeId": 6810104, + "weight": 3 + }, + { + "id": 5857, + "nodePlanId": 100411, + "nodeId": 1820104, + "weight": 1 + }, + { + "id": 5858, + "nodePlanId": 100411, + "nodeId": 1820204, + "weight": 1 + }, + { + "id": 5859, + "nodePlanId": 100411, + "nodeId": 1820304, + "weight": 1 + }, + { + "id": 5860, + "nodePlanId": 100411, + "nodeId": 1820404, + "weight": 1 + }, + { + "id": 5861, + "nodePlanId": 100411, + "nodeId": 1820504, + "weight": 1 + }, + { + "id": 5862, + "nodePlanId": 100411, + "nodeId": 1820604, + "weight": 1 + }, + { + "id": 5863, + "nodePlanId": 100411, + "nodeId": 1820704, + "weight": 1 + }, + { + "id": 5864, + "nodePlanId": 100411, + "nodeId": 1820804, + "weight": 1 + }, + { + "id": 5865, + "nodePlanId": 100411, + "nodeId": 2820104, + "weight": 1 + }, + { + "id": 5866, + "nodePlanId": 100411, + "nodeId": 2820204, + "weight": 1 + }, + { + "id": 5867, + "nodePlanId": 100411, + "nodeId": 2820304, + "weight": 1 + }, + { + "id": 5868, + "nodePlanId": 100411, + "nodeId": 2820404, + "weight": 1 + }, + { + "id": 5869, + "nodePlanId": 100411, + "nodeId": 2820504, + "weight": 2 + }, + { + "id": 5870, + "nodePlanId": 100411, + "nodeId": 2820604, + "weight": 2 + }, + { + "id": 5871, + "nodePlanId": 100411, + "nodeId": 4810104, + "weight": 2 + }, + { + "id": 5872, + "nodePlanId": 100411, + "nodeId": 6810104, + "weight": 2 + }, + { + "id": 5873, + "nodePlanId": 100411, + "nodeId": 6810104, + "weight": 2 + }, + { + "id": 5874, + "nodePlanId": 100412, + "nodeId": 1830104, + "weight": 1 + }, + { + "id": 5875, + "nodePlanId": 100412, + "nodeId": 1830204, + "weight": 1 + }, + { + "id": 5876, + "nodePlanId": 100412, + "nodeId": 1830304, + "weight": 1 + }, + { + "id": 5877, + "nodePlanId": 100412, + "nodeId": 1830404, + "weight": 1 + }, + { + "id": 5878, + "nodePlanId": 100412, + "nodeId": 1830504, + "weight": 1 + }, + { + "id": 5879, + "nodePlanId": 100412, + "nodeId": 2830104, + "weight": 1.5 + }, + { + "id": 5880, + "nodePlanId": 100412, + "nodeId": 2830204, + "weight": 1.5 + }, + { + "id": 5881, + "nodePlanId": 100412, + "nodeId": 2830304, + "weight": 1 + }, + { + "id": 5882, + "nodePlanId": 100412, + "nodeId": 2830404, + "weight": 1 + }, + { + "id": 5883, + "nodePlanId": 100412, + "nodeId": 2830504, + "weight": 1 + }, + { + "id": 5884, + "nodePlanId": 100412, + "nodeId": 2830604, + "weight": 1 + }, + { + "id": 5885, + "nodePlanId": 100413, + "nodeId": 1830604, + "weight": 1 + }, + { + "id": 5886, + "nodePlanId": 100413, + "nodeId": 1830704, + "weight": 1 + }, + { + "id": 5887, + "nodePlanId": 100413, + "nodeId": 1830804, + "weight": 1 + }, + { + "id": 5888, + "nodePlanId": 100413, + "nodeId": 2830104, + "weight": 1 + }, + { + "id": 5889, + "nodePlanId": 100413, + "nodeId": 2830204, + "weight": 1 + }, + { + "id": 5890, + "nodePlanId": 100413, + "nodeId": 2830304, + "weight": 2 + }, + { + "id": 5891, + "nodePlanId": 100413, + "nodeId": 2830404, + "weight": 2 + }, + { + "id": 5892, + "nodePlanId": 100413, + "nodeId": 2830504, + "weight": 1 + }, + { + "id": 5893, + "nodePlanId": 100413, + "nodeId": 2830604, + "weight": 1 + }, + { + "id": 5894, + "nodePlanId": 100413, + "nodeId": 5810104, + "weight": 3 + }, + { + "id": 5895, + "nodePlanId": 100413, + "nodeId": 6810104, + "weight": 2 + }, + { + "id": 5896, + "nodePlanId": 100414, + "nodeId": 4810104, + "weight": 1 + }, + { + "id": 5897, + "nodePlanId": 100415, + "nodeId": 7810104, + "weight": 1 + }, + { + "id": 5898, + "nodePlanId": 100501, + "nodeId": 1810105, + "weight": 1 + }, + { + "id": 5899, + "nodePlanId": 100501, + "nodeId": 1810205, + "weight": 1 + }, + { + "id": 5900, + "nodePlanId": 100501, + "nodeId": 1810305, + "weight": 1 + }, + { + "id": 5901, + "nodePlanId": 100501, + "nodeId": 1810405, + "weight": 1 + }, + { + "id": 5902, + "nodePlanId": 100501, + "nodeId": 1810505, + "weight": 1 + }, + { + "id": 5903, + "nodePlanId": 100501, + "nodeId": 1810605, + "weight": 1 + }, + { + "id": 5904, + "nodePlanId": 100501, + "nodeId": 1810705, + "weight": 1 + }, + { + "id": 5905, + "nodePlanId": 100501, + "nodeId": 1810805, + "weight": 1 + }, + { + "id": 5906, + "nodePlanId": 100502, + "nodeId": 1810105, + "weight": 1 + }, + { + "id": 5907, + "nodePlanId": 100502, + "nodeId": 1810205, + "weight": 1 + }, + { + "id": 5908, + "nodePlanId": 100502, + "nodeId": 1810305, + "weight": 1 + }, + { + "id": 5909, + "nodePlanId": 100502, + "nodeId": 1810405, + "weight": 1 + }, + { + "id": 5910, + "nodePlanId": 100502, + "nodeId": 1810505, + "weight": 1 + }, + { + "id": 5911, + "nodePlanId": 100502, + "nodeId": 1810605, + "weight": 1 + }, + { + "id": 5912, + "nodePlanId": 100502, + "nodeId": 1810705, + "weight": 1 + }, + { + "id": 5913, + "nodePlanId": 100502, + "nodeId": 1810805, + "weight": 1 + }, + { + "id": 5914, + "nodePlanId": 100503, + "nodeId": 1810105, + "weight": 1 + }, + { + "id": 5915, + "nodePlanId": 100503, + "nodeId": 1810205, + "weight": 1 + }, + { + "id": 5916, + "nodePlanId": 100503, + "nodeId": 1810305, + "weight": 1 + }, + { + "id": 5917, + "nodePlanId": 100503, + "nodeId": 1810405, + "weight": 1 + }, + { + "id": 5918, + "nodePlanId": 100503, + "nodeId": 1810505, + "weight": 1 + }, + { + "id": 5919, + "nodePlanId": 100503, + "nodeId": 1810605, + "weight": 1 + }, + { + "id": 5920, + "nodePlanId": 100503, + "nodeId": 1810705, + "weight": 1 + }, + { + "id": 5921, + "nodePlanId": 100503, + "nodeId": 1810805, + "weight": 1 + }, + { + "id": 5922, + "nodePlanId": 100503, + "nodeId": 2810105, + "weight": 4 + }, + { + "id": 5923, + "nodePlanId": 100503, + "nodeId": 2810205, + "weight": 4 + }, + { + "id": 5924, + "nodePlanId": 100503, + "nodeId": 6810105, + "weight": 8 + }, + { + "id": 5925, + "nodePlanId": 100504, + "nodeId": 2810305, + "weight": 1 + }, + { + "id": 5926, + "nodePlanId": 100504, + "nodeId": 2810405, + "weight": 1 + }, + { + "id": 5927, + "nodePlanId": 100504, + "nodeId": 2810505, + "weight": 1 + }, + { + "id": 5928, + "nodePlanId": 100504, + "nodeId": 2810605, + "weight": 1 + }, + { + "id": 5929, + "nodePlanId": 100505, + "nodeId": 5810105, + "weight": 1 + }, + { + "id": 5930, + "nodePlanId": 100506, + "nodeId": 1820105, + "weight": 1 + }, + { + "id": 5931, + "nodePlanId": 100506, + "nodeId": 1820205, + "weight": 1 + }, + { + "id": 5932, + "nodePlanId": 100506, + "nodeId": 1820305, + "weight": 1 + }, + { + "id": 5933, + "nodePlanId": 100506, + "nodeId": 1820405, + "weight": 1 + }, + { + "id": 5934, + "nodePlanId": 100506, + "nodeId": 1820505, + "weight": 1 + }, + { + "id": 5935, + "nodePlanId": 100506, + "nodeId": 1820605, + "weight": 1 + }, + { + "id": 5936, + "nodePlanId": 100506, + "nodeId": 1820705, + "weight": 1 + }, + { + "id": 5937, + "nodePlanId": 100506, + "nodeId": 1820805, + "weight": 1 + }, + { + "id": 5938, + "nodePlanId": 100506, + "nodeId": 2820105, + "weight": 2 + }, + { + "id": 5939, + "nodePlanId": 100506, + "nodeId": 2820205, + "weight": 2 + }, + { + "id": 5940, + "nodePlanId": 100506, + "nodeId": 2820305, + "weight": 1 + }, + { + "id": 5941, + "nodePlanId": 100506, + "nodeId": 2820405, + "weight": 1 + }, + { + "id": 5942, + "nodePlanId": 100506, + "nodeId": 2820505, + "weight": 1 + }, + { + "id": 5943, + "nodePlanId": 100506, + "nodeId": 2820605, + "weight": 1 + }, + { + "id": 5944, + "nodePlanId": 100506, + "nodeId": 4810105, + "weight": 3 + }, + { + "id": 5945, + "nodePlanId": 100506, + "nodeId": 6810105, + "weight": 3 + }, + { + "id": 5946, + "nodePlanId": 100507, + "nodeId": 1820105, + "weight": 1 + }, + { + "id": 5947, + "nodePlanId": 100507, + "nodeId": 1820205, + "weight": 1 + }, + { + "id": 5948, + "nodePlanId": 100507, + "nodeId": 1820305, + "weight": 1 + }, + { + "id": 5949, + "nodePlanId": 100507, + "nodeId": 1820405, + "weight": 1 + }, + { + "id": 5950, + "nodePlanId": 100507, + "nodeId": 1820505, + "weight": 1 + }, + { + "id": 5951, + "nodePlanId": 100507, + "nodeId": 1820605, + "weight": 1 + }, + { + "id": 5952, + "nodePlanId": 100507, + "nodeId": 1820705, + "weight": 1 + }, + { + "id": 5953, + "nodePlanId": 100507, + "nodeId": 1820805, + "weight": 1 + }, + { + "id": 5954, + "nodePlanId": 100507, + "nodeId": 2820105, + "weight": 1 + }, + { + "id": 5955, + "nodePlanId": 100507, + "nodeId": 2820205, + "weight": 1 + }, + { + "id": 5956, + "nodePlanId": 100507, + "nodeId": 2820305, + "weight": 2 + }, + { + "id": 5957, + "nodePlanId": 100507, + "nodeId": 2820405, + "weight": 2 + }, + { + "id": 5958, + "nodePlanId": 100507, + "nodeId": 2820505, + "weight": 1 + }, + { + "id": 5959, + "nodePlanId": 100507, + "nodeId": 2820605, + "weight": 1 + }, + { + "id": 5960, + "nodePlanId": 100507, + "nodeId": 5810105, + "weight": 3 + }, + { + "id": 5961, + "nodePlanId": 100508, + "nodeId": 1820105, + "weight": 1 + }, + { + "id": 5962, + "nodePlanId": 100508, + "nodeId": 1820205, + "weight": 1 + }, + { + "id": 5963, + "nodePlanId": 100508, + "nodeId": 1820305, + "weight": 1 + }, + { + "id": 5964, + "nodePlanId": 100508, + "nodeId": 1820405, + "weight": 1 + }, + { + "id": 5965, + "nodePlanId": 100508, + "nodeId": 1820505, + "weight": 1 + }, + { + "id": 5966, + "nodePlanId": 100508, + "nodeId": 1820605, + "weight": 1 + }, + { + "id": 5967, + "nodePlanId": 100508, + "nodeId": 1820705, + "weight": 1 + }, + { + "id": 5968, + "nodePlanId": 100508, + "nodeId": 1820805, + "weight": 1 + }, + { + "id": 5969, + "nodePlanId": 100508, + "nodeId": 2820105, + "weight": 1 + }, + { + "id": 5970, + "nodePlanId": 100508, + "nodeId": 2820205, + "weight": 1 + }, + { + "id": 5971, + "nodePlanId": 100508, + "nodeId": 2820305, + "weight": 1 + }, + { + "id": 5972, + "nodePlanId": 100508, + "nodeId": 2820405, + "weight": 1 + }, + { + "id": 5973, + "nodePlanId": 100508, + "nodeId": 2820505, + "weight": 2 + }, + { + "id": 5974, + "nodePlanId": 100508, + "nodeId": 2820605, + "weight": 2 + }, + { + "id": 5975, + "nodePlanId": 100508, + "nodeId": 5810105, + "weight": 3 + }, + { + "id": 5976, + "nodePlanId": 100508, + "nodeId": 6810105, + "weight": 3 + }, + { + "id": 5977, + "nodePlanId": 100509, + "nodeId": 3810105, + "weight": 1 + }, + { + "id": 5978, + "nodePlanId": 100510, + "nodeId": 1820105, + "weight": 1 + }, + { + "id": 5979, + "nodePlanId": 100510, + "nodeId": 1820205, + "weight": 1 + }, + { + "id": 5980, + "nodePlanId": 100510, + "nodeId": 1820305, + "weight": 1 + }, + { + "id": 5981, + "nodePlanId": 100510, + "nodeId": 1820405, + "weight": 1 + }, + { + "id": 5982, + "nodePlanId": 100510, + "nodeId": 1820505, + "weight": 1 + }, + { + "id": 5983, + "nodePlanId": 100510, + "nodeId": 1820605, + "weight": 1 + }, + { + "id": 5984, + "nodePlanId": 100510, + "nodeId": 1820705, + "weight": 1 + }, + { + "id": 5985, + "nodePlanId": 100510, + "nodeId": 1820805, + "weight": 1 + }, + { + "id": 5986, + "nodePlanId": 100510, + "nodeId": 2820105, + "weight": 1 + }, + { + "id": 5987, + "nodePlanId": 100510, + "nodeId": 2820205, + "weight": 1 + }, + { + "id": 5988, + "nodePlanId": 100510, + "nodeId": 2820305, + "weight": 1 + }, + { + "id": 5989, + "nodePlanId": 100510, + "nodeId": 2820405, + "weight": 1 + }, + { + "id": 5990, + "nodePlanId": 100510, + "nodeId": 2820505, + "weight": 2 + }, + { + "id": 5991, + "nodePlanId": 100510, + "nodeId": 2820605, + "weight": 2 + }, + { + "id": 5992, + "nodePlanId": 100510, + "nodeId": 5810105, + "weight": 3 + }, + { + "id": 5993, + "nodePlanId": 100510, + "nodeId": 6810105, + "weight": 3 + }, + { + "id": 5994, + "nodePlanId": 100511, + "nodeId": 1820105, + "weight": 1 + }, + { + "id": 5995, + "nodePlanId": 100511, + "nodeId": 1820205, + "weight": 1 + }, + { + "id": 5996, + "nodePlanId": 100511, + "nodeId": 1820305, + "weight": 1 + }, + { + "id": 5997, + "nodePlanId": 100511, + "nodeId": 1820405, + "weight": 1 + }, + { + "id": 5998, + "nodePlanId": 100511, + "nodeId": 1820505, + "weight": 1 + }, + { + "id": 5999, + "nodePlanId": 100511, + "nodeId": 1820605, + "weight": 1 + }, + { + "id": 6000, + "nodePlanId": 100511, + "nodeId": 1820705, + "weight": 1 + }, + { + "id": 6001, + "nodePlanId": 100511, + "nodeId": 1820805, + "weight": 1 + }, + { + "id": 6002, + "nodePlanId": 100511, + "nodeId": 2820105, + "weight": 1 + }, + { + "id": 6003, + "nodePlanId": 100511, + "nodeId": 2820205, + "weight": 1 + }, + { + "id": 6004, + "nodePlanId": 100511, + "nodeId": 2820305, + "weight": 1 + }, + { + "id": 6005, + "nodePlanId": 100511, + "nodeId": 2820405, + "weight": 1 + }, + { + "id": 6006, + "nodePlanId": 100511, + "nodeId": 2820505, + "weight": 2 + }, + { + "id": 6007, + "nodePlanId": 100511, + "nodeId": 2820605, + "weight": 2 + }, + { + "id": 6008, + "nodePlanId": 100511, + "nodeId": 4810105, + "weight": 2 + }, + { + "id": 6009, + "nodePlanId": 100511, + "nodeId": 6810105, + "weight": 2 + }, + { + "id": 6010, + "nodePlanId": 100511, + "nodeId": 6810105, + "weight": 2 + }, + { + "id": 6011, + "nodePlanId": 100512, + "nodeId": 1830105, + "weight": 1 + }, + { + "id": 6012, + "nodePlanId": 100512, + "nodeId": 1830205, + "weight": 1 + }, + { + "id": 6013, + "nodePlanId": 100512, + "nodeId": 1830305, + "weight": 1 + }, + { + "id": 6014, + "nodePlanId": 100512, + "nodeId": 1830405, + "weight": 1 + }, + { + "id": 6015, + "nodePlanId": 100512, + "nodeId": 1830505, + "weight": 1 + }, + { + "id": 6016, + "nodePlanId": 100512, + "nodeId": 2830105, + "weight": 1.5 + }, + { + "id": 6017, + "nodePlanId": 100512, + "nodeId": 2830205, + "weight": 1.5 + }, + { + "id": 6018, + "nodePlanId": 100512, + "nodeId": 2830305, + "weight": 1 + }, + { + "id": 6019, + "nodePlanId": 100512, + "nodeId": 2830405, + "weight": 1 + }, + { + "id": 6020, + "nodePlanId": 100512, + "nodeId": 2830505, + "weight": 1 + }, + { + "id": 6021, + "nodePlanId": 100512, + "nodeId": 2830605, + "weight": 1 + }, + { + "id": 6022, + "nodePlanId": 100513, + "nodeId": 1830605, + "weight": 1 + }, + { + "id": 6023, + "nodePlanId": 100513, + "nodeId": 1830705, + "weight": 1 + }, + { + "id": 6024, + "nodePlanId": 100513, + "nodeId": 1830805, + "weight": 1 + }, + { + "id": 6025, + "nodePlanId": 100513, + "nodeId": 2830105, + "weight": 1 + }, + { + "id": 6026, + "nodePlanId": 100513, + "nodeId": 2830205, + "weight": 1 + }, + { + "id": 6027, + "nodePlanId": 100513, + "nodeId": 2830305, + "weight": 2 + }, + { + "id": 6028, + "nodePlanId": 100513, + "nodeId": 2830405, + "weight": 2 + }, + { + "id": 6029, + "nodePlanId": 100513, + "nodeId": 2830505, + "weight": 1 + }, + { + "id": 6030, + "nodePlanId": 100513, + "nodeId": 2830605, + "weight": 1 + }, + { + "id": 6031, + "nodePlanId": 100513, + "nodeId": 5810105, + "weight": 3 + }, + { + "id": 6032, + "nodePlanId": 100513, + "nodeId": 6810105, + "weight": 2 + }, + { + "id": 6033, + "nodePlanId": 100514, + "nodeId": 4810105, + "weight": 1 + }, + { + "id": 6034, + "nodePlanId": 100514, + "nodeId": 6810105, + "weight": 1 + }, + { + "id": 6035, + "nodePlanId": 100514, + "nodeId": 6810105, + "weight": 1 + }, + { + "id": 6036, + "nodePlanId": 100514, + "nodeId": 2830505, + "weight": 1 + }, + { + "id": 6037, + "nodePlanId": 100514, + "nodeId": 2830605, + "weight": 1 + }, + { + "id": 6038, + "nodePlanId": 100515, + "nodeId": 1830105, + "weight": 1 + }, + { + "id": 6039, + "nodePlanId": 100515, + "nodeId": 1830205, + "weight": 1 + }, + { + "id": 6040, + "nodePlanId": 100515, + "nodeId": 1830305, + "weight": 1 + }, + { + "id": 6041, + "nodePlanId": 100515, + "nodeId": 1830405, + "weight": 1 + }, + { + "id": 6042, + "nodePlanId": 100515, + "nodeId": 1830505, + "weight": 1 + }, + { + "id": 6043, + "nodePlanId": 100515, + "nodeId": 1830605, + "weight": 1 + }, + { + "id": 6044, + "nodePlanId": 100515, + "nodeId": 1830705, + "weight": 1 + }, + { + "id": 6045, + "nodePlanId": 100515, + "nodeId": 1830805, + "weight": 1 + }, + { + "id": 6046, + "nodePlanId": 100515, + "nodeId": 6810105, + "weight": 3 + }, + { + "id": 6047, + "nodePlanId": 100515, + "nodeId": 6810105, + "weight": 2 + }, + { + "id": 6048, + "nodePlanId": 100516, + "nodeId": 5810105, + "weight": 1 + }, + { + "id": 6049, + "nodePlanId": 100516, + "nodeId": 5810105, + "weight": 1 + }, + { + "id": 6050, + "nodePlanId": 100516, + "nodeId": 1830105, + "weight": 1 + }, + { + "id": 6051, + "nodePlanId": 100516, + "nodeId": 1830205, + "weight": 1 + }, + { + "id": 6052, + "nodePlanId": 100517, + "nodeId": 2830105, + "weight": 1 + }, + { + "id": 6053, + "nodePlanId": 100517, + "nodeId": 2830205, + "weight": 1 + }, + { + "id": 6054, + "nodePlanId": 100517, + "nodeId": 2830305, + "weight": 1 + }, + { + "id": 6055, + "nodePlanId": 100517, + "nodeId": 2830405, + "weight": 1 + }, + { + "id": 6056, + "nodePlanId": 100517, + "nodeId": 2830505, + "weight": 1 + }, + { + "id": 6057, + "nodePlanId": 100517, + "nodeId": 2830605, + "weight": 1 + }, + { + "id": 6058, + "nodePlanId": 100518, + "nodeId": 5810105, + "weight": 1 + }, + { + "id": 6059, + "nodePlanId": 100518, + "nodeId": 6810105, + "weight": 1 + }, + { + "id": 6060, + "nodePlanId": 100519, + "nodeId": 4810105, + "weight": 1 + }, + { + "id": 6061, + "nodePlanId": 100520, + "nodeId": 7810105, + "weight": 1 + } +] \ No newline at end of file diff --git a/shared/resource/jsons/dic_rougeLayer_plan.json b/shared/resource/jsons/dic_rougeLayer_plan.json new file mode 100644 index 000000000..fbf794a49 --- /dev/null +++ b/shared/resource/jsons/dic_rougeLayer_plan.json @@ -0,0 +1,7207 @@ +[ + { + "id": 1, + "planId": 101, + "layerIndex": 1, + "nodeNumPlan": 1, + "nodePlan": 10101, + "rewardPlan": 10101, + "shopPlan": 10101, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 2, + "planId": 101, + "layerIndex": 2, + "nodeNumPlan": 1, + "nodePlan": 10102, + "rewardPlan": 10102, + "shopPlan": 10102, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 3, + "planId": 101, + "layerIndex": 3, + "nodeNumPlan": 1, + "nodePlan": 10103, + "rewardPlan": 10103, + "shopPlan": 10103, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 4, + "planId": 101, + "layerIndex": 4, + "nodeNumPlan": 1, + "nodePlan": 10104, + "rewardPlan": 10104, + "shopPlan": 10104, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 5, + "planId": 101, + "layerIndex": 5, + "nodeNumPlan": 1, + "nodePlan": 10105, + "rewardPlan": 10105, + "shopPlan": 10105, + "takeoutReward": "31002&500", + "spiritPlan": 101 + }, + { + "id": 6, + "planId": 201, + "layerIndex": 1, + "nodeNumPlan": 1, + "nodePlan": 20101, + "rewardPlan": 20101, + "shopPlan": 20101, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 7, + "planId": 201, + "layerIndex": 2, + "nodeNumPlan": 4, + "nodePlan": 20102, + "rewardPlan": 20102, + "shopPlan": 20102, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 8, + "planId": 201, + "layerIndex": 3, + "nodeNumPlan": 1, + "nodePlan": 20103, + "rewardPlan": 20103, + "shopPlan": 20103, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 9, + "planId": 201, + "layerIndex": 4, + "nodeNumPlan": 5, + "nodePlan": 20104, + "rewardPlan": 20104, + "shopPlan": 20104, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 10, + "planId": 201, + "layerIndex": 5, + "nodeNumPlan": 1, + "nodePlan": 20105, + "rewardPlan": 20105, + "shopPlan": 20105, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 11, + "planId": 201, + "layerIndex": 6, + "nodeNumPlan": 1, + "nodePlan": 20106, + "rewardPlan": 20106, + "shopPlan": 20106, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 12, + "planId": 201, + "layerIndex": 7, + "nodeNumPlan": 4, + "nodePlan": 20107, + "rewardPlan": 20107, + "shopPlan": 20107, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 13, + "planId": 201, + "layerIndex": 8, + "nodeNumPlan": 5, + "nodePlan": 20108, + "rewardPlan": 20108, + "shopPlan": 20108, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 14, + "planId": 201, + "layerIndex": 9, + "nodeNumPlan": 1, + "nodePlan": 20109, + "rewardPlan": 20109, + "shopPlan": 20109, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 15, + "planId": 201, + "layerIndex": 10, + "nodeNumPlan": 1, + "nodePlan": 20110, + "rewardPlan": 20110, + "shopPlan": 20110, + "takeoutReward": "31002&500", + "spiritPlan": 201 + }, + { + "id": 16, + "planId": 301, + "layerIndex": 1, + "nodeNumPlan": 1, + "nodePlan": 30101, + "rewardPlan": 30101, + "shopPlan": 30101, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 17, + "planId": 301, + "layerIndex": 2, + "nodeNumPlan": 1, + "nodePlan": 30102, + "rewardPlan": 30102, + "shopPlan": 30102, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 18, + "planId": 301, + "layerIndex": 3, + "nodeNumPlan": 5, + "nodePlan": 30103, + "rewardPlan": 30103, + "shopPlan": 30103, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 19, + "planId": 301, + "layerIndex": 4, + "nodeNumPlan": 1, + "nodePlan": 30104, + "rewardPlan": 30104, + "shopPlan": 30104, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 20, + "planId": 301, + "layerIndex": 5, + "nodeNumPlan": 1, + "nodePlan": 30105, + "rewardPlan": 30105, + "shopPlan": 30105, + "takeoutReward": "31002&500", + "spiritPlan": 301 + }, + { + "id": 21, + "planId": 301, + "layerIndex": 6, + "nodeNumPlan": 2, + "nodePlan": 30106, + "rewardPlan": 30106, + "shopPlan": 30106, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 22, + "planId": 301, + "layerIndex": 7, + "nodeNumPlan": 3, + "nodePlan": 30107, + "rewardPlan": 30107, + "shopPlan": 30107, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 23, + "planId": 301, + "layerIndex": 8, + "nodeNumPlan": 4, + "nodePlan": 30108, + "rewardPlan": 30108, + "shopPlan": 30108, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 24, + "planId": 301, + "layerIndex": 9, + "nodeNumPlan": 1, + "nodePlan": 30109, + "rewardPlan": 30109, + "shopPlan": 30109, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 25, + "planId": 301, + "layerIndex": 10, + "nodeNumPlan": 5, + "nodePlan": 30110, + "rewardPlan": 30110, + "shopPlan": 30110, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 26, + "planId": 301, + "layerIndex": 11, + "nodeNumPlan": 2, + "nodePlan": 30111, + "rewardPlan": 30111, + "shopPlan": 30111, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 27, + "planId": 301, + "layerIndex": 12, + "nodeNumPlan": 5, + "nodePlan": 30112, + "rewardPlan": 30112, + "shopPlan": 30112, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 28, + "planId": 301, + "layerIndex": 13, + "nodeNumPlan": 4, + "nodePlan": 30113, + "rewardPlan": 30113, + "shopPlan": 30113, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 29, + "planId": 301, + "layerIndex": 14, + "nodeNumPlan": 1, + "nodePlan": 30114, + "rewardPlan": 30114, + "shopPlan": 30114, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 30, + "planId": 301, + "layerIndex": 15, + "nodeNumPlan": 1, + "nodePlan": 30115, + "rewardPlan": 30115, + "shopPlan": 30115, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 31, + "planId": 302, + "layerIndex": 1, + "nodeNumPlan": 1, + "nodePlan": 30201, + "rewardPlan": 30201, + "shopPlan": 30201, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 32, + "planId": 302, + "layerIndex": 2, + "nodeNumPlan": 1, + "nodePlan": 30202, + "rewardPlan": 30202, + "shopPlan": 30202, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 33, + "planId": 302, + "layerIndex": 3, + "nodeNumPlan": 5, + "nodePlan": 30203, + "rewardPlan": 30203, + "shopPlan": 30203, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 34, + "planId": 302, + "layerIndex": 4, + "nodeNumPlan": 1, + "nodePlan": 30204, + "rewardPlan": 30204, + "shopPlan": 30204, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 35, + "planId": 302, + "layerIndex": 5, + "nodeNumPlan": 1, + "nodePlan": 30205, + "rewardPlan": 30205, + "shopPlan": 30205, + "takeoutReward": "31002&500", + "spiritPlan": 302 + }, + { + "id": 36, + "planId": 302, + "layerIndex": 6, + "nodeNumPlan": 2, + "nodePlan": 30206, + "rewardPlan": 30206, + "shopPlan": 30206, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 37, + "planId": 302, + "layerIndex": 7, + "nodeNumPlan": 3, + "nodePlan": 30207, + "rewardPlan": 30207, + "shopPlan": 30207, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 38, + "planId": 302, + "layerIndex": 8, + "nodeNumPlan": 4, + "nodePlan": 30208, + "rewardPlan": 30208, + "shopPlan": 30208, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 39, + "planId": 302, + "layerIndex": 9, + "nodeNumPlan": 1, + "nodePlan": 30209, + "rewardPlan": 30209, + "shopPlan": 30209, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 40, + "planId": 302, + "layerIndex": 10, + "nodeNumPlan": 5, + "nodePlan": 30210, + "rewardPlan": 30210, + "shopPlan": 30210, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 41, + "planId": 302, + "layerIndex": 11, + "nodeNumPlan": 2, + "nodePlan": 30211, + "rewardPlan": 30211, + "shopPlan": 30211, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 42, + "planId": 302, + "layerIndex": 12, + "nodeNumPlan": 5, + "nodePlan": 30212, + "rewardPlan": 30212, + "shopPlan": 30212, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 43, + "planId": 302, + "layerIndex": 13, + "nodeNumPlan": 4, + "nodePlan": 30213, + "rewardPlan": 30213, + "shopPlan": 30213, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 44, + "planId": 302, + "layerIndex": 14, + "nodeNumPlan": 1, + "nodePlan": 30214, + "rewardPlan": 30214, + "shopPlan": 30214, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 45, + "planId": 302, + "layerIndex": 15, + "nodeNumPlan": 1, + "nodePlan": 30215, + "rewardPlan": 30215, + "shopPlan": 30215, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 46, + "planId": 303, + "layerIndex": 1, + "nodeNumPlan": 1, + "nodePlan": 30301, + "rewardPlan": 30301, + "shopPlan": 30301, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 47, + "planId": 303, + "layerIndex": 2, + "nodeNumPlan": 1, + "nodePlan": 30302, + "rewardPlan": 30302, + "shopPlan": 30302, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 48, + "planId": 303, + "layerIndex": 3, + "nodeNumPlan": 5, + "nodePlan": 30303, + "rewardPlan": 30303, + "shopPlan": 30303, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 49, + "planId": 303, + "layerIndex": 4, + "nodeNumPlan": 1, + "nodePlan": 30304, + "rewardPlan": 30304, + "shopPlan": 30304, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 50, + "planId": 303, + "layerIndex": 5, + "nodeNumPlan": 1, + "nodePlan": 30305, + "rewardPlan": 30305, + "shopPlan": 30305, + "takeoutReward": "31002&500", + "spiritPlan": 303 + }, + { + "id": 51, + "planId": 303, + "layerIndex": 6, + "nodeNumPlan": 2, + "nodePlan": 30306, + "rewardPlan": 30306, + "shopPlan": 30306, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 52, + "planId": 303, + "layerIndex": 7, + "nodeNumPlan": 3, + "nodePlan": 30307, + "rewardPlan": 30307, + "shopPlan": 30307, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 53, + "planId": 303, + "layerIndex": 8, + "nodeNumPlan": 4, + "nodePlan": 30308, + "rewardPlan": 30308, + "shopPlan": 30308, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 54, + "planId": 303, + "layerIndex": 9, + "nodeNumPlan": 1, + "nodePlan": 30309, + "rewardPlan": 30309, + "shopPlan": 30309, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 55, + "planId": 303, + "layerIndex": 10, + "nodeNumPlan": 5, + "nodePlan": 30310, + "rewardPlan": 30310, + "shopPlan": 30310, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 56, + "planId": 303, + "layerIndex": 11, + "nodeNumPlan": 2, + "nodePlan": 30311, + "rewardPlan": 30311, + "shopPlan": 30311, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 57, + "planId": 303, + "layerIndex": 12, + "nodeNumPlan": 5, + "nodePlan": 30312, + "rewardPlan": 30312, + "shopPlan": 30312, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 58, + "planId": 303, + "layerIndex": 13, + "nodeNumPlan": 4, + "nodePlan": 30313, + "rewardPlan": 30313, + "shopPlan": 30313, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 59, + "planId": 303, + "layerIndex": 14, + "nodeNumPlan": 1, + "nodePlan": 30314, + "rewardPlan": 30314, + "shopPlan": 30314, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 60, + "planId": 303, + "layerIndex": 15, + "nodeNumPlan": 1, + "nodePlan": 30315, + "rewardPlan": 30315, + "shopPlan": 30315, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 61, + "planId": 304, + "layerIndex": 1, + "nodeNumPlan": 1, + "nodePlan": 30401, + "rewardPlan": 30401, + "shopPlan": 30401, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 62, + "planId": 304, + "layerIndex": 2, + "nodeNumPlan": 1, + "nodePlan": 30402, + "rewardPlan": 30402, + "shopPlan": 30402, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 63, + "planId": 304, + "layerIndex": 3, + "nodeNumPlan": 5, + "nodePlan": 30403, + "rewardPlan": 30403, + "shopPlan": 30403, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 64, + "planId": 304, + "layerIndex": 4, + "nodeNumPlan": 1, + "nodePlan": 30404, + "rewardPlan": 30404, + "shopPlan": 30404, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 65, + "planId": 304, + "layerIndex": 5, + "nodeNumPlan": 1, + "nodePlan": 30405, + "rewardPlan": 30405, + "shopPlan": 30405, + "takeoutReward": "31002&500", + "spiritPlan": 304 + }, + { + "id": 66, + "planId": 304, + "layerIndex": 6, + "nodeNumPlan": 2, + "nodePlan": 30406, + "rewardPlan": 30406, + "shopPlan": 30406, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 67, + "planId": 304, + "layerIndex": 7, + "nodeNumPlan": 3, + "nodePlan": 30407, + "rewardPlan": 30407, + "shopPlan": 30407, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 68, + "planId": 304, + "layerIndex": 8, + "nodeNumPlan": 4, + "nodePlan": 30408, + "rewardPlan": 30408, + "shopPlan": 30408, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 69, + "planId": 304, + "layerIndex": 9, + "nodeNumPlan": 1, + "nodePlan": 30409, + "rewardPlan": 30409, + "shopPlan": 30409, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 70, + "planId": 304, + "layerIndex": 10, + "nodeNumPlan": 5, + "nodePlan": 30410, + "rewardPlan": 30410, + "shopPlan": 30410, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 71, + "planId": 304, + "layerIndex": 11, + "nodeNumPlan": 2, + "nodePlan": 30411, + "rewardPlan": 30411, + "shopPlan": 30411, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 72, + "planId": 304, + "layerIndex": 12, + "nodeNumPlan": 5, + "nodePlan": 30412, + "rewardPlan": 30412, + "shopPlan": 30412, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 73, + "planId": 304, + "layerIndex": 13, + "nodeNumPlan": 4, + "nodePlan": 30413, + "rewardPlan": 30413, + "shopPlan": 30413, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 74, + "planId": 304, + "layerIndex": 14, + "nodeNumPlan": 1, + "nodePlan": 30414, + "rewardPlan": 30414, + "shopPlan": 30414, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 75, + "planId": 304, + "layerIndex": 15, + "nodeNumPlan": 1, + "nodePlan": 30415, + "rewardPlan": 30415, + "shopPlan": 30415, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 76, + "planId": 305, + "layerIndex": 1, + "nodeNumPlan": 1, + "nodePlan": 30501, + "rewardPlan": 30501, + "shopPlan": 30501, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 77, + "planId": 305, + "layerIndex": 2, + "nodeNumPlan": 1, + "nodePlan": 30502, + "rewardPlan": 30502, + "shopPlan": 30502, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 78, + "planId": 305, + "layerIndex": 3, + "nodeNumPlan": 5, + "nodePlan": 30503, + "rewardPlan": 30503, + "shopPlan": 30503, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 79, + "planId": 305, + "layerIndex": 4, + "nodeNumPlan": 1, + "nodePlan": 30504, + "rewardPlan": 30504, + "shopPlan": 30504, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 80, + "planId": 305, + "layerIndex": 5, + "nodeNumPlan": 1, + "nodePlan": 30505, + "rewardPlan": 30505, + "shopPlan": 30505, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 81, + "planId": 305, + "layerIndex": 6, + "nodeNumPlan": 2, + "nodePlan": 30506, + "rewardPlan": 30506, + "shopPlan": 30506, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 82, + "planId": 305, + "layerIndex": 7, + "nodeNumPlan": 3, + "nodePlan": 30507, + "rewardPlan": 30507, + "shopPlan": 30507, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 83, + "planId": 305, + "layerIndex": 8, + "nodeNumPlan": 4, + "nodePlan": 30508, + "rewardPlan": 30508, + "shopPlan": 30508, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 84, + "planId": 305, + "layerIndex": 9, + "nodeNumPlan": 1, + "nodePlan": 30509, + "rewardPlan": 30509, + "shopPlan": 30509, + "takeoutReward": "31002&500", + "spiritPlan": 305 + }, + { + "id": 85, + "planId": 305, + "layerIndex": 10, + "nodeNumPlan": 5, + "nodePlan": 30510, + "rewardPlan": 30510, + "shopPlan": 30510, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 86, + "planId": 305, + "layerIndex": 11, + "nodeNumPlan": 2, + "nodePlan": 30511, + "rewardPlan": 30511, + "shopPlan": 30511, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 87, + "planId": 305, + "layerIndex": 12, + "nodeNumPlan": 5, + "nodePlan": 30512, + "rewardPlan": 30512, + "shopPlan": 30512, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 88, + "planId": 305, + "layerIndex": 13, + "nodeNumPlan": 4, + "nodePlan": 30513, + "rewardPlan": 30513, + "shopPlan": 30513, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 89, + "planId": 305, + "layerIndex": 14, + "nodeNumPlan": 3, + "nodePlan": 30514, + "rewardPlan": 30514, + "shopPlan": 30514, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 90, + "planId": 305, + "layerIndex": 15, + "nodeNumPlan": 4, + "nodePlan": 30515, + "rewardPlan": 30515, + "shopPlan": 30515, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 91, + "planId": 305, + "layerIndex": 16, + "nodeNumPlan": 2, + "nodePlan": 30516, + "rewardPlan": 30516, + "shopPlan": 30516, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 92, + "planId": 305, + "layerIndex": 17, + "nodeNumPlan": 5, + "nodePlan": 30517, + "rewardPlan": 30517, + "shopPlan": 30517, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 93, + "planId": 305, + "layerIndex": 18, + "nodeNumPlan": 4, + "nodePlan": 30518, + "rewardPlan": 30518, + "shopPlan": 30518, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 94, + "planId": 305, + "layerIndex": 19, + "nodeNumPlan": 1, + "nodePlan": 30519, + "rewardPlan": 30519, + "shopPlan": 30519, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 95, + "planId": 305, + "layerIndex": 20, + "nodeNumPlan": 1, + "nodePlan": 30520, + "rewardPlan": 30520, + "shopPlan": 30520, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 96, + "planId": 401, + "layerIndex": 1, + "nodeNumPlan": 1, + "nodePlan": 40101, + "rewardPlan": 40101, + "shopPlan": 40101, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 97, + "planId": 401, + "layerIndex": 2, + "nodeNumPlan": 1, + "nodePlan": 40102, + "rewardPlan": 40102, + "shopPlan": 40102, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 98, + "planId": 401, + "layerIndex": 3, + "nodeNumPlan": 5, + "nodePlan": 40103, + "rewardPlan": 40103, + "shopPlan": 40103, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 99, + "planId": 401, + "layerIndex": 4, + "nodeNumPlan": 1, + "nodePlan": 40104, + "rewardPlan": 40104, + "shopPlan": 40104, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 100, + "planId": 401, + "layerIndex": 5, + "nodeNumPlan": 1, + "nodePlan": 40105, + "rewardPlan": 40105, + "shopPlan": 40105, + "takeoutReward": "31002&500", + "spiritPlan": 401 + }, + { + "id": 101, + "planId": 401, + "layerIndex": 6, + "nodeNumPlan": 2, + "nodePlan": 40106, + "rewardPlan": 40106, + "shopPlan": 40106, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 102, + "planId": 401, + "layerIndex": 7, + "nodeNumPlan": 3, + "nodePlan": 40107, + "rewardPlan": 40107, + "shopPlan": 40107, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 103, + "planId": 401, + "layerIndex": 8, + "nodeNumPlan": 4, + "nodePlan": 40108, + "rewardPlan": 40108, + "shopPlan": 40108, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 104, + "planId": 401, + "layerIndex": 9, + "nodeNumPlan": 1, + "nodePlan": 40109, + "rewardPlan": 40109, + "shopPlan": 40109, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 105, + "planId": 401, + "layerIndex": 10, + "nodeNumPlan": 5, + "nodePlan": 40110, + "rewardPlan": 40110, + "shopPlan": 40110, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 106, + "planId": 401, + "layerIndex": 11, + "nodeNumPlan": 2, + "nodePlan": 40111, + "rewardPlan": 40111, + "shopPlan": 40111, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 107, + "planId": 401, + "layerIndex": 12, + "nodeNumPlan": 5, + "nodePlan": 40112, + "rewardPlan": 40112, + "shopPlan": 40112, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 108, + "planId": 401, + "layerIndex": 13, + "nodeNumPlan": 4, + "nodePlan": 40113, + "rewardPlan": 40113, + "shopPlan": 40113, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 109, + "planId": 401, + "layerIndex": 14, + "nodeNumPlan": 1, + "nodePlan": 40114, + "rewardPlan": 40114, + "shopPlan": 40114, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 110, + "planId": 401, + "layerIndex": 15, + "nodeNumPlan": 1, + "nodePlan": 40115, + "rewardPlan": 40115, + "shopPlan": 40115, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 111, + "planId": 402, + "layerIndex": 1, + "nodeNumPlan": 1, + "nodePlan": 40201, + "rewardPlan": 40201, + "shopPlan": 40201, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 112, + "planId": 402, + "layerIndex": 2, + "nodeNumPlan": 1, + "nodePlan": 40202, + "rewardPlan": 40202, + "shopPlan": 40202, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 113, + "planId": 402, + "layerIndex": 3, + "nodeNumPlan": 5, + "nodePlan": 40203, + "rewardPlan": 40203, + "shopPlan": 40203, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 114, + "planId": 402, + "layerIndex": 4, + "nodeNumPlan": 1, + "nodePlan": 40204, + "rewardPlan": 40204, + "shopPlan": 40204, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 115, + "planId": 402, + "layerIndex": 5, + "nodeNumPlan": 1, + "nodePlan": 40205, + "rewardPlan": 40205, + "shopPlan": 40205, + "takeoutReward": "31002&500", + "spiritPlan": 402 + }, + { + "id": 116, + "planId": 402, + "layerIndex": 6, + "nodeNumPlan": 2, + "nodePlan": 40206, + "rewardPlan": 40206, + "shopPlan": 40206, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 117, + "planId": 402, + "layerIndex": 7, + "nodeNumPlan": 3, + "nodePlan": 40207, + "rewardPlan": 40207, + "shopPlan": 40207, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 118, + "planId": 402, + "layerIndex": 8, + "nodeNumPlan": 4, + "nodePlan": 40208, + "rewardPlan": 40208, + "shopPlan": 40208, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 119, + "planId": 402, + "layerIndex": 9, + "nodeNumPlan": 1, + "nodePlan": 40209, + "rewardPlan": 40209, + "shopPlan": 40209, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 120, + "planId": 402, + "layerIndex": 10, + "nodeNumPlan": 5, + "nodePlan": 40210, + "rewardPlan": 40210, + "shopPlan": 40210, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 121, + "planId": 402, + "layerIndex": 11, + "nodeNumPlan": 2, + "nodePlan": 40211, + "rewardPlan": 40211, + "shopPlan": 40211, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 122, + "planId": 402, + "layerIndex": 12, + "nodeNumPlan": 5, + "nodePlan": 40212, + "rewardPlan": 40212, + "shopPlan": 40212, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 123, + "planId": 402, + "layerIndex": 13, + "nodeNumPlan": 4, + "nodePlan": 40213, + "rewardPlan": 40213, + "shopPlan": 40213, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 124, + "planId": 402, + "layerIndex": 14, + "nodeNumPlan": 1, + "nodePlan": 40214, + "rewardPlan": 40214, + "shopPlan": 40214, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 125, + "planId": 402, + "layerIndex": 15, + "nodeNumPlan": 1, + "nodePlan": 40215, + "rewardPlan": 40215, + "shopPlan": 40215, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 126, + "planId": 403, + "layerIndex": 1, + "nodeNumPlan": 1, + "nodePlan": 40301, + "rewardPlan": 40301, + "shopPlan": 40301, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 127, + "planId": 403, + "layerIndex": 2, + "nodeNumPlan": 1, + "nodePlan": 40302, + "rewardPlan": 40302, + "shopPlan": 40302, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 128, + "planId": 403, + "layerIndex": 3, + "nodeNumPlan": 5, + "nodePlan": 40303, + "rewardPlan": 40303, + "shopPlan": 40303, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 129, + "planId": 403, + "layerIndex": 4, + "nodeNumPlan": 1, + "nodePlan": 40304, + "rewardPlan": 40304, + "shopPlan": 40304, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 130, + "planId": 403, + "layerIndex": 5, + "nodeNumPlan": 1, + "nodePlan": 40305, + "rewardPlan": 40305, + "shopPlan": 40305, + "takeoutReward": "31002&500", + "spiritPlan": 403 + }, + { + "id": 131, + "planId": 403, + "layerIndex": 6, + "nodeNumPlan": 2, + "nodePlan": 40306, + "rewardPlan": 40306, + "shopPlan": 40306, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 132, + "planId": 403, + "layerIndex": 7, + "nodeNumPlan": 3, + "nodePlan": 40307, + "rewardPlan": 40307, + "shopPlan": 40307, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 133, + "planId": 403, + "layerIndex": 8, + "nodeNumPlan": 4, + "nodePlan": 40308, + "rewardPlan": 40308, + "shopPlan": 40308, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 134, + "planId": 403, + "layerIndex": 9, + "nodeNumPlan": 1, + "nodePlan": 40309, + "rewardPlan": 40309, + "shopPlan": 40309, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 135, + "planId": 403, + "layerIndex": 10, + "nodeNumPlan": 5, + "nodePlan": 40310, + "rewardPlan": 40310, + "shopPlan": 40310, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 136, + "planId": 403, + "layerIndex": 11, + "nodeNumPlan": 2, + "nodePlan": 40311, + "rewardPlan": 40311, + "shopPlan": 40311, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 137, + "planId": 403, + "layerIndex": 12, + "nodeNumPlan": 5, + "nodePlan": 40312, + "rewardPlan": 40312, + "shopPlan": 40312, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 138, + "planId": 403, + "layerIndex": 13, + "nodeNumPlan": 4, + "nodePlan": 40313, + "rewardPlan": 40313, + "shopPlan": 40313, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 139, + "planId": 403, + "layerIndex": 14, + "nodeNumPlan": 1, + "nodePlan": 40314, + "rewardPlan": 40314, + "shopPlan": 40314, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 140, + "planId": 403, + "layerIndex": 15, + "nodeNumPlan": 1, + "nodePlan": 40315, + "rewardPlan": 40315, + "shopPlan": 40315, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 141, + "planId": 404, + "layerIndex": 1, + "nodeNumPlan": 1, + "nodePlan": 40401, + "rewardPlan": 40401, + "shopPlan": 40401, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 142, + "planId": 404, + "layerIndex": 2, + "nodeNumPlan": 1, + "nodePlan": 40402, + "rewardPlan": 40402, + "shopPlan": 40402, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 143, + "planId": 404, + "layerIndex": 3, + "nodeNumPlan": 5, + "nodePlan": 40403, + "rewardPlan": 40403, + "shopPlan": 40403, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 144, + "planId": 404, + "layerIndex": 4, + "nodeNumPlan": 1, + "nodePlan": 40404, + "rewardPlan": 40404, + "shopPlan": 40404, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 145, + "planId": 404, + "layerIndex": 5, + "nodeNumPlan": 1, + "nodePlan": 40405, + "rewardPlan": 40405, + "shopPlan": 40405, + "takeoutReward": "31002&500", + "spiritPlan": 404 + }, + { + "id": 146, + "planId": 404, + "layerIndex": 6, + "nodeNumPlan": 2, + "nodePlan": 40406, + "rewardPlan": 40406, + "shopPlan": 40406, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 147, + "planId": 404, + "layerIndex": 7, + "nodeNumPlan": 3, + "nodePlan": 40407, + "rewardPlan": 40407, + "shopPlan": 40407, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 148, + "planId": 404, + "layerIndex": 8, + "nodeNumPlan": 4, + "nodePlan": 40408, + "rewardPlan": 40408, + "shopPlan": 40408, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 149, + "planId": 404, + "layerIndex": 9, + "nodeNumPlan": 1, + "nodePlan": 40409, + "rewardPlan": 40409, + "shopPlan": 40409, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 150, + "planId": 404, + "layerIndex": 10, + "nodeNumPlan": 5, + "nodePlan": 40410, + "rewardPlan": 40410, + "shopPlan": 40410, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 151, + "planId": 404, + "layerIndex": 11, + "nodeNumPlan": 2, + "nodePlan": 40411, + "rewardPlan": 40411, + "shopPlan": 40411, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 152, + "planId": 404, + "layerIndex": 12, + "nodeNumPlan": 5, + "nodePlan": 40412, + "rewardPlan": 40412, + "shopPlan": 40412, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 153, + "planId": 404, + "layerIndex": 13, + "nodeNumPlan": 4, + "nodePlan": 40413, + "rewardPlan": 40413, + "shopPlan": 40413, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 154, + "planId": 404, + "layerIndex": 14, + "nodeNumPlan": 1, + "nodePlan": 40414, + "rewardPlan": 40414, + "shopPlan": 40414, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 155, + "planId": 404, + "layerIndex": 15, + "nodeNumPlan": 1, + "nodePlan": 40415, + "rewardPlan": 40415, + "shopPlan": 40415, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 156, + "planId": 405, + "layerIndex": 1, + "nodeNumPlan": 1, + "nodePlan": 40501, + "rewardPlan": 40501, + "shopPlan": 40501, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 157, + "planId": 405, + "layerIndex": 2, + "nodeNumPlan": 1, + "nodePlan": 40502, + "rewardPlan": 40502, + "shopPlan": 40502, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 158, + "planId": 405, + "layerIndex": 3, + "nodeNumPlan": 5, + "nodePlan": 40503, + "rewardPlan": 40503, + "shopPlan": 40503, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 159, + "planId": 405, + "layerIndex": 4, + "nodeNumPlan": 1, + "nodePlan": 40504, + "rewardPlan": 40504, + "shopPlan": 40504, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 160, + "planId": 405, + "layerIndex": 5, + "nodeNumPlan": 1, + "nodePlan": 40505, + "rewardPlan": 40505, + "shopPlan": 40505, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 161, + "planId": 405, + "layerIndex": 6, + "nodeNumPlan": 2, + "nodePlan": 40506, + "rewardPlan": 40506, + "shopPlan": 40506, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 162, + "planId": 405, + "layerIndex": 7, + "nodeNumPlan": 3, + "nodePlan": 40507, + "rewardPlan": 40507, + "shopPlan": 40507, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 163, + "planId": 405, + "layerIndex": 8, + "nodeNumPlan": 4, + "nodePlan": 40508, + "rewardPlan": 40508, + "shopPlan": 40508, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 164, + "planId": 405, + "layerIndex": 9, + "nodeNumPlan": 1, + "nodePlan": 40509, + "rewardPlan": 40509, + "shopPlan": 40509, + "takeoutReward": "31002&500", + "spiritPlan": 405 + }, + { + "id": 165, + "planId": 405, + "layerIndex": 10, + "nodeNumPlan": 5, + "nodePlan": 40510, + "rewardPlan": 40510, + "shopPlan": 40510, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 166, + "planId": 405, + "layerIndex": 11, + "nodeNumPlan": 2, + "nodePlan": 40511, + "rewardPlan": 40511, + "shopPlan": 40511, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 167, + "planId": 405, + "layerIndex": 12, + "nodeNumPlan": 5, + "nodePlan": 40512, + "rewardPlan": 40512, + "shopPlan": 40512, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 168, + "planId": 405, + "layerIndex": 13, + "nodeNumPlan": 4, + "nodePlan": 40513, + "rewardPlan": 40513, + "shopPlan": 40513, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 169, + "planId": 405, + "layerIndex": 14, + "nodeNumPlan": 3, + "nodePlan": 40514, + "rewardPlan": 40514, + "shopPlan": 40514, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 170, + "planId": 405, + "layerIndex": 15, + "nodeNumPlan": 4, + "nodePlan": 40515, + "rewardPlan": 40515, + "shopPlan": 40515, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 171, + "planId": 405, + "layerIndex": 16, + "nodeNumPlan": 2, + "nodePlan": 40516, + "rewardPlan": 40516, + "shopPlan": 40516, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 172, + "planId": 405, + "layerIndex": 17, + "nodeNumPlan": 5, + "nodePlan": 40517, + "rewardPlan": 40517, + "shopPlan": 40517, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 173, + "planId": 405, + "layerIndex": 18, + "nodeNumPlan": 4, + "nodePlan": 40518, + "rewardPlan": 40518, + "shopPlan": 40518, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 174, + "planId": 405, + "layerIndex": 19, + "nodeNumPlan": 1, + "nodePlan": 40519, + "rewardPlan": 40519, + "shopPlan": 40519, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 175, + "planId": 405, + "layerIndex": 20, + "nodeNumPlan": 1, + "nodePlan": 40520, + "rewardPlan": 40520, + "shopPlan": 40520, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 176, + "planId": 501, + "layerIndex": 1, + "nodeNumPlan": 1, + "nodePlan": 50101, + "rewardPlan": 50101, + "shopPlan": 50101, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 177, + "planId": 501, + "layerIndex": 2, + "nodeNumPlan": 1, + "nodePlan": 50102, + "rewardPlan": 50102, + "shopPlan": 50102, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 178, + "planId": 501, + "layerIndex": 3, + "nodeNumPlan": 5, + "nodePlan": 50103, + "rewardPlan": 50103, + "shopPlan": 50103, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 179, + "planId": 501, + "layerIndex": 4, + "nodeNumPlan": 1, + "nodePlan": 50104, + "rewardPlan": 50104, + "shopPlan": 50104, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 180, + "planId": 501, + "layerIndex": 5, + "nodeNumPlan": 1, + "nodePlan": 50105, + "rewardPlan": 50105, + "shopPlan": 50105, + "takeoutReward": "31002&500", + "spiritPlan": 501 + }, + { + "id": 181, + "planId": 501, + "layerIndex": 6, + "nodeNumPlan": 2, + "nodePlan": 50106, + "rewardPlan": 50106, + "shopPlan": 50106, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 182, + "planId": 501, + "layerIndex": 7, + "nodeNumPlan": 3, + "nodePlan": 50107, + "rewardPlan": 50107, + "shopPlan": 50107, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 183, + "planId": 501, + "layerIndex": 8, + "nodeNumPlan": 4, + "nodePlan": 50108, + "rewardPlan": 50108, + "shopPlan": 50108, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 184, + "planId": 501, + "layerIndex": 9, + "nodeNumPlan": 1, + "nodePlan": 50109, + "rewardPlan": 50109, + "shopPlan": 50109, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 185, + "planId": 501, + "layerIndex": 10, + "nodeNumPlan": 5, + "nodePlan": 50110, + "rewardPlan": 50110, + "shopPlan": 50110, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 186, + "planId": 501, + "layerIndex": 11, + "nodeNumPlan": 2, + "nodePlan": 50111, + "rewardPlan": 50111, + "shopPlan": 50111, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 187, + "planId": 501, + "layerIndex": 12, + "nodeNumPlan": 5, + "nodePlan": 50112, + "rewardPlan": 50112, + "shopPlan": 50112, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 188, + "planId": 501, + "layerIndex": 13, + "nodeNumPlan": 4, + "nodePlan": 50113, + "rewardPlan": 50113, + "shopPlan": 50113, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 189, + "planId": 501, + "layerIndex": 14, + "nodeNumPlan": 1, + "nodePlan": 50114, + "rewardPlan": 50114, + "shopPlan": 50114, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 190, + "planId": 501, + "layerIndex": 15, + "nodeNumPlan": 1, + "nodePlan": 50115, + "rewardPlan": 50115, + "shopPlan": 50115, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 191, + "planId": 502, + "layerIndex": 1, + "nodeNumPlan": 1, + "nodePlan": 50201, + "rewardPlan": 50201, + "shopPlan": 50201, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 192, + "planId": 502, + "layerIndex": 2, + "nodeNumPlan": 1, + "nodePlan": 50202, + "rewardPlan": 50202, + "shopPlan": 50202, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 193, + "planId": 502, + "layerIndex": 3, + "nodeNumPlan": 5, + "nodePlan": 50203, + "rewardPlan": 50203, + "shopPlan": 50203, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 194, + "planId": 502, + "layerIndex": 4, + "nodeNumPlan": 1, + "nodePlan": 50204, + "rewardPlan": 50204, + "shopPlan": 50204, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 195, + "planId": 502, + "layerIndex": 5, + "nodeNumPlan": 1, + "nodePlan": 50205, + "rewardPlan": 50205, + "shopPlan": 50205, + "takeoutReward": "31002&500", + "spiritPlan": 502 + }, + { + "id": 196, + "planId": 502, + "layerIndex": 6, + "nodeNumPlan": 2, + "nodePlan": 50206, + "rewardPlan": 50206, + "shopPlan": 50206, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 197, + "planId": 502, + "layerIndex": 7, + "nodeNumPlan": 3, + "nodePlan": 50207, + "rewardPlan": 50207, + "shopPlan": 50207, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 198, + "planId": 502, + "layerIndex": 8, + "nodeNumPlan": 4, + "nodePlan": 50208, + "rewardPlan": 50208, + "shopPlan": 50208, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 199, + "planId": 502, + "layerIndex": 9, + "nodeNumPlan": 1, + "nodePlan": 50209, + "rewardPlan": 50209, + "shopPlan": 50209, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 200, + "planId": 502, + "layerIndex": 10, + "nodeNumPlan": 5, + "nodePlan": 50210, + "rewardPlan": 50210, + "shopPlan": 50210, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 201, + "planId": 502, + "layerIndex": 11, + "nodeNumPlan": 2, + "nodePlan": 50211, + "rewardPlan": 50211, + "shopPlan": 50211, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 202, + "planId": 502, + "layerIndex": 12, + "nodeNumPlan": 5, + "nodePlan": 50212, + "rewardPlan": 50212, + "shopPlan": 50212, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 203, + "planId": 502, + "layerIndex": 13, + "nodeNumPlan": 4, + "nodePlan": 50213, + "rewardPlan": 50213, + "shopPlan": 50213, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 204, + "planId": 502, + "layerIndex": 14, + "nodeNumPlan": 1, + "nodePlan": 50214, + "rewardPlan": 50214, + "shopPlan": 50214, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 205, + "planId": 502, + "layerIndex": 15, + "nodeNumPlan": 1, + "nodePlan": 50215, + "rewardPlan": 50215, + "shopPlan": 50215, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 206, + "planId": 503, + "layerIndex": 1, + "nodeNumPlan": 1, + "nodePlan": 50301, + "rewardPlan": 50301, + "shopPlan": 50301, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 207, + "planId": 503, + "layerIndex": 2, + "nodeNumPlan": 1, + "nodePlan": 50302, + "rewardPlan": 50302, + "shopPlan": 50302, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 208, + "planId": 503, + "layerIndex": 3, + "nodeNumPlan": 5, + "nodePlan": 50303, + "rewardPlan": 50303, + "shopPlan": 50303, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 209, + "planId": 503, + "layerIndex": 4, + "nodeNumPlan": 1, + "nodePlan": 50304, + "rewardPlan": 50304, + "shopPlan": 50304, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 210, + "planId": 503, + "layerIndex": 5, + "nodeNumPlan": 1, + "nodePlan": 50305, + "rewardPlan": 50305, + "shopPlan": 50305, + "takeoutReward": "31002&500", + "spiritPlan": 503 + }, + { + "id": 211, + "planId": 503, + "layerIndex": 6, + "nodeNumPlan": 2, + "nodePlan": 50306, + "rewardPlan": 50306, + "shopPlan": 50306, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 212, + "planId": 503, + "layerIndex": 7, + "nodeNumPlan": 3, + "nodePlan": 50307, + "rewardPlan": 50307, + "shopPlan": 50307, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 213, + "planId": 503, + "layerIndex": 8, + "nodeNumPlan": 4, + "nodePlan": 50308, + "rewardPlan": 50308, + "shopPlan": 50308, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 214, + "planId": 503, + "layerIndex": 9, + "nodeNumPlan": 1, + "nodePlan": 50309, + "rewardPlan": 50309, + "shopPlan": 50309, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 215, + "planId": 503, + "layerIndex": 10, + "nodeNumPlan": 5, + "nodePlan": 50310, + "rewardPlan": 50310, + "shopPlan": 50310, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 216, + "planId": 503, + "layerIndex": 11, + "nodeNumPlan": 2, + "nodePlan": 50311, + "rewardPlan": 50311, + "shopPlan": 50311, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 217, + "planId": 503, + "layerIndex": 12, + "nodeNumPlan": 5, + "nodePlan": 50312, + "rewardPlan": 50312, + "shopPlan": 50312, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 218, + "planId": 503, + "layerIndex": 13, + "nodeNumPlan": 4, + "nodePlan": 50313, + "rewardPlan": 50313, + "shopPlan": 50313, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 219, + "planId": 503, + "layerIndex": 14, + "nodeNumPlan": 1, + "nodePlan": 50314, + "rewardPlan": 50314, + "shopPlan": 50314, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 220, + "planId": 503, + "layerIndex": 15, + "nodeNumPlan": 1, + "nodePlan": 50315, + "rewardPlan": 50315, + "shopPlan": 50315, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 221, + "planId": 504, + "layerIndex": 1, + "nodeNumPlan": 1, + "nodePlan": 50401, + "rewardPlan": 50401, + "shopPlan": 50401, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 222, + "planId": 504, + "layerIndex": 2, + "nodeNumPlan": 1, + "nodePlan": 50402, + "rewardPlan": 50402, + "shopPlan": 50402, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 223, + "planId": 504, + "layerIndex": 3, + "nodeNumPlan": 5, + "nodePlan": 50403, + "rewardPlan": 50403, + "shopPlan": 50403, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 224, + "planId": 504, + "layerIndex": 4, + "nodeNumPlan": 1, + "nodePlan": 50404, + "rewardPlan": 50404, + "shopPlan": 50404, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 225, + "planId": 504, + "layerIndex": 5, + "nodeNumPlan": 1, + "nodePlan": 50405, + "rewardPlan": 50405, + "shopPlan": 50405, + "takeoutReward": "31002&500", + "spiritPlan": 504 + }, + { + "id": 226, + "planId": 504, + "layerIndex": 6, + "nodeNumPlan": 2, + "nodePlan": 50406, + "rewardPlan": 50406, + "shopPlan": 50406, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 227, + "planId": 504, + "layerIndex": 7, + "nodeNumPlan": 3, + "nodePlan": 50407, + "rewardPlan": 50407, + "shopPlan": 50407, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 228, + "planId": 504, + "layerIndex": 8, + "nodeNumPlan": 4, + "nodePlan": 50408, + "rewardPlan": 50408, + "shopPlan": 50408, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 229, + "planId": 504, + "layerIndex": 9, + "nodeNumPlan": 1, + "nodePlan": 50409, + "rewardPlan": 50409, + "shopPlan": 50409, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 230, + "planId": 504, + "layerIndex": 10, + "nodeNumPlan": 5, + "nodePlan": 50410, + "rewardPlan": 50410, + "shopPlan": 50410, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 231, + "planId": 504, + "layerIndex": 11, + "nodeNumPlan": 2, + "nodePlan": 50411, + "rewardPlan": 50411, + "shopPlan": 50411, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 232, + "planId": 504, + "layerIndex": 12, + "nodeNumPlan": 5, + "nodePlan": 50412, + "rewardPlan": 50412, + "shopPlan": 50412, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 233, + "planId": 504, + "layerIndex": 13, + "nodeNumPlan": 4, + "nodePlan": 50413, + "rewardPlan": 50413, + "shopPlan": 50413, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 234, + "planId": 504, + "layerIndex": 14, + "nodeNumPlan": 1, + "nodePlan": 50414, + "rewardPlan": 50414, + "shopPlan": 50414, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 235, + "planId": 504, + "layerIndex": 15, + "nodeNumPlan": 1, + "nodePlan": 50415, + "rewardPlan": 50415, + "shopPlan": 50415, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 236, + "planId": 505, + "layerIndex": 1, + "nodeNumPlan": 1, + "nodePlan": 50501, + "rewardPlan": 50501, + "shopPlan": 50501, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 237, + "planId": 505, + "layerIndex": 2, + "nodeNumPlan": 1, + "nodePlan": 50502, + "rewardPlan": 50502, + "shopPlan": 50502, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 238, + "planId": 505, + "layerIndex": 3, + "nodeNumPlan": 5, + "nodePlan": 50503, + "rewardPlan": 50503, + "shopPlan": 50503, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 239, + "planId": 505, + "layerIndex": 4, + "nodeNumPlan": 1, + "nodePlan": 50504, + "rewardPlan": 50504, + "shopPlan": 50504, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 240, + "planId": 505, + "layerIndex": 5, + "nodeNumPlan": 1, + "nodePlan": 50505, + "rewardPlan": 50505, + "shopPlan": 50505, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 241, + "planId": 505, + "layerIndex": 6, + "nodeNumPlan": 2, + "nodePlan": 50506, + "rewardPlan": 50506, + "shopPlan": 50506, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 242, + "planId": 505, + "layerIndex": 7, + "nodeNumPlan": 3, + "nodePlan": 50507, + "rewardPlan": 50507, + "shopPlan": 50507, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 243, + "planId": 505, + "layerIndex": 8, + "nodeNumPlan": 4, + "nodePlan": 50508, + "rewardPlan": 50508, + "shopPlan": 50508, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 244, + "planId": 505, + "layerIndex": 9, + "nodeNumPlan": 1, + "nodePlan": 50509, + "rewardPlan": 50509, + "shopPlan": 50509, + "takeoutReward": "31002&500", + "spiritPlan": 505 + }, + { + "id": 245, + "planId": 505, + "layerIndex": 10, + "nodeNumPlan": 5, + "nodePlan": 50510, + "rewardPlan": 50510, + "shopPlan": 50510, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 246, + "planId": 505, + "layerIndex": 11, + "nodeNumPlan": 2, + "nodePlan": 50511, + "rewardPlan": 50511, + "shopPlan": 50511, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 247, + "planId": 505, + "layerIndex": 12, + "nodeNumPlan": 5, + "nodePlan": 50512, + "rewardPlan": 50512, + "shopPlan": 50512, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 248, + "planId": 505, + "layerIndex": 13, + "nodeNumPlan": 4, + "nodePlan": 50513, + "rewardPlan": 50513, + "shopPlan": 50513, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 249, + "planId": 505, + "layerIndex": 14, + "nodeNumPlan": 3, + "nodePlan": 50514, + "rewardPlan": 50514, + "shopPlan": 50514, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 250, + "planId": 505, + "layerIndex": 15, + "nodeNumPlan": 4, + "nodePlan": 50515, + "rewardPlan": 50515, + "shopPlan": 50515, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 251, + "planId": 505, + "layerIndex": 16, + "nodeNumPlan": 2, + "nodePlan": 50516, + "rewardPlan": 50516, + "shopPlan": 50516, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 252, + "planId": 505, + "layerIndex": 17, + "nodeNumPlan": 5, + "nodePlan": 50517, + "rewardPlan": 50517, + "shopPlan": 50517, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 253, + "planId": 505, + "layerIndex": 18, + "nodeNumPlan": 4, + "nodePlan": 50518, + "rewardPlan": 50518, + "shopPlan": 50518, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 254, + "planId": 505, + "layerIndex": 19, + "nodeNumPlan": 1, + "nodePlan": 50519, + "rewardPlan": 50519, + "shopPlan": 50519, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 255, + "planId": 505, + "layerIndex": 20, + "nodeNumPlan": 1, + "nodePlan": 50520, + "rewardPlan": 50520, + "shopPlan": 50520, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 256, + "planId": 601, + "layerIndex": 1, + "nodeNumPlan": 1, + "nodePlan": 60101, + "rewardPlan": 60101, + "shopPlan": 60101, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 257, + "planId": 601, + "layerIndex": 2, + "nodeNumPlan": 1, + "nodePlan": 60102, + "rewardPlan": 60102, + "shopPlan": 60102, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 258, + "planId": 601, + "layerIndex": 3, + "nodeNumPlan": 5, + "nodePlan": 60103, + "rewardPlan": 60103, + "shopPlan": 60103, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 259, + "planId": 601, + "layerIndex": 4, + "nodeNumPlan": 1, + "nodePlan": 60104, + "rewardPlan": 60104, + "shopPlan": 60104, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 260, + "planId": 601, + "layerIndex": 5, + "nodeNumPlan": 1, + "nodePlan": 60105, + "rewardPlan": 60105, + "shopPlan": 60105, + "takeoutReward": "31002&500", + "spiritPlan": 601 + }, + { + "id": 261, + "planId": 601, + "layerIndex": 6, + "nodeNumPlan": 2, + "nodePlan": 60106, + "rewardPlan": 60106, + "shopPlan": 60106, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 262, + "planId": 601, + "layerIndex": 7, + "nodeNumPlan": 3, + "nodePlan": 60107, + "rewardPlan": 60107, + "shopPlan": 60107, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 263, + "planId": 601, + "layerIndex": 8, + "nodeNumPlan": 4, + "nodePlan": 60108, + "rewardPlan": 60108, + "shopPlan": 60108, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 264, + "planId": 601, + "layerIndex": 9, + "nodeNumPlan": 1, + "nodePlan": 60109, + "rewardPlan": 60109, + "shopPlan": 60109, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 265, + "planId": 601, + "layerIndex": 10, + "nodeNumPlan": 5, + "nodePlan": 60110, + "rewardPlan": 60110, + "shopPlan": 60110, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 266, + "planId": 601, + "layerIndex": 11, + "nodeNumPlan": 2, + "nodePlan": 60111, + "rewardPlan": 60111, + "shopPlan": 60111, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 267, + "planId": 601, + "layerIndex": 12, + "nodeNumPlan": 5, + "nodePlan": 60112, + "rewardPlan": 60112, + "shopPlan": 60112, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 268, + "planId": 601, + "layerIndex": 13, + "nodeNumPlan": 4, + "nodePlan": 60113, + "rewardPlan": 60113, + "shopPlan": 60113, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 269, + "planId": 601, + "layerIndex": 14, + "nodeNumPlan": 1, + "nodePlan": 60114, + "rewardPlan": 60114, + "shopPlan": 60114, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 270, + "planId": 601, + "layerIndex": 15, + "nodeNumPlan": 1, + "nodePlan": 60115, + "rewardPlan": 60115, + "shopPlan": 60115, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 271, + "planId": 602, + "layerIndex": 1, + "nodeNumPlan": 1, + "nodePlan": 60201, + "rewardPlan": 60201, + "shopPlan": 60201, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 272, + "planId": 602, + "layerIndex": 2, + "nodeNumPlan": 1, + "nodePlan": 60202, + "rewardPlan": 60202, + "shopPlan": 60202, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 273, + "planId": 602, + "layerIndex": 3, + "nodeNumPlan": 5, + "nodePlan": 60203, + "rewardPlan": 60203, + "shopPlan": 60203, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 274, + "planId": 602, + "layerIndex": 4, + "nodeNumPlan": 1, + "nodePlan": 60204, + "rewardPlan": 60204, + "shopPlan": 60204, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 275, + "planId": 602, + "layerIndex": 5, + "nodeNumPlan": 1, + "nodePlan": 60205, + "rewardPlan": 60205, + "shopPlan": 60205, + "takeoutReward": "31002&500", + "spiritPlan": 602 + }, + { + "id": 276, + "planId": 602, + "layerIndex": 6, + "nodeNumPlan": 2, + "nodePlan": 60206, + "rewardPlan": 60206, + "shopPlan": 60206, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 277, + "planId": 602, + "layerIndex": 7, + "nodeNumPlan": 3, + "nodePlan": 60207, + "rewardPlan": 60207, + "shopPlan": 60207, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 278, + "planId": 602, + "layerIndex": 8, + "nodeNumPlan": 4, + "nodePlan": 60208, + "rewardPlan": 60208, + "shopPlan": 60208, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 279, + "planId": 602, + "layerIndex": 9, + "nodeNumPlan": 1, + "nodePlan": 60209, + "rewardPlan": 60209, + "shopPlan": 60209, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 280, + "planId": 602, + "layerIndex": 10, + "nodeNumPlan": 5, + "nodePlan": 60210, + "rewardPlan": 60210, + "shopPlan": 60210, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 281, + "planId": 602, + "layerIndex": 11, + "nodeNumPlan": 2, + "nodePlan": 60211, + "rewardPlan": 60211, + "shopPlan": 60211, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 282, + "planId": 602, + "layerIndex": 12, + "nodeNumPlan": 5, + "nodePlan": 60212, + "rewardPlan": 60212, + "shopPlan": 60212, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 283, + "planId": 602, + "layerIndex": 13, + "nodeNumPlan": 4, + "nodePlan": 60213, + "rewardPlan": 60213, + "shopPlan": 60213, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 284, + "planId": 602, + "layerIndex": 14, + "nodeNumPlan": 1, + "nodePlan": 60214, + "rewardPlan": 60214, + "shopPlan": 60214, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 285, + "planId": 602, + "layerIndex": 15, + "nodeNumPlan": 1, + "nodePlan": 60215, + "rewardPlan": 60215, + "shopPlan": 60215, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 286, + "planId": 603, + "layerIndex": 1, + "nodeNumPlan": 1, + "nodePlan": 60301, + "rewardPlan": 60301, + "shopPlan": 60301, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 287, + "planId": 603, + "layerIndex": 2, + "nodeNumPlan": 1, + "nodePlan": 60302, + "rewardPlan": 60302, + "shopPlan": 60302, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 288, + "planId": 603, + "layerIndex": 3, + "nodeNumPlan": 5, + "nodePlan": 60303, + "rewardPlan": 60303, + "shopPlan": 60303, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 289, + "planId": 603, + "layerIndex": 4, + "nodeNumPlan": 1, + "nodePlan": 60304, + "rewardPlan": 60304, + "shopPlan": 60304, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 290, + "planId": 603, + "layerIndex": 5, + "nodeNumPlan": 1, + "nodePlan": 60305, + "rewardPlan": 60305, + "shopPlan": 60305, + "takeoutReward": "31002&500", + "spiritPlan": 603 + }, + { + "id": 291, + "planId": 603, + "layerIndex": 6, + "nodeNumPlan": 2, + "nodePlan": 60306, + "rewardPlan": 60306, + "shopPlan": 60306, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 292, + "planId": 603, + "layerIndex": 7, + "nodeNumPlan": 3, + "nodePlan": 60307, + "rewardPlan": 60307, + "shopPlan": 60307, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 293, + "planId": 603, + "layerIndex": 8, + "nodeNumPlan": 4, + "nodePlan": 60308, + "rewardPlan": 60308, + "shopPlan": 60308, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 294, + "planId": 603, + "layerIndex": 9, + "nodeNumPlan": 1, + "nodePlan": 60309, + "rewardPlan": 60309, + "shopPlan": 60309, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 295, + "planId": 603, + "layerIndex": 10, + "nodeNumPlan": 5, + "nodePlan": 60310, + "rewardPlan": 60310, + "shopPlan": 60310, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 296, + "planId": 603, + "layerIndex": 11, + "nodeNumPlan": 2, + "nodePlan": 60311, + "rewardPlan": 60311, + "shopPlan": 60311, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 297, + "planId": 603, + "layerIndex": 12, + "nodeNumPlan": 5, + "nodePlan": 60312, + "rewardPlan": 60312, + "shopPlan": 60312, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 298, + "planId": 603, + "layerIndex": 13, + "nodeNumPlan": 4, + "nodePlan": 60313, + "rewardPlan": 60313, + "shopPlan": 60313, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 299, + "planId": 603, + "layerIndex": 14, + "nodeNumPlan": 1, + "nodePlan": 60314, + "rewardPlan": 60314, + "shopPlan": 60314, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 300, + "planId": 603, + "layerIndex": 15, + "nodeNumPlan": 1, + "nodePlan": 60315, + "rewardPlan": 60315, + "shopPlan": 60315, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 301, + "planId": 604, + "layerIndex": 1, + "nodeNumPlan": 1, + "nodePlan": 60401, + "rewardPlan": 60401, + "shopPlan": 60401, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 302, + "planId": 604, + "layerIndex": 2, + "nodeNumPlan": 1, + "nodePlan": 60402, + "rewardPlan": 60402, + "shopPlan": 60402, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 303, + "planId": 604, + "layerIndex": 3, + "nodeNumPlan": 5, + "nodePlan": 60403, + "rewardPlan": 60403, + "shopPlan": 60403, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 304, + "planId": 604, + "layerIndex": 4, + "nodeNumPlan": 1, + "nodePlan": 60404, + "rewardPlan": 60404, + "shopPlan": 60404, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 305, + "planId": 604, + "layerIndex": 5, + "nodeNumPlan": 1, + "nodePlan": 60405, + "rewardPlan": 60405, + "shopPlan": 60405, + "takeoutReward": "31002&500", + "spiritPlan": 604 + }, + { + "id": 306, + "planId": 604, + "layerIndex": 6, + "nodeNumPlan": 2, + "nodePlan": 60406, + "rewardPlan": 60406, + "shopPlan": 60406, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 307, + "planId": 604, + "layerIndex": 7, + "nodeNumPlan": 3, + "nodePlan": 60407, + "rewardPlan": 60407, + "shopPlan": 60407, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 308, + "planId": 604, + "layerIndex": 8, + "nodeNumPlan": 4, + "nodePlan": 60408, + "rewardPlan": 60408, + "shopPlan": 60408, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 309, + "planId": 604, + "layerIndex": 9, + "nodeNumPlan": 1, + "nodePlan": 60409, + "rewardPlan": 60409, + "shopPlan": 60409, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 310, + "planId": 604, + "layerIndex": 10, + "nodeNumPlan": 5, + "nodePlan": 60410, + "rewardPlan": 60410, + "shopPlan": 60410, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 311, + "planId": 604, + "layerIndex": 11, + "nodeNumPlan": 2, + "nodePlan": 60411, + "rewardPlan": 60411, + "shopPlan": 60411, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 312, + "planId": 604, + "layerIndex": 12, + "nodeNumPlan": 5, + "nodePlan": 60412, + "rewardPlan": 60412, + "shopPlan": 60412, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 313, + "planId": 604, + "layerIndex": 13, + "nodeNumPlan": 4, + "nodePlan": 60413, + "rewardPlan": 60413, + "shopPlan": 60413, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 314, + "planId": 604, + "layerIndex": 14, + "nodeNumPlan": 1, + "nodePlan": 60414, + "rewardPlan": 60414, + "shopPlan": 60414, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 315, + "planId": 604, + "layerIndex": 15, + "nodeNumPlan": 1, + "nodePlan": 60415, + "rewardPlan": 60415, + "shopPlan": 60415, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 316, + "planId": 605, + "layerIndex": 1, + "nodeNumPlan": 1, + "nodePlan": 60501, + "rewardPlan": 60501, + "shopPlan": 60501, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 317, + "planId": 605, + "layerIndex": 2, + "nodeNumPlan": 1, + "nodePlan": 60502, + "rewardPlan": 60502, + "shopPlan": 60502, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 318, + "planId": 605, + "layerIndex": 3, + "nodeNumPlan": 5, + "nodePlan": 60503, + "rewardPlan": 60503, + "shopPlan": 60503, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 319, + "planId": 605, + "layerIndex": 4, + "nodeNumPlan": 1, + "nodePlan": 60504, + "rewardPlan": 60504, + "shopPlan": 60504, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 320, + "planId": 605, + "layerIndex": 5, + "nodeNumPlan": 1, + "nodePlan": 60505, + "rewardPlan": 60505, + "shopPlan": 60505, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 321, + "planId": 605, + "layerIndex": 6, + "nodeNumPlan": 2, + "nodePlan": 60506, + "rewardPlan": 60506, + "shopPlan": 60506, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 322, + "planId": 605, + "layerIndex": 7, + "nodeNumPlan": 3, + "nodePlan": 60507, + "rewardPlan": 60507, + "shopPlan": 60507, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 323, + "planId": 605, + "layerIndex": 8, + "nodeNumPlan": 4, + "nodePlan": 60508, + "rewardPlan": 60508, + "shopPlan": 60508, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 324, + "planId": 605, + "layerIndex": 9, + "nodeNumPlan": 1, + "nodePlan": 60509, + "rewardPlan": 60509, + "shopPlan": 60509, + "takeoutReward": "31002&500", + "spiritPlan": 605 + }, + { + "id": 325, + "planId": 605, + "layerIndex": 10, + "nodeNumPlan": 5, + "nodePlan": 60510, + "rewardPlan": 60510, + "shopPlan": 60510, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 326, + "planId": 605, + "layerIndex": 11, + "nodeNumPlan": 2, + "nodePlan": 60511, + "rewardPlan": 60511, + "shopPlan": 60511, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 327, + "planId": 605, + "layerIndex": 12, + "nodeNumPlan": 5, + "nodePlan": 60512, + "rewardPlan": 60512, + "shopPlan": 60512, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 328, + "planId": 605, + "layerIndex": 13, + "nodeNumPlan": 4, + "nodePlan": 60513, + "rewardPlan": 60513, + "shopPlan": 60513, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 329, + "planId": 605, + "layerIndex": 14, + "nodeNumPlan": 3, + "nodePlan": 60514, + "rewardPlan": 60514, + "shopPlan": 60514, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 330, + "planId": 605, + "layerIndex": 15, + "nodeNumPlan": 4, + "nodePlan": 60515, + "rewardPlan": 60515, + "shopPlan": 60515, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 331, + "planId": 605, + "layerIndex": 16, + "nodeNumPlan": 2, + "nodePlan": 60516, + "rewardPlan": 60516, + "shopPlan": 60516, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 332, + "planId": 605, + "layerIndex": 17, + "nodeNumPlan": 5, + "nodePlan": 60517, + "rewardPlan": 60517, + "shopPlan": 60517, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 333, + "planId": 605, + "layerIndex": 18, + "nodeNumPlan": 4, + "nodePlan": 60518, + "rewardPlan": 60518, + "shopPlan": 60518, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 334, + "planId": 605, + "layerIndex": 19, + "nodeNumPlan": 1, + "nodePlan": 60519, + "rewardPlan": 60519, + "shopPlan": 60519, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 335, + "planId": 605, + "layerIndex": 20, + "nodeNumPlan": 1, + "nodePlan": 60520, + "rewardPlan": 60520, + "shopPlan": 60520, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 336, + "planId": 701, + "layerIndex": 1, + "nodeNumPlan": 1, + "nodePlan": 70101, + "rewardPlan": 70101, + "shopPlan": 70101, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 337, + "planId": 701, + "layerIndex": 2, + "nodeNumPlan": 1, + "nodePlan": 70102, + "rewardPlan": 70102, + "shopPlan": 70102, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 338, + "planId": 701, + "layerIndex": 3, + "nodeNumPlan": 5, + "nodePlan": 70103, + "rewardPlan": 70103, + "shopPlan": 70103, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 339, + "planId": 701, + "layerIndex": 4, + "nodeNumPlan": 1, + "nodePlan": 70104, + "rewardPlan": 70104, + "shopPlan": 70104, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 340, + "planId": 701, + "layerIndex": 5, + "nodeNumPlan": 1, + "nodePlan": 70105, + "rewardPlan": 70105, + "shopPlan": 70105, + "takeoutReward": "31002&500", + "spiritPlan": 701 + }, + { + "id": 341, + "planId": 701, + "layerIndex": 6, + "nodeNumPlan": 2, + "nodePlan": 70106, + "rewardPlan": 70106, + "shopPlan": 70106, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 342, + "planId": 701, + "layerIndex": 7, + "nodeNumPlan": 3, + "nodePlan": 70107, + "rewardPlan": 70107, + "shopPlan": 70107, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 343, + "planId": 701, + "layerIndex": 8, + "nodeNumPlan": 4, + "nodePlan": 70108, + "rewardPlan": 70108, + "shopPlan": 70108, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 344, + "planId": 701, + "layerIndex": 9, + "nodeNumPlan": 1, + "nodePlan": 70109, + "rewardPlan": 70109, + "shopPlan": 70109, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 345, + "planId": 701, + "layerIndex": 10, + "nodeNumPlan": 5, + "nodePlan": 70110, + "rewardPlan": 70110, + "shopPlan": 70110, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 346, + "planId": 701, + "layerIndex": 11, + "nodeNumPlan": 2, + "nodePlan": 70111, + "rewardPlan": 70111, + "shopPlan": 70111, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 347, + "planId": 701, + "layerIndex": 12, + "nodeNumPlan": 5, + "nodePlan": 70112, + "rewardPlan": 70112, + "shopPlan": 70112, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 348, + "planId": 701, + "layerIndex": 13, + "nodeNumPlan": 4, + "nodePlan": 70113, + "rewardPlan": 70113, + "shopPlan": 70113, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 349, + "planId": 701, + "layerIndex": 14, + "nodeNumPlan": 1, + "nodePlan": 70114, + "rewardPlan": 70114, + "shopPlan": 70114, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 350, + "planId": 701, + "layerIndex": 15, + "nodeNumPlan": 1, + "nodePlan": 70115, + "rewardPlan": 70115, + "shopPlan": 70115, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 351, + "planId": 702, + "layerIndex": 1, + "nodeNumPlan": 1, + "nodePlan": 70201, + "rewardPlan": 70201, + "shopPlan": 70201, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 352, + "planId": 702, + "layerIndex": 2, + "nodeNumPlan": 1, + "nodePlan": 70202, + "rewardPlan": 70202, + "shopPlan": 70202, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 353, + "planId": 702, + "layerIndex": 3, + "nodeNumPlan": 5, + "nodePlan": 70203, + "rewardPlan": 70203, + "shopPlan": 70203, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 354, + "planId": 702, + "layerIndex": 4, + "nodeNumPlan": 1, + "nodePlan": 70204, + "rewardPlan": 70204, + "shopPlan": 70204, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 355, + "planId": 702, + "layerIndex": 5, + "nodeNumPlan": 1, + "nodePlan": 70205, + "rewardPlan": 70205, + "shopPlan": 70205, + "takeoutReward": "31002&500", + "spiritPlan": 702 + }, + { + "id": 356, + "planId": 702, + "layerIndex": 6, + "nodeNumPlan": 2, + "nodePlan": 70206, + "rewardPlan": 70206, + "shopPlan": 70206, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 357, + "planId": 702, + "layerIndex": 7, + "nodeNumPlan": 3, + "nodePlan": 70207, + "rewardPlan": 70207, + "shopPlan": 70207, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 358, + "planId": 702, + "layerIndex": 8, + "nodeNumPlan": 4, + "nodePlan": 70208, + "rewardPlan": 70208, + "shopPlan": 70208, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 359, + "planId": 702, + "layerIndex": 9, + "nodeNumPlan": 1, + "nodePlan": 70209, + "rewardPlan": 70209, + "shopPlan": 70209, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 360, + "planId": 702, + "layerIndex": 10, + "nodeNumPlan": 5, + "nodePlan": 70210, + "rewardPlan": 70210, + "shopPlan": 70210, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 361, + "planId": 702, + "layerIndex": 11, + "nodeNumPlan": 2, + "nodePlan": 70211, + "rewardPlan": 70211, + "shopPlan": 70211, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 362, + "planId": 702, + "layerIndex": 12, + "nodeNumPlan": 5, + "nodePlan": 70212, + "rewardPlan": 70212, + "shopPlan": 70212, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 363, + "planId": 702, + "layerIndex": 13, + "nodeNumPlan": 4, + "nodePlan": 70213, + "rewardPlan": 70213, + "shopPlan": 70213, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 364, + "planId": 702, + "layerIndex": 14, + "nodeNumPlan": 1, + "nodePlan": 70214, + "rewardPlan": 70214, + "shopPlan": 70214, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 365, + "planId": 702, + "layerIndex": 15, + "nodeNumPlan": 1, + "nodePlan": 70215, + "rewardPlan": 70215, + "shopPlan": 70215, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 366, + "planId": 703, + "layerIndex": 1, + "nodeNumPlan": 1, + "nodePlan": 70301, + "rewardPlan": 70301, + "shopPlan": 70301, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 367, + "planId": 703, + "layerIndex": 2, + "nodeNumPlan": 1, + "nodePlan": 70302, + "rewardPlan": 70302, + "shopPlan": 70302, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 368, + "planId": 703, + "layerIndex": 3, + "nodeNumPlan": 5, + "nodePlan": 70303, + "rewardPlan": 70303, + "shopPlan": 70303, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 369, + "planId": 703, + "layerIndex": 4, + "nodeNumPlan": 1, + "nodePlan": 70304, + "rewardPlan": 70304, + "shopPlan": 70304, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 370, + "planId": 703, + "layerIndex": 5, + "nodeNumPlan": 1, + "nodePlan": 70305, + "rewardPlan": 70305, + "shopPlan": 70305, + "takeoutReward": "31002&500", + "spiritPlan": 703 + }, + { + "id": 371, + "planId": 703, + "layerIndex": 6, + "nodeNumPlan": 2, + "nodePlan": 70306, + "rewardPlan": 70306, + "shopPlan": 70306, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 372, + "planId": 703, + "layerIndex": 7, + "nodeNumPlan": 3, + "nodePlan": 70307, + "rewardPlan": 70307, + "shopPlan": 70307, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 373, + "planId": 703, + "layerIndex": 8, + "nodeNumPlan": 4, + "nodePlan": 70308, + "rewardPlan": 70308, + "shopPlan": 70308, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 374, + "planId": 703, + "layerIndex": 9, + "nodeNumPlan": 1, + "nodePlan": 70309, + "rewardPlan": 70309, + "shopPlan": 70309, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 375, + "planId": 703, + "layerIndex": 10, + "nodeNumPlan": 5, + "nodePlan": 70310, + "rewardPlan": 70310, + "shopPlan": 70310, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 376, + "planId": 703, + "layerIndex": 11, + "nodeNumPlan": 2, + "nodePlan": 70311, + "rewardPlan": 70311, + "shopPlan": 70311, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 377, + "planId": 703, + "layerIndex": 12, + "nodeNumPlan": 5, + "nodePlan": 70312, + "rewardPlan": 70312, + "shopPlan": 70312, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 378, + "planId": 703, + "layerIndex": 13, + "nodeNumPlan": 4, + "nodePlan": 70313, + "rewardPlan": 70313, + "shopPlan": 70313, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 379, + "planId": 703, + "layerIndex": 14, + "nodeNumPlan": 1, + "nodePlan": 70314, + "rewardPlan": 70314, + "shopPlan": 70314, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 380, + "planId": 703, + "layerIndex": 15, + "nodeNumPlan": 1, + "nodePlan": 70315, + "rewardPlan": 70315, + "shopPlan": 70315, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 381, + "planId": 704, + "layerIndex": 1, + "nodeNumPlan": 1, + "nodePlan": 70401, + "rewardPlan": 70401, + "shopPlan": 70401, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 382, + "planId": 704, + "layerIndex": 2, + "nodeNumPlan": 1, + "nodePlan": 70402, + "rewardPlan": 70402, + "shopPlan": 70402, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 383, + "planId": 704, + "layerIndex": 3, + "nodeNumPlan": 5, + "nodePlan": 70403, + "rewardPlan": 70403, + "shopPlan": 70403, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 384, + "planId": 704, + "layerIndex": 4, + "nodeNumPlan": 1, + "nodePlan": 70404, + "rewardPlan": 70404, + "shopPlan": 70404, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 385, + "planId": 704, + "layerIndex": 5, + "nodeNumPlan": 1, + "nodePlan": 70405, + "rewardPlan": 70405, + "shopPlan": 70405, + "takeoutReward": "31002&500", + "spiritPlan": 704 + }, + { + "id": 386, + "planId": 704, + "layerIndex": 6, + "nodeNumPlan": 2, + "nodePlan": 70406, + "rewardPlan": 70406, + "shopPlan": 70406, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 387, + "planId": 704, + "layerIndex": 7, + "nodeNumPlan": 3, + "nodePlan": 70407, + "rewardPlan": 70407, + "shopPlan": 70407, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 388, + "planId": 704, + "layerIndex": 8, + "nodeNumPlan": 4, + "nodePlan": 70408, + "rewardPlan": 70408, + "shopPlan": 70408, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 389, + "planId": 704, + "layerIndex": 9, + "nodeNumPlan": 1, + "nodePlan": 70409, + "rewardPlan": 70409, + "shopPlan": 70409, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 390, + "planId": 704, + "layerIndex": 10, + "nodeNumPlan": 5, + "nodePlan": 70410, + "rewardPlan": 70410, + "shopPlan": 70410, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 391, + "planId": 704, + "layerIndex": 11, + "nodeNumPlan": 2, + "nodePlan": 70411, + "rewardPlan": 70411, + "shopPlan": 70411, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 392, + "planId": 704, + "layerIndex": 12, + "nodeNumPlan": 5, + "nodePlan": 70412, + "rewardPlan": 70412, + "shopPlan": 70412, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 393, + "planId": 704, + "layerIndex": 13, + "nodeNumPlan": 4, + "nodePlan": 70413, + "rewardPlan": 70413, + "shopPlan": 70413, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 394, + "planId": 704, + "layerIndex": 14, + "nodeNumPlan": 1, + "nodePlan": 70414, + "rewardPlan": 70414, + "shopPlan": 70414, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 395, + "planId": 704, + "layerIndex": 15, + "nodeNumPlan": 1, + "nodePlan": 70415, + "rewardPlan": 70415, + "shopPlan": 70415, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 396, + "planId": 705, + "layerIndex": 1, + "nodeNumPlan": 1, + "nodePlan": 70501, + "rewardPlan": 70501, + "shopPlan": 70501, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 397, + "planId": 705, + "layerIndex": 2, + "nodeNumPlan": 1, + "nodePlan": 70502, + "rewardPlan": 70502, + "shopPlan": 70502, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 398, + "planId": 705, + "layerIndex": 3, + "nodeNumPlan": 5, + "nodePlan": 70503, + "rewardPlan": 70503, + "shopPlan": 70503, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 399, + "planId": 705, + "layerIndex": 4, + "nodeNumPlan": 1, + "nodePlan": 70504, + "rewardPlan": 70504, + "shopPlan": 70504, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 400, + "planId": 705, + "layerIndex": 5, + "nodeNumPlan": 1, + "nodePlan": 70505, + "rewardPlan": 70505, + "shopPlan": 70505, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 401, + "planId": 705, + "layerIndex": 6, + "nodeNumPlan": 2, + "nodePlan": 70506, + "rewardPlan": 70506, + "shopPlan": 70506, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 402, + "planId": 705, + "layerIndex": 7, + "nodeNumPlan": 3, + "nodePlan": 70507, + "rewardPlan": 70507, + "shopPlan": 70507, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 403, + "planId": 705, + "layerIndex": 8, + "nodeNumPlan": 4, + "nodePlan": 70508, + "rewardPlan": 70508, + "shopPlan": 70508, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 404, + "planId": 705, + "layerIndex": 9, + "nodeNumPlan": 1, + "nodePlan": 70509, + "rewardPlan": 70509, + "shopPlan": 70509, + "takeoutReward": "31002&500", + "spiritPlan": 705 + }, + { + "id": 405, + "planId": 705, + "layerIndex": 10, + "nodeNumPlan": 5, + "nodePlan": 70510, + "rewardPlan": 70510, + "shopPlan": 70510, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 406, + "planId": 705, + "layerIndex": 11, + "nodeNumPlan": 2, + "nodePlan": 70511, + "rewardPlan": 70511, + "shopPlan": 70511, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 407, + "planId": 705, + "layerIndex": 12, + "nodeNumPlan": 5, + "nodePlan": 70512, + "rewardPlan": 70512, + "shopPlan": 70512, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 408, + "planId": 705, + "layerIndex": 13, + "nodeNumPlan": 4, + "nodePlan": 70513, + "rewardPlan": 70513, + "shopPlan": 70513, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 409, + "planId": 705, + "layerIndex": 14, + "nodeNumPlan": 3, + "nodePlan": 70514, + "rewardPlan": 70514, + "shopPlan": 70514, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 410, + "planId": 705, + "layerIndex": 15, + "nodeNumPlan": 4, + "nodePlan": 70515, + "rewardPlan": 70515, + "shopPlan": 70515, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 411, + "planId": 705, + "layerIndex": 16, + "nodeNumPlan": 2, + "nodePlan": 70516, + "rewardPlan": 70516, + "shopPlan": 70516, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 412, + "planId": 705, + "layerIndex": 17, + "nodeNumPlan": 5, + "nodePlan": 70517, + "rewardPlan": 70517, + "shopPlan": 70517, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 413, + "planId": 705, + "layerIndex": 18, + "nodeNumPlan": 4, + "nodePlan": 70518, + "rewardPlan": 70518, + "shopPlan": 70518, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 414, + "planId": 705, + "layerIndex": 19, + "nodeNumPlan": 1, + "nodePlan": 70519, + "rewardPlan": 70519, + "shopPlan": 70519, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 415, + "planId": 705, + "layerIndex": 20, + "nodeNumPlan": 1, + "nodePlan": 70520, + "rewardPlan": 70520, + "shopPlan": 70520, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 416, + "planId": 801, + "layerIndex": 1, + "nodeNumPlan": 1, + "nodePlan": 80101, + "rewardPlan": 80101, + "shopPlan": 80101, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 417, + "planId": 801, + "layerIndex": 2, + "nodeNumPlan": 1, + "nodePlan": 80102, + "rewardPlan": 80102, + "shopPlan": 80102, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 418, + "planId": 801, + "layerIndex": 3, + "nodeNumPlan": 5, + "nodePlan": 80103, + "rewardPlan": 80103, + "shopPlan": 80103, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 419, + "planId": 801, + "layerIndex": 4, + "nodeNumPlan": 1, + "nodePlan": 80104, + "rewardPlan": 80104, + "shopPlan": 80104, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 420, + "planId": 801, + "layerIndex": 5, + "nodeNumPlan": 1, + "nodePlan": 80105, + "rewardPlan": 80105, + "shopPlan": 80105, + "takeoutReward": "31002&500", + "spiritPlan": 801 + }, + { + "id": 421, + "planId": 801, + "layerIndex": 6, + "nodeNumPlan": 2, + "nodePlan": 80106, + "rewardPlan": 80106, + "shopPlan": 80106, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 422, + "planId": 801, + "layerIndex": 7, + "nodeNumPlan": 3, + "nodePlan": 80107, + "rewardPlan": 80107, + "shopPlan": 80107, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 423, + "planId": 801, + "layerIndex": 8, + "nodeNumPlan": 4, + "nodePlan": 80108, + "rewardPlan": 80108, + "shopPlan": 80108, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 424, + "planId": 801, + "layerIndex": 9, + "nodeNumPlan": 1, + "nodePlan": 80109, + "rewardPlan": 80109, + "shopPlan": 80109, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 425, + "planId": 801, + "layerIndex": 10, + "nodeNumPlan": 5, + "nodePlan": 80110, + "rewardPlan": 80110, + "shopPlan": 80110, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 426, + "planId": 801, + "layerIndex": 11, + "nodeNumPlan": 2, + "nodePlan": 80111, + "rewardPlan": 80111, + "shopPlan": 80111, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 427, + "planId": 801, + "layerIndex": 12, + "nodeNumPlan": 5, + "nodePlan": 80112, + "rewardPlan": 80112, + "shopPlan": 80112, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 428, + "planId": 801, + "layerIndex": 13, + "nodeNumPlan": 4, + "nodePlan": 80113, + "rewardPlan": 80113, + "shopPlan": 80113, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 429, + "planId": 801, + "layerIndex": 14, + "nodeNumPlan": 1, + "nodePlan": 80114, + "rewardPlan": 80114, + "shopPlan": 80114, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 430, + "planId": 801, + "layerIndex": 15, + "nodeNumPlan": 1, + "nodePlan": 80115, + "rewardPlan": 80115, + "shopPlan": 80115, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 431, + "planId": 802, + "layerIndex": 1, + "nodeNumPlan": 1, + "nodePlan": 80201, + "rewardPlan": 80201, + "shopPlan": 80201, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 432, + "planId": 802, + "layerIndex": 2, + "nodeNumPlan": 1, + "nodePlan": 80202, + "rewardPlan": 80202, + "shopPlan": 80202, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 433, + "planId": 802, + "layerIndex": 3, + "nodeNumPlan": 5, + "nodePlan": 80203, + "rewardPlan": 80203, + "shopPlan": 80203, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 434, + "planId": 802, + "layerIndex": 4, + "nodeNumPlan": 1, + "nodePlan": 80204, + "rewardPlan": 80204, + "shopPlan": 80204, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 435, + "planId": 802, + "layerIndex": 5, + "nodeNumPlan": 1, + "nodePlan": 80205, + "rewardPlan": 80205, + "shopPlan": 80205, + "takeoutReward": "31002&500", + "spiritPlan": 802 + }, + { + "id": 436, + "planId": 802, + "layerIndex": 6, + "nodeNumPlan": 2, + "nodePlan": 80206, + "rewardPlan": 80206, + "shopPlan": 80206, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 437, + "planId": 802, + "layerIndex": 7, + "nodeNumPlan": 3, + "nodePlan": 80207, + "rewardPlan": 80207, + "shopPlan": 80207, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 438, + "planId": 802, + "layerIndex": 8, + "nodeNumPlan": 4, + "nodePlan": 80208, + "rewardPlan": 80208, + "shopPlan": 80208, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 439, + "planId": 802, + "layerIndex": 9, + "nodeNumPlan": 1, + "nodePlan": 80209, + "rewardPlan": 80209, + "shopPlan": 80209, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 440, + "planId": 802, + "layerIndex": 10, + "nodeNumPlan": 5, + "nodePlan": 80210, + "rewardPlan": 80210, + "shopPlan": 80210, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 441, + "planId": 802, + "layerIndex": 11, + "nodeNumPlan": 2, + "nodePlan": 80211, + "rewardPlan": 80211, + "shopPlan": 80211, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 442, + "planId": 802, + "layerIndex": 12, + "nodeNumPlan": 5, + "nodePlan": 80212, + "rewardPlan": 80212, + "shopPlan": 80212, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 443, + "planId": 802, + "layerIndex": 13, + "nodeNumPlan": 4, + "nodePlan": 80213, + "rewardPlan": 80213, + "shopPlan": 80213, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 444, + "planId": 802, + "layerIndex": 14, + "nodeNumPlan": 1, + "nodePlan": 80214, + "rewardPlan": 80214, + "shopPlan": 80214, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 445, + "planId": 802, + "layerIndex": 15, + "nodeNumPlan": 1, + "nodePlan": 80215, + "rewardPlan": 80215, + "shopPlan": 80215, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 446, + "planId": 803, + "layerIndex": 1, + "nodeNumPlan": 1, + "nodePlan": 80301, + "rewardPlan": 80301, + "shopPlan": 80301, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 447, + "planId": 803, + "layerIndex": 2, + "nodeNumPlan": 1, + "nodePlan": 80302, + "rewardPlan": 80302, + "shopPlan": 80302, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 448, + "planId": 803, + "layerIndex": 3, + "nodeNumPlan": 5, + "nodePlan": 80303, + "rewardPlan": 80303, + "shopPlan": 80303, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 449, + "planId": 803, + "layerIndex": 4, + "nodeNumPlan": 1, + "nodePlan": 80304, + "rewardPlan": 80304, + "shopPlan": 80304, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 450, + "planId": 803, + "layerIndex": 5, + "nodeNumPlan": 1, + "nodePlan": 80305, + "rewardPlan": 80305, + "shopPlan": 80305, + "takeoutReward": "31002&500", + "spiritPlan": 803 + }, + { + "id": 451, + "planId": 803, + "layerIndex": 6, + "nodeNumPlan": 2, + "nodePlan": 80306, + "rewardPlan": 80306, + "shopPlan": 80306, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 452, + "planId": 803, + "layerIndex": 7, + "nodeNumPlan": 3, + "nodePlan": 80307, + "rewardPlan": 80307, + "shopPlan": 80307, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 453, + "planId": 803, + "layerIndex": 8, + "nodeNumPlan": 4, + "nodePlan": 80308, + "rewardPlan": 80308, + "shopPlan": 80308, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 454, + "planId": 803, + "layerIndex": 9, + "nodeNumPlan": 1, + "nodePlan": 80309, + "rewardPlan": 80309, + "shopPlan": 80309, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 455, + "planId": 803, + "layerIndex": 10, + "nodeNumPlan": 5, + "nodePlan": 80310, + "rewardPlan": 80310, + "shopPlan": 80310, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 456, + "planId": 803, + "layerIndex": 11, + "nodeNumPlan": 2, + "nodePlan": 80311, + "rewardPlan": 80311, + "shopPlan": 80311, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 457, + "planId": 803, + "layerIndex": 12, + "nodeNumPlan": 5, + "nodePlan": 80312, + "rewardPlan": 80312, + "shopPlan": 80312, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 458, + "planId": 803, + "layerIndex": 13, + "nodeNumPlan": 4, + "nodePlan": 80313, + "rewardPlan": 80313, + "shopPlan": 80313, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 459, + "planId": 803, + "layerIndex": 14, + "nodeNumPlan": 1, + "nodePlan": 80314, + "rewardPlan": 80314, + "shopPlan": 80314, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 460, + "planId": 803, + "layerIndex": 15, + "nodeNumPlan": 1, + "nodePlan": 80315, + "rewardPlan": 80315, + "shopPlan": 80315, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 461, + "planId": 804, + "layerIndex": 1, + "nodeNumPlan": 1, + "nodePlan": 80401, + "rewardPlan": 80401, + "shopPlan": 80401, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 462, + "planId": 804, + "layerIndex": 2, + "nodeNumPlan": 1, + "nodePlan": 80402, + "rewardPlan": 80402, + "shopPlan": 80402, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 463, + "planId": 804, + "layerIndex": 3, + "nodeNumPlan": 5, + "nodePlan": 80403, + "rewardPlan": 80403, + "shopPlan": 80403, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 464, + "planId": 804, + "layerIndex": 4, + "nodeNumPlan": 1, + "nodePlan": 80404, + "rewardPlan": 80404, + "shopPlan": 80404, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 465, + "planId": 804, + "layerIndex": 5, + "nodeNumPlan": 1, + "nodePlan": 80405, + "rewardPlan": 80405, + "shopPlan": 80405, + "takeoutReward": "31002&500", + "spiritPlan": 804 + }, + { + "id": 466, + "planId": 804, + "layerIndex": 6, + "nodeNumPlan": 2, + "nodePlan": 80406, + "rewardPlan": 80406, + "shopPlan": 80406, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 467, + "planId": 804, + "layerIndex": 7, + "nodeNumPlan": 3, + "nodePlan": 80407, + "rewardPlan": 80407, + "shopPlan": 80407, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 468, + "planId": 804, + "layerIndex": 8, + "nodeNumPlan": 4, + "nodePlan": 80408, + "rewardPlan": 80408, + "shopPlan": 80408, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 469, + "planId": 804, + "layerIndex": 9, + "nodeNumPlan": 1, + "nodePlan": 80409, + "rewardPlan": 80409, + "shopPlan": 80409, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 470, + "planId": 804, + "layerIndex": 10, + "nodeNumPlan": 5, + "nodePlan": 80410, + "rewardPlan": 80410, + "shopPlan": 80410, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 471, + "planId": 804, + "layerIndex": 11, + "nodeNumPlan": 2, + "nodePlan": 80411, + "rewardPlan": 80411, + "shopPlan": 80411, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 472, + "planId": 804, + "layerIndex": 12, + "nodeNumPlan": 5, + "nodePlan": 80412, + "rewardPlan": 80412, + "shopPlan": 80412, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 473, + "planId": 804, + "layerIndex": 13, + "nodeNumPlan": 4, + "nodePlan": 80413, + "rewardPlan": 80413, + "shopPlan": 80413, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 474, + "planId": 804, + "layerIndex": 14, + "nodeNumPlan": 1, + "nodePlan": 80414, + "rewardPlan": 80414, + "shopPlan": 80414, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 475, + "planId": 804, + "layerIndex": 15, + "nodeNumPlan": 1, + "nodePlan": 80415, + "rewardPlan": 80415, + "shopPlan": 80415, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 476, + "planId": 805, + "layerIndex": 1, + "nodeNumPlan": 1, + "nodePlan": 80501, + "rewardPlan": 80501, + "shopPlan": 80501, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 477, + "planId": 805, + "layerIndex": 2, + "nodeNumPlan": 1, + "nodePlan": 80502, + "rewardPlan": 80502, + "shopPlan": 80502, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 478, + "planId": 805, + "layerIndex": 3, + "nodeNumPlan": 5, + "nodePlan": 80503, + "rewardPlan": 80503, + "shopPlan": 80503, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 479, + "planId": 805, + "layerIndex": 4, + "nodeNumPlan": 1, + "nodePlan": 80504, + "rewardPlan": 80504, + "shopPlan": 80504, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 480, + "planId": 805, + "layerIndex": 5, + "nodeNumPlan": 1, + "nodePlan": 80505, + "rewardPlan": 80505, + "shopPlan": 80505, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 481, + "planId": 805, + "layerIndex": 6, + "nodeNumPlan": 2, + "nodePlan": 80506, + "rewardPlan": 80506, + "shopPlan": 80506, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 482, + "planId": 805, + "layerIndex": 7, + "nodeNumPlan": 3, + "nodePlan": 80507, + "rewardPlan": 80507, + "shopPlan": 80507, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 483, + "planId": 805, + "layerIndex": 8, + "nodeNumPlan": 4, + "nodePlan": 80508, + "rewardPlan": 80508, + "shopPlan": 80508, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 484, + "planId": 805, + "layerIndex": 9, + "nodeNumPlan": 1, + "nodePlan": 80509, + "rewardPlan": 80509, + "shopPlan": 80509, + "takeoutReward": "31002&500", + "spiritPlan": 805 + }, + { + "id": 485, + "planId": 805, + "layerIndex": 10, + "nodeNumPlan": 5, + "nodePlan": 80510, + "rewardPlan": 80510, + "shopPlan": 80510, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 486, + "planId": 805, + "layerIndex": 11, + "nodeNumPlan": 2, + "nodePlan": 80511, + "rewardPlan": 80511, + "shopPlan": 80511, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 487, + "planId": 805, + "layerIndex": 12, + "nodeNumPlan": 5, + "nodePlan": 80512, + "rewardPlan": 80512, + "shopPlan": 80512, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 488, + "planId": 805, + "layerIndex": 13, + "nodeNumPlan": 4, + "nodePlan": 80513, + "rewardPlan": 80513, + "shopPlan": 80513, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 489, + "planId": 805, + "layerIndex": 14, + "nodeNumPlan": 3, + "nodePlan": 80514, + "rewardPlan": 80514, + "shopPlan": 80514, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 490, + "planId": 805, + "layerIndex": 15, + "nodeNumPlan": 4, + "nodePlan": 80515, + "rewardPlan": 80515, + "shopPlan": 80515, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 491, + "planId": 805, + "layerIndex": 16, + "nodeNumPlan": 2, + "nodePlan": 80516, + "rewardPlan": 80516, + "shopPlan": 80516, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 492, + "planId": 805, + "layerIndex": 17, + "nodeNumPlan": 5, + "nodePlan": 80517, + "rewardPlan": 80517, + "shopPlan": 80517, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 493, + "planId": 805, + "layerIndex": 18, + "nodeNumPlan": 4, + "nodePlan": 80518, + "rewardPlan": 80518, + "shopPlan": 80518, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 494, + "planId": 805, + "layerIndex": 19, + "nodeNumPlan": 1, + "nodePlan": 80519, + "rewardPlan": 80519, + "shopPlan": 80519, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 495, + "planId": 805, + "layerIndex": 20, + "nodeNumPlan": 1, + "nodePlan": 80520, + "rewardPlan": 80520, + "shopPlan": 80520, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 496, + "planId": 901, + "layerIndex": 1, + "nodeNumPlan": 1, + "nodePlan": 90101, + "rewardPlan": 90101, + "shopPlan": 90101, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 497, + "planId": 901, + "layerIndex": 2, + "nodeNumPlan": 1, + "nodePlan": 90102, + "rewardPlan": 90102, + "shopPlan": 90102, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 498, + "planId": 901, + "layerIndex": 3, + "nodeNumPlan": 5, + "nodePlan": 90103, + "rewardPlan": 90103, + "shopPlan": 90103, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 499, + "planId": 901, + "layerIndex": 4, + "nodeNumPlan": 1, + "nodePlan": 90104, + "rewardPlan": 90104, + "shopPlan": 90104, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 500, + "planId": 901, + "layerIndex": 5, + "nodeNumPlan": 1, + "nodePlan": 90105, + "rewardPlan": 90105, + "shopPlan": 90105, + "takeoutReward": "31002&500", + "spiritPlan": 901 + }, + { + "id": 501, + "planId": 901, + "layerIndex": 6, + "nodeNumPlan": 2, + "nodePlan": 90106, + "rewardPlan": 90106, + "shopPlan": 90106, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 502, + "planId": 901, + "layerIndex": 7, + "nodeNumPlan": 3, + "nodePlan": 90107, + "rewardPlan": 90107, + "shopPlan": 90107, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 503, + "planId": 901, + "layerIndex": 8, + "nodeNumPlan": 4, + "nodePlan": 90108, + "rewardPlan": 90108, + "shopPlan": 90108, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 504, + "planId": 901, + "layerIndex": 9, + "nodeNumPlan": 1, + "nodePlan": 90109, + "rewardPlan": 90109, + "shopPlan": 90109, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 505, + "planId": 901, + "layerIndex": 10, + "nodeNumPlan": 5, + "nodePlan": 90110, + "rewardPlan": 90110, + "shopPlan": 90110, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 506, + "planId": 901, + "layerIndex": 11, + "nodeNumPlan": 2, + "nodePlan": 90111, + "rewardPlan": 90111, + "shopPlan": 90111, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 507, + "planId": 901, + "layerIndex": 12, + "nodeNumPlan": 5, + "nodePlan": 90112, + "rewardPlan": 90112, + "shopPlan": 90112, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 508, + "planId": 901, + "layerIndex": 13, + "nodeNumPlan": 4, + "nodePlan": 90113, + "rewardPlan": 90113, + "shopPlan": 90113, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 509, + "planId": 901, + "layerIndex": 14, + "nodeNumPlan": 1, + "nodePlan": 90114, + "rewardPlan": 90114, + "shopPlan": 90114, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 510, + "planId": 901, + "layerIndex": 15, + "nodeNumPlan": 1, + "nodePlan": 90115, + "rewardPlan": 90115, + "shopPlan": 90115, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 511, + "planId": 902, + "layerIndex": 1, + "nodeNumPlan": 1, + "nodePlan": 90201, + "rewardPlan": 90201, + "shopPlan": 90201, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 512, + "planId": 902, + "layerIndex": 2, + "nodeNumPlan": 1, + "nodePlan": 90202, + "rewardPlan": 90202, + "shopPlan": 90202, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 513, + "planId": 902, + "layerIndex": 3, + "nodeNumPlan": 5, + "nodePlan": 90203, + "rewardPlan": 90203, + "shopPlan": 90203, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 514, + "planId": 902, + "layerIndex": 4, + "nodeNumPlan": 1, + "nodePlan": 90204, + "rewardPlan": 90204, + "shopPlan": 90204, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 515, + "planId": 902, + "layerIndex": 5, + "nodeNumPlan": 1, + "nodePlan": 90205, + "rewardPlan": 90205, + "shopPlan": 90205, + "takeoutReward": "31002&500", + "spiritPlan": 902 + }, + { + "id": 516, + "planId": 902, + "layerIndex": 6, + "nodeNumPlan": 2, + "nodePlan": 90206, + "rewardPlan": 90206, + "shopPlan": 90206, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 517, + "planId": 902, + "layerIndex": 7, + "nodeNumPlan": 3, + "nodePlan": 90207, + "rewardPlan": 90207, + "shopPlan": 90207, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 518, + "planId": 902, + "layerIndex": 8, + "nodeNumPlan": 4, + "nodePlan": 90208, + "rewardPlan": 90208, + "shopPlan": 90208, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 519, + "planId": 902, + "layerIndex": 9, + "nodeNumPlan": 1, + "nodePlan": 90209, + "rewardPlan": 90209, + "shopPlan": 90209, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 520, + "planId": 902, + "layerIndex": 10, + "nodeNumPlan": 5, + "nodePlan": 90210, + "rewardPlan": 90210, + "shopPlan": 90210, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 521, + "planId": 902, + "layerIndex": 11, + "nodeNumPlan": 2, + "nodePlan": 90211, + "rewardPlan": 90211, + "shopPlan": 90211, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 522, + "planId": 902, + "layerIndex": 12, + "nodeNumPlan": 5, + "nodePlan": 90212, + "rewardPlan": 90212, + "shopPlan": 90212, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 523, + "planId": 902, + "layerIndex": 13, + "nodeNumPlan": 4, + "nodePlan": 90213, + "rewardPlan": 90213, + "shopPlan": 90213, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 524, + "planId": 902, + "layerIndex": 14, + "nodeNumPlan": 1, + "nodePlan": 90214, + "rewardPlan": 90214, + "shopPlan": 90214, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 525, + "planId": 902, + "layerIndex": 15, + "nodeNumPlan": 1, + "nodePlan": 90215, + "rewardPlan": 90215, + "shopPlan": 90215, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 526, + "planId": 903, + "layerIndex": 1, + "nodeNumPlan": 1, + "nodePlan": 90301, + "rewardPlan": 90301, + "shopPlan": 90301, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 527, + "planId": 903, + "layerIndex": 2, + "nodeNumPlan": 1, + "nodePlan": 90302, + "rewardPlan": 90302, + "shopPlan": 90302, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 528, + "planId": 903, + "layerIndex": 3, + "nodeNumPlan": 5, + "nodePlan": 90303, + "rewardPlan": 90303, + "shopPlan": 90303, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 529, + "planId": 903, + "layerIndex": 4, + "nodeNumPlan": 1, + "nodePlan": 90304, + "rewardPlan": 90304, + "shopPlan": 90304, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 530, + "planId": 903, + "layerIndex": 5, + "nodeNumPlan": 1, + "nodePlan": 90305, + "rewardPlan": 90305, + "shopPlan": 90305, + "takeoutReward": "31002&500", + "spiritPlan": 903 + }, + { + "id": 531, + "planId": 903, + "layerIndex": 6, + "nodeNumPlan": 2, + "nodePlan": 90306, + "rewardPlan": 90306, + "shopPlan": 90306, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 532, + "planId": 903, + "layerIndex": 7, + "nodeNumPlan": 3, + "nodePlan": 90307, + "rewardPlan": 90307, + "shopPlan": 90307, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 533, + "planId": 903, + "layerIndex": 8, + "nodeNumPlan": 4, + "nodePlan": 90308, + "rewardPlan": 90308, + "shopPlan": 90308, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 534, + "planId": 903, + "layerIndex": 9, + "nodeNumPlan": 1, + "nodePlan": 90309, + "rewardPlan": 90309, + "shopPlan": 90309, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 535, + "planId": 903, + "layerIndex": 10, + "nodeNumPlan": 5, + "nodePlan": 90310, + "rewardPlan": 90310, + "shopPlan": 90310, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 536, + "planId": 903, + "layerIndex": 11, + "nodeNumPlan": 2, + "nodePlan": 90311, + "rewardPlan": 90311, + "shopPlan": 90311, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 537, + "planId": 903, + "layerIndex": 12, + "nodeNumPlan": 5, + "nodePlan": 90312, + "rewardPlan": 90312, + "shopPlan": 90312, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 538, + "planId": 903, + "layerIndex": 13, + "nodeNumPlan": 4, + "nodePlan": 90313, + "rewardPlan": 90313, + "shopPlan": 90313, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 539, + "planId": 903, + "layerIndex": 14, + "nodeNumPlan": 1, + "nodePlan": 90314, + "rewardPlan": 90314, + "shopPlan": 90314, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 540, + "planId": 903, + "layerIndex": 15, + "nodeNumPlan": 1, + "nodePlan": 90315, + "rewardPlan": 90315, + "shopPlan": 90315, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 541, + "planId": 904, + "layerIndex": 1, + "nodeNumPlan": 1, + "nodePlan": 90401, + "rewardPlan": 90401, + "shopPlan": 90401, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 542, + "planId": 904, + "layerIndex": 2, + "nodeNumPlan": 1, + "nodePlan": 90402, + "rewardPlan": 90402, + "shopPlan": 90402, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 543, + "planId": 904, + "layerIndex": 3, + "nodeNumPlan": 5, + "nodePlan": 90403, + "rewardPlan": 90403, + "shopPlan": 90403, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 544, + "planId": 904, + "layerIndex": 4, + "nodeNumPlan": 1, + "nodePlan": 90404, + "rewardPlan": 90404, + "shopPlan": 90404, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 545, + "planId": 904, + "layerIndex": 5, + "nodeNumPlan": 1, + "nodePlan": 90405, + "rewardPlan": 90405, + "shopPlan": 90405, + "takeoutReward": "31002&500", + "spiritPlan": 904 + }, + { + "id": 546, + "planId": 904, + "layerIndex": 6, + "nodeNumPlan": 2, + "nodePlan": 90406, + "rewardPlan": 90406, + "shopPlan": 90406, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 547, + "planId": 904, + "layerIndex": 7, + "nodeNumPlan": 3, + "nodePlan": 90407, + "rewardPlan": 90407, + "shopPlan": 90407, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 548, + "planId": 904, + "layerIndex": 8, + "nodeNumPlan": 4, + "nodePlan": 90408, + "rewardPlan": 90408, + "shopPlan": 90408, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 549, + "planId": 904, + "layerIndex": 9, + "nodeNumPlan": 1, + "nodePlan": 90409, + "rewardPlan": 90409, + "shopPlan": 90409, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 550, + "planId": 904, + "layerIndex": 10, + "nodeNumPlan": 5, + "nodePlan": 90410, + "rewardPlan": 90410, + "shopPlan": 90410, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 551, + "planId": 904, + "layerIndex": 11, + "nodeNumPlan": 2, + "nodePlan": 90411, + "rewardPlan": 90411, + "shopPlan": 90411, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 552, + "planId": 904, + "layerIndex": 12, + "nodeNumPlan": 5, + "nodePlan": 90412, + "rewardPlan": 90412, + "shopPlan": 90412, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 553, + "planId": 904, + "layerIndex": 13, + "nodeNumPlan": 4, + "nodePlan": 90413, + "rewardPlan": 90413, + "shopPlan": 90413, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 554, + "planId": 904, + "layerIndex": 14, + "nodeNumPlan": 1, + "nodePlan": 90414, + "rewardPlan": 90414, + "shopPlan": 90414, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 555, + "planId": 904, + "layerIndex": 15, + "nodeNumPlan": 1, + "nodePlan": 90415, + "rewardPlan": 90415, + "shopPlan": 90415, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 556, + "planId": 905, + "layerIndex": 1, + "nodeNumPlan": 1, + "nodePlan": 90501, + "rewardPlan": 90501, + "shopPlan": 90501, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 557, + "planId": 905, + "layerIndex": 2, + "nodeNumPlan": 1, + "nodePlan": 90502, + "rewardPlan": 90502, + "shopPlan": 90502, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 558, + "planId": 905, + "layerIndex": 3, + "nodeNumPlan": 5, + "nodePlan": 90503, + "rewardPlan": 90503, + "shopPlan": 90503, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 559, + "planId": 905, + "layerIndex": 4, + "nodeNumPlan": 1, + "nodePlan": 90504, + "rewardPlan": 90504, + "shopPlan": 90504, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 560, + "planId": 905, + "layerIndex": 5, + "nodeNumPlan": 1, + "nodePlan": 90505, + "rewardPlan": 90505, + "shopPlan": 90505, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 561, + "planId": 905, + "layerIndex": 6, + "nodeNumPlan": 2, + "nodePlan": 90506, + "rewardPlan": 90506, + "shopPlan": 90506, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 562, + "planId": 905, + "layerIndex": 7, + "nodeNumPlan": 3, + "nodePlan": 90507, + "rewardPlan": 90507, + "shopPlan": 90507, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 563, + "planId": 905, + "layerIndex": 8, + "nodeNumPlan": 4, + "nodePlan": 90508, + "rewardPlan": 90508, + "shopPlan": 90508, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 564, + "planId": 905, + "layerIndex": 9, + "nodeNumPlan": 1, + "nodePlan": 90509, + "rewardPlan": 90509, + "shopPlan": 90509, + "takeoutReward": "31002&500", + "spiritPlan": 905 + }, + { + "id": 565, + "planId": 905, + "layerIndex": 10, + "nodeNumPlan": 5, + "nodePlan": 90510, + "rewardPlan": 90510, + "shopPlan": 90510, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 566, + "planId": 905, + "layerIndex": 11, + "nodeNumPlan": 2, + "nodePlan": 90511, + "rewardPlan": 90511, + "shopPlan": 90511, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 567, + "planId": 905, + "layerIndex": 12, + "nodeNumPlan": 5, + "nodePlan": 90512, + "rewardPlan": 90512, + "shopPlan": 90512, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 568, + "planId": 905, + "layerIndex": 13, + "nodeNumPlan": 4, + "nodePlan": 90513, + "rewardPlan": 90513, + "shopPlan": 90513, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 569, + "planId": 905, + "layerIndex": 14, + "nodeNumPlan": 3, + "nodePlan": 90514, + "rewardPlan": 90514, + "shopPlan": 90514, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 570, + "planId": 905, + "layerIndex": 15, + "nodeNumPlan": 4, + "nodePlan": 90515, + "rewardPlan": 90515, + "shopPlan": 90515, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 571, + "planId": 905, + "layerIndex": 16, + "nodeNumPlan": 2, + "nodePlan": 90516, + "rewardPlan": 90516, + "shopPlan": 90516, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 572, + "planId": 905, + "layerIndex": 17, + "nodeNumPlan": 5, + "nodePlan": 90517, + "rewardPlan": 90517, + "shopPlan": 90517, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 573, + "planId": 905, + "layerIndex": 18, + "nodeNumPlan": 4, + "nodePlan": 90518, + "rewardPlan": 90518, + "shopPlan": 90518, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 574, + "planId": 905, + "layerIndex": 19, + "nodeNumPlan": 1, + "nodePlan": 90519, + "rewardPlan": 90519, + "shopPlan": 90519, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 575, + "planId": 905, + "layerIndex": 20, + "nodeNumPlan": 1, + "nodePlan": 90520, + "rewardPlan": 90520, + "shopPlan": 90520, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 576, + "planId": 1001, + "layerIndex": 1, + "nodeNumPlan": 1, + "nodePlan": 100101, + "rewardPlan": 100101, + "shopPlan": 100101, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 577, + "planId": 1001, + "layerIndex": 2, + "nodeNumPlan": 1, + "nodePlan": 100102, + "rewardPlan": 100102, + "shopPlan": 100102, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 578, + "planId": 1001, + "layerIndex": 3, + "nodeNumPlan": 5, + "nodePlan": 100103, + "rewardPlan": 100103, + "shopPlan": 100103, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 579, + "planId": 1001, + "layerIndex": 4, + "nodeNumPlan": 1, + "nodePlan": 100104, + "rewardPlan": 100104, + "shopPlan": 100104, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 580, + "planId": 1001, + "layerIndex": 5, + "nodeNumPlan": 1, + "nodePlan": 100105, + "rewardPlan": 100105, + "shopPlan": 100105, + "takeoutReward": "31002&500", + "spiritPlan": 1001 + }, + { + "id": 581, + "planId": 1001, + "layerIndex": 6, + "nodeNumPlan": 2, + "nodePlan": 100106, + "rewardPlan": 100106, + "shopPlan": 100106, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 582, + "planId": 1001, + "layerIndex": 7, + "nodeNumPlan": 3, + "nodePlan": 100107, + "rewardPlan": 100107, + "shopPlan": 100107, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 583, + "planId": 1001, + "layerIndex": 8, + "nodeNumPlan": 4, + "nodePlan": 100108, + "rewardPlan": 100108, + "shopPlan": 100108, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 584, + "planId": 1001, + "layerIndex": 9, + "nodeNumPlan": 1, + "nodePlan": 100109, + "rewardPlan": 100109, + "shopPlan": 100109, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 585, + "planId": 1001, + "layerIndex": 10, + "nodeNumPlan": 5, + "nodePlan": 100110, + "rewardPlan": 100110, + "shopPlan": 100110, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 586, + "planId": 1001, + "layerIndex": 11, + "nodeNumPlan": 2, + "nodePlan": 100111, + "rewardPlan": 100111, + "shopPlan": 100111, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 587, + "planId": 1001, + "layerIndex": 12, + "nodeNumPlan": 5, + "nodePlan": 100112, + "rewardPlan": 100112, + "shopPlan": 100112, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 588, + "planId": 1001, + "layerIndex": 13, + "nodeNumPlan": 4, + "nodePlan": 100113, + "rewardPlan": 100113, + "shopPlan": 100113, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 589, + "planId": 1001, + "layerIndex": 14, + "nodeNumPlan": 1, + "nodePlan": 100114, + "rewardPlan": 100114, + "shopPlan": 100114, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 590, + "planId": 1001, + "layerIndex": 15, + "nodeNumPlan": 1, + "nodePlan": 100115, + "rewardPlan": 100115, + "shopPlan": 100115, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 591, + "planId": 1002, + "layerIndex": 1, + "nodeNumPlan": 1, + "nodePlan": 100201, + "rewardPlan": 100201, + "shopPlan": 100201, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 592, + "planId": 1002, + "layerIndex": 2, + "nodeNumPlan": 1, + "nodePlan": 100202, + "rewardPlan": 100202, + "shopPlan": 100202, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 593, + "planId": 1002, + "layerIndex": 3, + "nodeNumPlan": 5, + "nodePlan": 100203, + "rewardPlan": 100203, + "shopPlan": 100203, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 594, + "planId": 1002, + "layerIndex": 4, + "nodeNumPlan": 1, + "nodePlan": 100204, + "rewardPlan": 100204, + "shopPlan": 100204, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 595, + "planId": 1002, + "layerIndex": 5, + "nodeNumPlan": 1, + "nodePlan": 100205, + "rewardPlan": 100205, + "shopPlan": 100205, + "takeoutReward": "31002&500", + "spiritPlan": 1002 + }, + { + "id": 596, + "planId": 1002, + "layerIndex": 6, + "nodeNumPlan": 2, + "nodePlan": 100206, + "rewardPlan": 100206, + "shopPlan": 100206, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 597, + "planId": 1002, + "layerIndex": 7, + "nodeNumPlan": 3, + "nodePlan": 100207, + "rewardPlan": 100207, + "shopPlan": 100207, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 598, + "planId": 1002, + "layerIndex": 8, + "nodeNumPlan": 4, + "nodePlan": 100208, + "rewardPlan": 100208, + "shopPlan": 100208, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 599, + "planId": 1002, + "layerIndex": 9, + "nodeNumPlan": 1, + "nodePlan": 100209, + "rewardPlan": 100209, + "shopPlan": 100209, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 600, + "planId": 1002, + "layerIndex": 10, + "nodeNumPlan": 5, + "nodePlan": 100210, + "rewardPlan": 100210, + "shopPlan": 100210, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 601, + "planId": 1002, + "layerIndex": 11, + "nodeNumPlan": 2, + "nodePlan": 100211, + "rewardPlan": 100211, + "shopPlan": 100211, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 602, + "planId": 1002, + "layerIndex": 12, + "nodeNumPlan": 5, + "nodePlan": 100212, + "rewardPlan": 100212, + "shopPlan": 100212, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 603, + "planId": 1002, + "layerIndex": 13, + "nodeNumPlan": 4, + "nodePlan": 100213, + "rewardPlan": 100213, + "shopPlan": 100213, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 604, + "planId": 1002, + "layerIndex": 14, + "nodeNumPlan": 1, + "nodePlan": 100214, + "rewardPlan": 100214, + "shopPlan": 100214, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 605, + "planId": 1002, + "layerIndex": 15, + "nodeNumPlan": 1, + "nodePlan": 100215, + "rewardPlan": 100215, + "shopPlan": 100215, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 606, + "planId": 1003, + "layerIndex": 1, + "nodeNumPlan": 1, + "nodePlan": 100301, + "rewardPlan": 100301, + "shopPlan": 100301, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 607, + "planId": 1003, + "layerIndex": 2, + "nodeNumPlan": 1, + "nodePlan": 100302, + "rewardPlan": 100302, + "shopPlan": 100302, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 608, + "planId": 1003, + "layerIndex": 3, + "nodeNumPlan": 5, + "nodePlan": 100303, + "rewardPlan": 100303, + "shopPlan": 100303, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 609, + "planId": 1003, + "layerIndex": 4, + "nodeNumPlan": 1, + "nodePlan": 100304, + "rewardPlan": 100304, + "shopPlan": 100304, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 610, + "planId": 1003, + "layerIndex": 5, + "nodeNumPlan": 1, + "nodePlan": 100305, + "rewardPlan": 100305, + "shopPlan": 100305, + "takeoutReward": "31002&500", + "spiritPlan": 1003 + }, + { + "id": 611, + "planId": 1003, + "layerIndex": 6, + "nodeNumPlan": 2, + "nodePlan": 100306, + "rewardPlan": 100306, + "shopPlan": 100306, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 612, + "planId": 1003, + "layerIndex": 7, + "nodeNumPlan": 3, + "nodePlan": 100307, + "rewardPlan": 100307, + "shopPlan": 100307, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 613, + "planId": 1003, + "layerIndex": 8, + "nodeNumPlan": 4, + "nodePlan": 100308, + "rewardPlan": 100308, + "shopPlan": 100308, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 614, + "planId": 1003, + "layerIndex": 9, + "nodeNumPlan": 1, + "nodePlan": 100309, + "rewardPlan": 100309, + "shopPlan": 100309, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 615, + "planId": 1003, + "layerIndex": 10, + "nodeNumPlan": 5, + "nodePlan": 100310, + "rewardPlan": 100310, + "shopPlan": 100310, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 616, + "planId": 1003, + "layerIndex": 11, + "nodeNumPlan": 2, + "nodePlan": 100311, + "rewardPlan": 100311, + "shopPlan": 100311, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 617, + "planId": 1003, + "layerIndex": 12, + "nodeNumPlan": 5, + "nodePlan": 100312, + "rewardPlan": 100312, + "shopPlan": 100312, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 618, + "planId": 1003, + "layerIndex": 13, + "nodeNumPlan": 4, + "nodePlan": 100313, + "rewardPlan": 100313, + "shopPlan": 100313, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 619, + "planId": 1003, + "layerIndex": 14, + "nodeNumPlan": 1, + "nodePlan": 100314, + "rewardPlan": 100314, + "shopPlan": 100314, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 620, + "planId": 1003, + "layerIndex": 15, + "nodeNumPlan": 1, + "nodePlan": 100315, + "rewardPlan": 100315, + "shopPlan": 100315, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 621, + "planId": 1004, + "layerIndex": 1, + "nodeNumPlan": 1, + "nodePlan": 100401, + "rewardPlan": 100401, + "shopPlan": 100401, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 622, + "planId": 1004, + "layerIndex": 2, + "nodeNumPlan": 1, + "nodePlan": 100402, + "rewardPlan": 100402, + "shopPlan": 100402, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 623, + "planId": 1004, + "layerIndex": 3, + "nodeNumPlan": 5, + "nodePlan": 100403, + "rewardPlan": 100403, + "shopPlan": 100403, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 624, + "planId": 1004, + "layerIndex": 4, + "nodeNumPlan": 1, + "nodePlan": 100404, + "rewardPlan": 100404, + "shopPlan": 100404, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 625, + "planId": 1004, + "layerIndex": 5, + "nodeNumPlan": 1, + "nodePlan": 100405, + "rewardPlan": 100405, + "shopPlan": 100405, + "takeoutReward": "31002&500", + "spiritPlan": 1004 + }, + { + "id": 626, + "planId": 1004, + "layerIndex": 6, + "nodeNumPlan": 2, + "nodePlan": 100406, + "rewardPlan": 100406, + "shopPlan": 100406, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 627, + "planId": 1004, + "layerIndex": 7, + "nodeNumPlan": 3, + "nodePlan": 100407, + "rewardPlan": 100407, + "shopPlan": 100407, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 628, + "planId": 1004, + "layerIndex": 8, + "nodeNumPlan": 4, + "nodePlan": 100408, + "rewardPlan": 100408, + "shopPlan": 100408, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 629, + "planId": 1004, + "layerIndex": 9, + "nodeNumPlan": 1, + "nodePlan": 100409, + "rewardPlan": 100409, + "shopPlan": 100409, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 630, + "planId": 1004, + "layerIndex": 10, + "nodeNumPlan": 5, + "nodePlan": 100410, + "rewardPlan": 100410, + "shopPlan": 100410, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 631, + "planId": 1004, + "layerIndex": 11, + "nodeNumPlan": 2, + "nodePlan": 100411, + "rewardPlan": 100411, + "shopPlan": 100411, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 632, + "planId": 1004, + "layerIndex": 12, + "nodeNumPlan": 5, + "nodePlan": 100412, + "rewardPlan": 100412, + "shopPlan": 100412, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 633, + "planId": 1004, + "layerIndex": 13, + "nodeNumPlan": 4, + "nodePlan": 100413, + "rewardPlan": 100413, + "shopPlan": 100413, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 634, + "planId": 1004, + "layerIndex": 14, + "nodeNumPlan": 1, + "nodePlan": 100414, + "rewardPlan": 100414, + "shopPlan": 100414, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 635, + "planId": 1004, + "layerIndex": 15, + "nodeNumPlan": 1, + "nodePlan": 100415, + "rewardPlan": 100415, + "shopPlan": 100415, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 636, + "planId": 1005, + "layerIndex": 1, + "nodeNumPlan": 1, + "nodePlan": 100501, + "rewardPlan": 100501, + "shopPlan": 100501, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 637, + "planId": 1005, + "layerIndex": 2, + "nodeNumPlan": 1, + "nodePlan": 100502, + "rewardPlan": 100502, + "shopPlan": 100502, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 638, + "planId": 1005, + "layerIndex": 3, + "nodeNumPlan": 5, + "nodePlan": 100503, + "rewardPlan": 100503, + "shopPlan": 100503, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 639, + "planId": 1005, + "layerIndex": 4, + "nodeNumPlan": 1, + "nodePlan": 100504, + "rewardPlan": 100504, + "shopPlan": 100504, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 640, + "planId": 1005, + "layerIndex": 5, + "nodeNumPlan": 1, + "nodePlan": 100505, + "rewardPlan": 100505, + "shopPlan": 100505, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 641, + "planId": 1005, + "layerIndex": 6, + "nodeNumPlan": 2, + "nodePlan": 100506, + "rewardPlan": 100506, + "shopPlan": 100506, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 642, + "planId": 1005, + "layerIndex": 7, + "nodeNumPlan": 3, + "nodePlan": 100507, + "rewardPlan": 100507, + "shopPlan": 100507, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 643, + "planId": 1005, + "layerIndex": 8, + "nodeNumPlan": 4, + "nodePlan": 100508, + "rewardPlan": 100508, + "shopPlan": 100508, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 644, + "planId": 1005, + "layerIndex": 9, + "nodeNumPlan": 1, + "nodePlan": 100509, + "rewardPlan": 100509, + "shopPlan": 100509, + "takeoutReward": "31002&500", + "spiritPlan": 1005 + }, + { + "id": 645, + "planId": 1005, + "layerIndex": 10, + "nodeNumPlan": 5, + "nodePlan": 100510, + "rewardPlan": 100510, + "shopPlan": 100510, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 646, + "planId": 1005, + "layerIndex": 11, + "nodeNumPlan": 2, + "nodePlan": 100511, + "rewardPlan": 100511, + "shopPlan": 100511, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 647, + "planId": 1005, + "layerIndex": 12, + "nodeNumPlan": 5, + "nodePlan": 100512, + "rewardPlan": 100512, + "shopPlan": 100512, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 648, + "planId": 1005, + "layerIndex": 13, + "nodeNumPlan": 4, + "nodePlan": 100513, + "rewardPlan": 100513, + "shopPlan": 100513, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 649, + "planId": 1005, + "layerIndex": 14, + "nodeNumPlan": 3, + "nodePlan": 100514, + "rewardPlan": 100514, + "shopPlan": 100514, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 650, + "planId": 1005, + "layerIndex": 15, + "nodeNumPlan": 4, + "nodePlan": 100515, + "rewardPlan": 100515, + "shopPlan": 100515, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 651, + "planId": 1005, + "layerIndex": 16, + "nodeNumPlan": 2, + "nodePlan": 100516, + "rewardPlan": 100516, + "shopPlan": 100516, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 652, + "planId": 1005, + "layerIndex": 17, + "nodeNumPlan": 5, + "nodePlan": 100517, + "rewardPlan": 100517, + "shopPlan": 100517, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 653, + "planId": 1005, + "layerIndex": 18, + "nodeNumPlan": 4, + "nodePlan": 100518, + "rewardPlan": 100518, + "shopPlan": 100518, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 654, + "planId": 1005, + "layerIndex": 19, + "nodeNumPlan": 1, + "nodePlan": 100519, + "rewardPlan": 100519, + "shopPlan": 100519, + "takeoutReward": "&", + "spiritPlan": 0 + }, + { + "id": 655, + "planId": 1005, + "layerIndex": 20, + "nodeNumPlan": 1, + "nodePlan": 100520, + "rewardPlan": 100520, + "shopPlan": 100520, + "takeoutReward": "&", + "spiritPlan": 0 + } +] \ No newline at end of file diff --git a/shared/resource/jsons/dic_rougeLayer_rewardPlan.json b/shared/resource/jsons/dic_rougeLayer_rewardPlan.json new file mode 100644 index 000000000..9a47afd88 --- /dev/null +++ b/shared/resource/jsons/dic_rougeLayer_rewardPlan.json @@ -0,0 +1,55022 @@ +[ + { + "id": 1, + "planId": 10101, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2, + "planId": 10102, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 3, + "planId": 10103, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 4, + "planId": 10104, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 8, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 5, + "planId": 10105, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 9, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 6, + "planId": 20101, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 7, + "planId": 20102, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 8, + "planId": 20103, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 9, + "planId": 20104, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 10, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 10, + "planId": 20105, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 11, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 11, + "planId": 20106, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 12, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 12, + "planId": 20107, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 13, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 8 + }, + { + "id": 13, + "planId": 20108, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 9 + }, + { + "id": 14, + "planId": 20109, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 10 + }, + { + "id": 15, + "planId": 20110, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 11 + }, + { + "id": 16, + "planId": 30101, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 12 + }, + { + "id": 17, + "planId": 30102, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 13 + }, + { + "id": 18, + "planId": 30103, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 14 + }, + { + "id": 19, + "planId": 30104, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 14, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 15 + }, + { + "id": 20, + "planId": 30105, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 15, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 16 + }, + { + "id": 21, + "planId": 30106, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 16, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 17 + }, + { + "id": 22, + "planId": 30107, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 17, + "holyCardRandomNum": 1, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 18 + }, + { + "id": 23, + "planId": 30108, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 19 + }, + { + "id": 24, + "planId": 30109, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 20 + }, + { + "id": 25, + "planId": 30110, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 21 + }, + { + "id": 26, + "planId": 30111, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 22 + }, + { + "id": 27, + "planId": 30112, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 23 + }, + { + "id": 28, + "planId": 30113, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 24 + }, + { + "id": 29, + "planId": 30114, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 25 + }, + { + "id": 30, + "planId": 30115, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 26 + }, + { + "id": 31, + "planId": 30201, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 27 + }, + { + "id": 32, + "planId": 30202, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 28 + }, + { + "id": 33, + "planId": 30203, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 29 + }, + { + "id": 34, + "planId": 30204, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 18, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 30 + }, + { + "id": 35, + "planId": 30205, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 19, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 31 + }, + { + "id": 36, + "planId": 30206, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 20, + "holyCardRandomNum": 1, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 32 + }, + { + "id": 37, + "planId": 30207, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 21, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 33 + }, + { + "id": 38, + "planId": 30208, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 22, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 34 + }, + { + "id": 39, + "planId": 30209, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 23, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 35 + }, + { + "id": 40, + "planId": 30210, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 36 + }, + { + "id": 41, + "planId": 30211, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 37 + }, + { + "id": 42, + "planId": 30212, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 38 + }, + { + "id": 43, + "planId": 30213, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 39 + }, + { + "id": 44, + "planId": 30214, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 40 + }, + { + "id": 45, + "planId": 30215, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 46, + "planId": 30301, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 47, + "planId": 30302, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 48, + "planId": 30303, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 49, + "planId": 30304, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 24, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 50, + "planId": 30305, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 25, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 51, + "planId": 30306, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 26, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 52, + "planId": 30307, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 27, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 53, + "planId": 30308, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 28, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 54, + "planId": 30309, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 29, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 55, + "planId": 30310, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 30, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 56, + "planId": 30311, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 31, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 57, + "planId": 30312, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 32, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 58, + "planId": 30313, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 33, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 59, + "planId": 30314, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 34, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 60, + "planId": 30315, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 61, + "planId": 30401, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 62, + "planId": 30402, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 63, + "planId": 30403, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 64, + "planId": 30404, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 32, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 65, + "planId": 30405, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 33, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 66, + "planId": 30406, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 34, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 67, + "planId": 30407, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 35, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 68, + "planId": 30408, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 36, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 69, + "planId": 30409, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 37, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 70, + "planId": 30410, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 38, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 71, + "planId": 30411, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 39, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 72, + "planId": 30412, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 40, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 73, + "planId": 30413, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 74, + "planId": 30414, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 75, + "planId": 30415, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 76, + "planId": 30501, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 77, + "planId": 30502, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 78, + "planId": 30503, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 79, + "planId": 30504, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 36, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 80, + "planId": 30505, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 37, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 81, + "planId": 30506, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 38, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 82, + "planId": 30507, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 33, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 83, + "planId": 30508, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 34, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 84, + "planId": 30509, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 38, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 85, + "planId": 30510, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 39, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 86, + "planId": 30511, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 40, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 87, + "planId": 30512, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 37, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 88, + "planId": 30513, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 38, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 89, + "planId": 30514, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 33, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 90, + "planId": 30515, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 91, + "planId": 30516, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 92, + "planId": 30517, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 93, + "planId": 30518, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 94, + "planId": 30519, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 95, + "planId": 30520, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 96, + "planId": 40101, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 97, + "planId": 40102, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 98, + "planId": 40103, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 99, + "planId": 40104, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 14, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 100, + "planId": 40105, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 15, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 101, + "planId": 40106, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 16, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 102, + "planId": 40107, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 17, + "holyCardRandomNum": 1, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 103, + "planId": 40108, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 104, + "planId": 40109, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 105, + "planId": 40110, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 106, + "planId": 40111, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 107, + "planId": 40112, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 108, + "planId": 40113, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 109, + "planId": 40114, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 110, + "planId": 40115, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 111, + "planId": 40201, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 112, + "planId": 40202, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 113, + "planId": 40203, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 114, + "planId": 40204, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 18, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 115, + "planId": 40205, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 19, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 116, + "planId": 40206, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 20, + "holyCardRandomNum": 1, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 117, + "planId": 40207, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 21, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 118, + "planId": 40208, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 22, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 119, + "planId": 40209, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 23, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 120, + "planId": 40210, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 121, + "planId": 40211, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 122, + "planId": 40212, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 123, + "planId": 40213, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 124, + "planId": 40214, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 125, + "planId": 40215, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 126, + "planId": 40301, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 127, + "planId": 40302, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 128, + "planId": 40303, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 129, + "planId": 40304, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 24, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 130, + "planId": 40305, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 25, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 131, + "planId": 40306, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 26, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 132, + "planId": 40307, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 27, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 133, + "planId": 40308, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 28, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 134, + "planId": 40309, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 29, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 135, + "planId": 40310, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 30, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 136, + "planId": 40311, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 31, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 137, + "planId": 40312, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 32, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 138, + "planId": 40313, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 33, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 139, + "planId": 40314, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 34, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 140, + "planId": 40315, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 141, + "planId": 40401, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 142, + "planId": 40402, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 143, + "planId": 40403, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 144, + "planId": 40404, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 32, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 145, + "planId": 40405, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 33, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 146, + "planId": 40406, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 34, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 147, + "planId": 40407, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 35, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 148, + "planId": 40408, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 36, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 149, + "planId": 40409, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 37, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 150, + "planId": 40410, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 38, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 151, + "planId": 40411, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 39, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 152, + "planId": 40412, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 40, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 153, + "planId": 40413, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 154, + "planId": 40414, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 155, + "planId": 40415, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 156, + "planId": 40501, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 157, + "planId": 40502, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 158, + "planId": 40503, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 159, + "planId": 40504, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 36, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 160, + "planId": 40505, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 37, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 161, + "planId": 40506, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 38, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 162, + "planId": 40507, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 33, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 163, + "planId": 40508, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 34, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 164, + "planId": 40509, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 165, + "planId": 40510, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 166, + "planId": 40511, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 167, + "planId": 40512, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 168, + "planId": 40513, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 169, + "planId": 40514, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 170, + "planId": 40515, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 171, + "planId": 40516, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 172, + "planId": 40517, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 173, + "planId": 40518, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 174, + "planId": 40519, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 175, + "planId": 40520, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 176, + "planId": 50101, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 177, + "planId": 50102, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 178, + "planId": 50103, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 179, + "planId": 50104, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 180, + "planId": 50105, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 181, + "planId": 50106, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 182, + "planId": 50107, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 183, + "planId": 50108, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 184, + "planId": 50109, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 185, + "planId": 50110, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 186, + "planId": 50111, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 187, + "planId": 50112, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 188, + "planId": 50113, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 189, + "planId": 50114, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 190, + "planId": 50115, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 191, + "planId": 50201, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 192, + "planId": 50202, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 193, + "planId": 50203, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 194, + "planId": 50204, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 195, + "planId": 50205, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 196, + "planId": 50206, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 197, + "planId": 50207, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 198, + "planId": 50208, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 199, + "planId": 50209, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 200, + "planId": 50210, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 201, + "planId": 50211, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 202, + "planId": 50212, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 203, + "planId": 50213, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 204, + "planId": 50214, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 205, + "planId": 50215, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 206, + "planId": 50301, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 207, + "planId": 50302, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 208, + "planId": 50303, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 209, + "planId": 50304, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 210, + "planId": 50305, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 211, + "planId": 50306, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 212, + "planId": 50307, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 213, + "planId": 50308, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 214, + "planId": 50309, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 215, + "planId": 50310, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 216, + "planId": 50311, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 217, + "planId": 50312, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 218, + "planId": 50313, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 219, + "planId": 50314, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 220, + "planId": 50315, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 221, + "planId": 50401, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 222, + "planId": 50402, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 223, + "planId": 50403, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 224, + "planId": 50404, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 225, + "planId": 50405, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 226, + "planId": 50406, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 227, + "planId": 50407, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 228, + "planId": 50408, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 229, + "planId": 50409, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 230, + "planId": 50410, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 231, + "planId": 50411, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 232, + "planId": 50412, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 233, + "planId": 50413, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 234, + "planId": 50414, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 235, + "planId": 50415, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 236, + "planId": 50501, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 237, + "planId": 50502, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 238, + "planId": 50503, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 239, + "planId": 50504, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 240, + "planId": 50505, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 241, + "planId": 50506, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 242, + "planId": 50507, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 243, + "planId": 50508, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 244, + "planId": 50509, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 245, + "planId": 50510, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 246, + "planId": 50511, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 247, + "planId": 50512, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 248, + "planId": 50513, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 249, + "planId": 50514, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 250, + "planId": 50515, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 251, + "planId": 50516, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 252, + "planId": 50517, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 253, + "planId": 50518, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 254, + "planId": 50519, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 255, + "planId": 50520, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 256, + "planId": 60101, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 257, + "planId": 60102, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 258, + "planId": 60103, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 259, + "planId": 60104, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 260, + "planId": 60105, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 261, + "planId": 60106, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 262, + "planId": 60107, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 263, + "planId": 60108, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 264, + "planId": 60109, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 265, + "planId": 60110, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 266, + "planId": 60111, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 267, + "planId": 60112, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 268, + "planId": 60113, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 269, + "planId": 60114, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 270, + "planId": 60115, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 271, + "planId": 60201, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 272, + "planId": 60202, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 273, + "planId": 60203, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 274, + "planId": 60204, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 275, + "planId": 60205, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 276, + "planId": 60206, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 277, + "planId": 60207, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 278, + "planId": 60208, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 279, + "planId": 60209, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 280, + "planId": 60210, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 281, + "planId": 60211, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 282, + "planId": 60212, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 283, + "planId": 60213, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 284, + "planId": 60214, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 285, + "planId": 60215, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 286, + "planId": 60301, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 287, + "planId": 60302, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 288, + "planId": 60303, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 289, + "planId": 60304, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 290, + "planId": 60305, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 291, + "planId": 60306, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 292, + "planId": 60307, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 293, + "planId": 60308, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 294, + "planId": 60309, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 295, + "planId": 60310, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 296, + "planId": 60311, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 297, + "planId": 60312, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 298, + "planId": 60313, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 299, + "planId": 60314, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 300, + "planId": 60315, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 301, + "planId": 60401, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 302, + "planId": 60402, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 303, + "planId": 60403, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 304, + "planId": 60404, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 305, + "planId": 60405, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 306, + "planId": 60406, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 307, + "planId": 60407, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 308, + "planId": 60408, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 309, + "planId": 60409, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 310, + "planId": 60410, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 311, + "planId": 60411, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 312, + "planId": 60412, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 313, + "planId": 60413, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 314, + "planId": 60414, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 315, + "planId": 60415, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 316, + "planId": 60501, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 317, + "planId": 60502, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 318, + "planId": 60503, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 319, + "planId": 60504, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 320, + "planId": 60505, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 321, + "planId": 60506, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 322, + "planId": 60507, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 323, + "planId": 60508, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 324, + "planId": 60509, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 325, + "planId": 60510, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 326, + "planId": 60511, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 327, + "planId": 60512, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 328, + "planId": 60513, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 329, + "planId": 60514, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 330, + "planId": 60515, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 331, + "planId": 60516, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 332, + "planId": 60517, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 333, + "planId": 60518, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 334, + "planId": 60519, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 335, + "planId": 60520, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 336, + "planId": 70101, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 337, + "planId": 70102, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 338, + "planId": 70103, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 339, + "planId": 70104, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 340, + "planId": 70105, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 341, + "planId": 70106, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 342, + "planId": 70107, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 343, + "planId": 70108, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 344, + "planId": 70109, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 345, + "planId": 70110, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 346, + "planId": 70111, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 347, + "planId": 70112, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 348, + "planId": 70113, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 349, + "planId": 70114, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 350, + "planId": 70115, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 351, + "planId": 70201, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 352, + "planId": 70202, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 353, + "planId": 70203, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 354, + "planId": 70204, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 355, + "planId": 70205, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 356, + "planId": 70206, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 357, + "planId": 70207, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 358, + "planId": 70208, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 359, + "planId": 70209, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 360, + "planId": 70210, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 361, + "planId": 70211, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 362, + "planId": 70212, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 363, + "planId": 70213, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 364, + "planId": 70214, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 365, + "planId": 70215, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 366, + "planId": 70301, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 367, + "planId": 70302, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 368, + "planId": 70303, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 369, + "planId": 70304, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 370, + "planId": 70305, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 371, + "planId": 70306, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 372, + "planId": 70307, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 373, + "planId": 70308, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 374, + "planId": 70309, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 375, + "planId": 70310, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 376, + "planId": 70311, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 377, + "planId": 70312, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 378, + "planId": 70313, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 379, + "planId": 70314, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 380, + "planId": 70315, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 381, + "planId": 70401, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 382, + "planId": 70402, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 383, + "planId": 70403, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 384, + "planId": 70404, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 385, + "planId": 70405, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 386, + "planId": 70406, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 387, + "planId": 70407, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 388, + "planId": 70408, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 389, + "planId": 70409, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 390, + "planId": 70410, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 391, + "planId": 70411, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 392, + "planId": 70412, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 393, + "planId": 70413, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 394, + "planId": 70414, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 395, + "planId": 70415, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 396, + "planId": 70501, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 397, + "planId": 70502, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 398, + "planId": 70503, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 399, + "planId": 70504, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 400, + "planId": 70505, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 401, + "planId": 70506, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 402, + "planId": 70507, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 403, + "planId": 70508, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 404, + "planId": 70509, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 405, + "planId": 70510, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 406, + "planId": 70511, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 407, + "planId": 70512, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 408, + "planId": 70513, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 409, + "planId": 70514, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 410, + "planId": 70515, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 411, + "planId": 70516, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 412, + "planId": 70517, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 413, + "planId": 70518, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 414, + "planId": 70519, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 415, + "planId": 70520, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 416, + "planId": 80101, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 417, + "planId": 80102, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 418, + "planId": 80103, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 419, + "planId": 80104, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 420, + "planId": 80105, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 421, + "planId": 80106, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 422, + "planId": 80107, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 423, + "planId": 80108, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 424, + "planId": 80109, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 425, + "planId": 80110, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 426, + "planId": 80111, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 427, + "planId": 80112, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 428, + "planId": 80113, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 429, + "planId": 80114, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 430, + "planId": 80115, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 431, + "planId": 80201, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 432, + "planId": 80202, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 433, + "planId": 80203, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 434, + "planId": 80204, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 435, + "planId": 80205, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 436, + "planId": 80206, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 437, + "planId": 80207, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 438, + "planId": 80208, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 439, + "planId": 80209, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 440, + "planId": 80210, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 441, + "planId": 80211, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 442, + "planId": 80212, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 443, + "planId": 80213, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 444, + "planId": 80214, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 445, + "planId": 80215, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 446, + "planId": 80301, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 447, + "planId": 80302, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 448, + "planId": 80303, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 449, + "planId": 80304, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 450, + "planId": 80305, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 451, + "planId": 80306, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 452, + "planId": 80307, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 453, + "planId": 80308, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 454, + "planId": 80309, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 455, + "planId": 80310, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 456, + "planId": 80311, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 457, + "planId": 80312, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 458, + "planId": 80313, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 459, + "planId": 80314, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 460, + "planId": 80315, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 461, + "planId": 80401, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 462, + "planId": 80402, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 463, + "planId": 80403, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 464, + "planId": 80404, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 465, + "planId": 80405, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 466, + "planId": 80406, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 467, + "planId": 80407, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 468, + "planId": 80408, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 469, + "planId": 80409, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 470, + "planId": 80410, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 471, + "planId": 80411, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 472, + "planId": 80412, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 473, + "planId": 80413, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 474, + "planId": 80414, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 475, + "planId": 80415, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 476, + "planId": 80501, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 477, + "planId": 80502, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 478, + "planId": 80503, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 479, + "planId": 80504, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 480, + "planId": 80505, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 481, + "planId": 80506, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 482, + "planId": 80507, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 483, + "planId": 80508, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 484, + "planId": 80509, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 485, + "planId": 80510, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 486, + "planId": 80511, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 487, + "planId": 80512, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 488, + "planId": 80513, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 489, + "planId": 80514, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 490, + "planId": 80515, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 491, + "planId": 80516, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 492, + "planId": 80517, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 493, + "planId": 80518, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 494, + "planId": 80519, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 495, + "planId": 80520, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 496, + "planId": 90101, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 497, + "planId": 90102, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 498, + "planId": 90103, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 499, + "planId": 90104, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 500, + "planId": 90105, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 501, + "planId": 90106, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 502, + "planId": 90107, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 503, + "planId": 90108, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 504, + "planId": 90109, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 505, + "planId": 90110, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 506, + "planId": 90111, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 507, + "planId": 90112, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 508, + "planId": 90113, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 509, + "planId": 90114, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 510, + "planId": 90115, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 511, + "planId": 90201, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 512, + "planId": 90202, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 513, + "planId": 90203, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 514, + "planId": 90204, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 515, + "planId": 90205, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 516, + "planId": 90206, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 517, + "planId": 90207, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 518, + "planId": 90208, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 519, + "planId": 90209, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 520, + "planId": 90210, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 521, + "planId": 90211, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 522, + "planId": 90212, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 523, + "planId": 90213, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 524, + "planId": 90214, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 525, + "planId": 90215, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 526, + "planId": 90301, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 527, + "planId": 90302, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 528, + "planId": 90303, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 529, + "planId": 90304, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 530, + "planId": 90305, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 531, + "planId": 90306, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 532, + "planId": 90307, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 533, + "planId": 90308, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 534, + "planId": 90309, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 535, + "planId": 90310, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 536, + "planId": 90311, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 537, + "planId": 90312, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 538, + "planId": 90313, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 539, + "planId": 90314, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 540, + "planId": 90315, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 541, + "planId": 90401, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 542, + "planId": 90402, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 543, + "planId": 90403, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 544, + "planId": 90404, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 545, + "planId": 90405, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 546, + "planId": 90406, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 547, + "planId": 90407, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 548, + "planId": 90408, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 549, + "planId": 90409, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 550, + "planId": 90410, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 551, + "planId": 90411, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 552, + "planId": 90412, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 553, + "planId": 90413, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 554, + "planId": 90414, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 555, + "planId": 90415, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 556, + "planId": 90501, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 557, + "planId": 90502, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 558, + "planId": 90503, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 559, + "planId": 90504, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 560, + "planId": 90505, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 561, + "planId": 90506, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 562, + "planId": 90507, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 563, + "planId": 90508, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 564, + "planId": 90509, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 565, + "planId": 90510, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 566, + "planId": 90511, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 567, + "planId": 90512, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 568, + "planId": 90513, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 569, + "planId": 90514, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 570, + "planId": 90515, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 571, + "planId": 90516, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 572, + "planId": 90517, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 573, + "planId": 90518, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 574, + "planId": 90519, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 575, + "planId": 90520, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 576, + "planId": 100101, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 577, + "planId": 100102, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 578, + "planId": 100103, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 579, + "planId": 100104, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 580, + "planId": 100105, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 581, + "planId": 100106, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 582, + "planId": 100107, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 583, + "planId": 100108, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 584, + "planId": 100109, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 585, + "planId": 100110, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 586, + "planId": 100111, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 587, + "planId": 100112, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 588, + "planId": 100113, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 589, + "planId": 100114, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 590, + "planId": 100115, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 591, + "planId": 100201, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 592, + "planId": 100202, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 593, + "planId": 100203, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 594, + "planId": 100204, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 595, + "planId": 100205, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 596, + "planId": 100206, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 597, + "planId": 100207, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 598, + "planId": 100208, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 599, + "planId": 100209, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 600, + "planId": 100210, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 601, + "planId": 100211, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 602, + "planId": 100212, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 603, + "planId": 100213, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 604, + "planId": 100214, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 605, + "planId": 100215, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 606, + "planId": 100301, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 607, + "planId": 100302, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 608, + "planId": 100303, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 609, + "planId": 100304, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 610, + "planId": 100305, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 611, + "planId": 100306, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 612, + "planId": 100307, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 613, + "planId": 100308, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 614, + "planId": 100309, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 615, + "planId": 100310, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 616, + "planId": 100311, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 617, + "planId": 100312, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 618, + "planId": 100313, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 619, + "planId": 100314, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 620, + "planId": 100315, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 621, + "planId": 100401, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 622, + "planId": 100402, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 623, + "planId": 100403, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 624, + "planId": 100404, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 625, + "planId": 100405, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 626, + "planId": 100406, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 627, + "planId": 100407, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 628, + "planId": 100408, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 629, + "planId": 100409, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 630, + "planId": 100410, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 631, + "planId": 100411, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 632, + "planId": 100412, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 633, + "planId": 100413, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 634, + "planId": 100414, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 635, + "planId": 100415, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 636, + "planId": 100501, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 637, + "planId": 100502, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 638, + "planId": 100503, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 7, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 639, + "planId": 100504, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 640, + "planId": 100505, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 641, + "planId": 100506, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 642, + "planId": 100507, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 643, + "planId": 100508, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 644, + "planId": 100509, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 645, + "planId": 100510, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 646, + "planId": 100511, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 647, + "planId": 100512, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 648, + "planId": 100513, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 649, + "planId": 100514, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 650, + "planId": 100515, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 651, + "planId": 100516, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 652, + "planId": 100517, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 653, + "planId": 100518, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 654, + "planId": 100519, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 655, + "planId": 100520, + "nodeType": 1, + "charaPlan": 0, + "charaRandomNum": 0, + "charaChooseNum": 0, + "charaPassivePlan": 0, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 100, + "score": 10, + "tech": 10, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 656, + "planId": 10101, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 657, + "planId": 10102, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 658, + "planId": 10103, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 659, + "planId": 10104, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 660, + "planId": 10105, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 661, + "planId": 20101, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 662, + "planId": 20102, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 663, + "planId": 20103, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 664, + "planId": 20104, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 665, + "planId": 20105, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 666, + "planId": 20106, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 667, + "planId": 20107, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 668, + "planId": 20108, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 669, + "planId": 20109, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 670, + "planId": 20110, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 671, + "planId": 30101, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 672, + "planId": 30102, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 673, + "planId": 30103, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 674, + "planId": 30104, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 675, + "planId": 30105, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 676, + "planId": 30106, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 677, + "planId": 30107, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 678, + "planId": 30108, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 679, + "planId": 30109, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 680, + "planId": 30110, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 681, + "planId": 30111, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 682, + "planId": 30112, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 683, + "planId": 30113, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 684, + "planId": 30114, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 685, + "planId": 30115, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 686, + "planId": 30201, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 687, + "planId": 30202, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 688, + "planId": 30203, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 689, + "planId": 30204, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 690, + "planId": 30205, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 691, + "planId": 30206, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 692, + "planId": 30207, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 693, + "planId": 30208, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 694, + "planId": 30209, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 695, + "planId": 30210, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 696, + "planId": 30211, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 697, + "planId": 30212, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 698, + "planId": 30213, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 699, + "planId": 30214, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 700, + "planId": 30215, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 701, + "planId": 30301, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 20, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 702, + "planId": 30302, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 21, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 703, + "planId": 30303, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 22, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 704, + "planId": 30304, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 23, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 705, + "planId": 30305, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 24, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 706, + "planId": 30306, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 25, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 707, + "planId": 30307, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 26, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 708, + "planId": 30308, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 27, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 709, + "planId": 30309, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 28, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 710, + "planId": 30310, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 29, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 711, + "planId": 30311, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 30, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 712, + "planId": 30312, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 31, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 713, + "planId": 30313, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 32, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 714, + "planId": 30314, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 33, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 715, + "planId": 30315, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 34, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 716, + "planId": 30401, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 35, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 717, + "planId": 30402, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 36, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 718, + "planId": 30403, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 37, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 719, + "planId": 30404, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 38, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 720, + "planId": 30405, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 39, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 721, + "planId": 30406, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 40, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 722, + "planId": 30407, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 20, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 723, + "planId": 30408, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 21, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 724, + "planId": 30409, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 22, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 725, + "planId": 30410, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 23, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 726, + "planId": 30411, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 24, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 727, + "planId": 30412, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 25, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 728, + "planId": 30413, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 26, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 729, + "planId": 30414, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 27, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 730, + "planId": 30415, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 28, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 731, + "planId": 30501, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 29, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 732, + "planId": 30502, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 30, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 733, + "planId": 30503, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 31, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 734, + "planId": 30504, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 32, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 735, + "planId": 30505, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 33, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 736, + "planId": 30506, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 34, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 737, + "planId": 30507, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 35, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 738, + "planId": 30508, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 36, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 739, + "planId": 30509, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 37, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 740, + "planId": 30510, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 38, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 741, + "planId": 30511, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 39, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 742, + "planId": 30512, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 40, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 743, + "planId": 30513, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 20, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 744, + "planId": 30514, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 21, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 745, + "planId": 30515, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 22, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 746, + "planId": 30516, + "nodeType": 2, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 23, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 747, + "planId": 30517, + "nodeType": 2, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 24, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 748, + "planId": 30518, + "nodeType": 2, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 25, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 749, + "planId": 30519, + "nodeType": 2, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 26, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 750, + "planId": 30520, + "nodeType": 2, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 27, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 751, + "planId": 40101, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 28, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 752, + "planId": 40102, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 29, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 753, + "planId": 40103, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 30, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 754, + "planId": 40104, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 31, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 755, + "planId": 40105, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 32, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 756, + "planId": 40106, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 33, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 757, + "planId": 40107, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 34, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 758, + "planId": 40108, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 35, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 759, + "planId": 40109, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 36, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 760, + "planId": 40110, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 37, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 761, + "planId": 40111, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 38, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 762, + "planId": 40112, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 39, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 763, + "planId": 40113, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 40, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 764, + "planId": 40114, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 765, + "planId": 40115, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 766, + "planId": 40201, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 767, + "planId": 40202, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 768, + "planId": 40203, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 769, + "planId": 40204, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 770, + "planId": 40205, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 771, + "planId": 40206, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 772, + "planId": 40207, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 773, + "planId": 40208, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 774, + "planId": 40209, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 775, + "planId": 40210, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 776, + "planId": 40211, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 777, + "planId": 40212, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 778, + "planId": 40213, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 779, + "planId": 40214, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 780, + "planId": 40215, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 781, + "planId": 40301, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 8, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 782, + "planId": 40302, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 9, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 783, + "planId": 40303, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 10, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 784, + "planId": 40304, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 11, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 785, + "planId": 40305, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 12, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 786, + "planId": 40306, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 13, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 787, + "planId": 40307, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 14, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 788, + "planId": 40308, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 15, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 789, + "planId": 40309, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 16, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 790, + "planId": 40310, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 17, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 791, + "planId": 40311, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 18, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 792, + "planId": 40312, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 19, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 793, + "planId": 40313, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 20, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 794, + "planId": 40314, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 21, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 795, + "planId": 40315, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 22, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 796, + "planId": 40401, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 797, + "planId": 40402, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 798, + "planId": 40403, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 799, + "planId": 40404, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 800, + "planId": 40405, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 801, + "planId": 40406, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 8, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 802, + "planId": 40407, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 9, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 803, + "planId": 40408, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 10, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 804, + "planId": 40409, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 11, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 805, + "planId": 40410, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 12, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 806, + "planId": 40411, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 13, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 807, + "planId": 40412, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 14, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 808, + "planId": 40413, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 15, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 809, + "planId": 40414, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 16, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 810, + "planId": 40415, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 17, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 811, + "planId": 40501, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 18, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 812, + "planId": 40502, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 19, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 813, + "planId": 40503, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 20, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 814, + "planId": 40504, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 21, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 815, + "planId": 40505, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 22, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 816, + "planId": 40506, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 817, + "planId": 40507, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 818, + "planId": 40508, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 819, + "planId": 40509, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 820, + "planId": 40510, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 821, + "planId": 40511, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 8, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 822, + "planId": 40512, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 9, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 823, + "planId": 40513, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 10, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 824, + "planId": 40514, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 11, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 825, + "planId": 40515, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 12, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 826, + "planId": 40516, + "nodeType": 2, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 13, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 827, + "planId": 40517, + "nodeType": 2, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 14, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 828, + "planId": 40518, + "nodeType": 2, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 15, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 829, + "planId": 40519, + "nodeType": 2, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 16, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 830, + "planId": 40520, + "nodeType": 2, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 17, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 831, + "planId": 50101, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 18, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 832, + "planId": 50102, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 19, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 833, + "planId": 50103, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 20, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 834, + "planId": 50104, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 21, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 835, + "planId": 50105, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 22, + "holyCardRandomNum": 1, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 836, + "planId": 50106, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 837, + "planId": 50107, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 838, + "planId": 50108, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 839, + "planId": 50109, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 840, + "planId": 50110, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 841, + "planId": 50111, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 842, + "planId": 50112, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 843, + "planId": 50113, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 844, + "planId": 50114, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 845, + "planId": 50115, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 846, + "planId": 50201, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 847, + "planId": 50202, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 848, + "planId": 50203, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 849, + "planId": 50204, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 850, + "planId": 50205, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 851, + "planId": 50206, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 852, + "planId": 50207, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 853, + "planId": 50208, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 854, + "planId": 50209, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 855, + "planId": 50210, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 856, + "planId": 50211, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 857, + "planId": 50212, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 858, + "planId": 50213, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 859, + "planId": 50214, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 860, + "planId": 50215, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 861, + "planId": 50301, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 862, + "planId": 50302, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 863, + "planId": 50303, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 864, + "planId": 50304, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 865, + "planId": 50305, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 866, + "planId": 50306, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 867, + "planId": 50307, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 868, + "planId": 50308, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 869, + "planId": 50309, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 870, + "planId": 50310, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 871, + "planId": 50311, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 872, + "planId": 50312, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 873, + "planId": 50313, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 874, + "planId": 50314, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 875, + "planId": 50315, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 876, + "planId": 50401, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 877, + "planId": 50402, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 878, + "planId": 50403, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 879, + "planId": 50404, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 880, + "planId": 50405, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 881, + "planId": 50406, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 882, + "planId": 50407, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 883, + "planId": 50408, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 884, + "planId": 50409, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 885, + "planId": 50410, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 886, + "planId": 50411, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 887, + "planId": 50412, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 888, + "planId": 50413, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 889, + "planId": 50414, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 890, + "planId": 50415, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 891, + "planId": 50501, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 892, + "planId": 50502, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 893, + "planId": 50503, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 894, + "planId": 50504, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 895, + "planId": 50505, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 896, + "planId": 50506, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 897, + "planId": 50507, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 898, + "planId": 50508, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 899, + "planId": 50509, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 900, + "planId": 50510, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 901, + "planId": 50511, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 902, + "planId": 50512, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 903, + "planId": 50513, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 904, + "planId": 50514, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 905, + "planId": 50515, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 906, + "planId": 50516, + "nodeType": 2, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 907, + "planId": 50517, + "nodeType": 2, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 908, + "planId": 50518, + "nodeType": 2, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 909, + "planId": 50519, + "nodeType": 2, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 910, + "planId": 50520, + "nodeType": 2, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 911, + "planId": 60101, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 912, + "planId": 60102, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 913, + "planId": 60103, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 914, + "planId": 60104, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 915, + "planId": 60105, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 916, + "planId": 60106, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 917, + "planId": 60107, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 918, + "planId": 60108, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 919, + "planId": 60109, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 920, + "planId": 60110, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 921, + "planId": 60111, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 922, + "planId": 60112, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 923, + "planId": 60113, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 924, + "planId": 60114, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 925, + "planId": 60115, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 926, + "planId": 60201, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 927, + "planId": 60202, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 928, + "planId": 60203, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 929, + "planId": 60204, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 930, + "planId": 60205, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 931, + "planId": 60206, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 932, + "planId": 60207, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 933, + "planId": 60208, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 934, + "planId": 60209, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 935, + "planId": 60210, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 936, + "planId": 60211, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 937, + "planId": 60212, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 938, + "planId": 60213, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 939, + "planId": 60214, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 940, + "planId": 60215, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 941, + "planId": 60301, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 942, + "planId": 60302, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 943, + "planId": 60303, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 944, + "planId": 60304, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 945, + "planId": 60305, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 946, + "planId": 60306, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 947, + "planId": 60307, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 948, + "planId": 60308, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 949, + "planId": 60309, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 950, + "planId": 60310, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 951, + "planId": 60311, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 952, + "planId": 60312, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 953, + "planId": 60313, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 954, + "planId": 60314, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 955, + "planId": 60315, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 956, + "planId": 60401, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 957, + "planId": 60402, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 958, + "planId": 60403, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 959, + "planId": 60404, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 960, + "planId": 60405, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 961, + "planId": 60406, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 962, + "planId": 60407, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 963, + "planId": 60408, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 964, + "planId": 60409, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 965, + "planId": 60410, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 966, + "planId": 60411, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 967, + "planId": 60412, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 968, + "planId": 60413, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 969, + "planId": 60414, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 970, + "planId": 60415, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 971, + "planId": 60501, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 972, + "planId": 60502, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 973, + "planId": 60503, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 974, + "planId": 60504, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 975, + "planId": 60505, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 976, + "planId": 60506, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 977, + "planId": 60507, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 978, + "planId": 60508, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 979, + "planId": 60509, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 980, + "planId": 60510, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 981, + "planId": 60511, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 982, + "planId": 60512, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 983, + "planId": 60513, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 984, + "planId": 60514, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 985, + "planId": 60515, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 986, + "planId": 60516, + "nodeType": 2, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 987, + "planId": 60517, + "nodeType": 2, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 988, + "planId": 60518, + "nodeType": 2, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 989, + "planId": 60519, + "nodeType": 2, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 990, + "planId": 60520, + "nodeType": 2, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 991, + "planId": 70101, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 992, + "planId": 70102, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 993, + "planId": 70103, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 994, + "planId": 70104, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 995, + "planId": 70105, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 996, + "planId": 70106, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 997, + "planId": 70107, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 998, + "planId": 70108, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 999, + "planId": 70109, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1000, + "planId": 70110, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1001, + "planId": 70111, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1002, + "planId": 70112, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1003, + "planId": 70113, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1004, + "planId": 70114, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1005, + "planId": 70115, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1006, + "planId": 70201, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1007, + "planId": 70202, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1008, + "planId": 70203, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1009, + "planId": 70204, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1010, + "planId": 70205, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1011, + "planId": 70206, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1012, + "planId": 70207, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1013, + "planId": 70208, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1014, + "planId": 70209, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1015, + "planId": 70210, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1016, + "planId": 70211, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1017, + "planId": 70212, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1018, + "planId": 70213, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1019, + "planId": 70214, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1020, + "planId": 70215, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1021, + "planId": 70301, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1022, + "planId": 70302, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1023, + "planId": 70303, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1024, + "planId": 70304, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1025, + "planId": 70305, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1026, + "planId": 70306, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1027, + "planId": 70307, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1028, + "planId": 70308, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1029, + "planId": 70309, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1030, + "planId": 70310, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1031, + "planId": 70311, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1032, + "planId": 70312, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1033, + "planId": 70313, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1034, + "planId": 70314, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1035, + "planId": 70315, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1036, + "planId": 70401, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1037, + "planId": 70402, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1038, + "planId": 70403, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1039, + "planId": 70404, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1040, + "planId": 70405, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1041, + "planId": 70406, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1042, + "planId": 70407, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1043, + "planId": 70408, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1044, + "planId": 70409, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1045, + "planId": 70410, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1046, + "planId": 70411, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1047, + "planId": 70412, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1048, + "planId": 70413, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1049, + "planId": 70414, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1050, + "planId": 70415, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1051, + "planId": 70501, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1052, + "planId": 70502, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1053, + "planId": 70503, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1054, + "planId": 70504, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1055, + "planId": 70505, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1056, + "planId": 70506, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1057, + "planId": 70507, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1058, + "planId": 70508, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1059, + "planId": 70509, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1060, + "planId": 70510, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1061, + "planId": 70511, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1062, + "planId": 70512, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1063, + "planId": 70513, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1064, + "planId": 70514, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1065, + "planId": 70515, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1066, + "planId": 70516, + "nodeType": 2, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1067, + "planId": 70517, + "nodeType": 2, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1068, + "planId": 70518, + "nodeType": 2, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1069, + "planId": 70519, + "nodeType": 2, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1070, + "planId": 70520, + "nodeType": 2, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1071, + "planId": 80101, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1072, + "planId": 80102, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1073, + "planId": 80103, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1074, + "planId": 80104, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1075, + "planId": 80105, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1076, + "planId": 80106, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1077, + "planId": 80107, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1078, + "planId": 80108, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1079, + "planId": 80109, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1080, + "planId": 80110, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1081, + "planId": 80111, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1082, + "planId": 80112, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1083, + "planId": 80113, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1084, + "planId": 80114, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1085, + "planId": 80115, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1086, + "planId": 80201, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1087, + "planId": 80202, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1088, + "planId": 80203, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1089, + "planId": 80204, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1090, + "planId": 80205, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1091, + "planId": 80206, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1092, + "planId": 80207, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1093, + "planId": 80208, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1094, + "planId": 80209, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1095, + "planId": 80210, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1096, + "planId": 80211, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1097, + "planId": 80212, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1098, + "planId": 80213, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1099, + "planId": 80214, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1100, + "planId": 80215, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1101, + "planId": 80301, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1102, + "planId": 80302, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1103, + "planId": 80303, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1104, + "planId": 80304, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1105, + "planId": 80305, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1106, + "planId": 80306, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1107, + "planId": 80307, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1108, + "planId": 80308, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1109, + "planId": 80309, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1110, + "planId": 80310, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1111, + "planId": 80311, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1112, + "planId": 80312, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1113, + "planId": 80313, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1114, + "planId": 80314, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1115, + "planId": 80315, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1116, + "planId": 80401, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1117, + "planId": 80402, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1118, + "planId": 80403, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1119, + "planId": 80404, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1120, + "planId": 80405, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1121, + "planId": 80406, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1122, + "planId": 80407, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1123, + "planId": 80408, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1124, + "planId": 80409, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1125, + "planId": 80410, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1126, + "planId": 80411, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1127, + "planId": 80412, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1128, + "planId": 80413, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1129, + "planId": 80414, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1130, + "planId": 80415, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1131, + "planId": 80501, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1132, + "planId": 80502, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1133, + "planId": 80503, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1134, + "planId": 80504, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1135, + "planId": 80505, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1136, + "planId": 80506, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1137, + "planId": 80507, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1138, + "planId": 80508, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1139, + "planId": 80509, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1140, + "planId": 80510, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1141, + "planId": 80511, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1142, + "planId": 80512, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1143, + "planId": 80513, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1144, + "planId": 80514, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1145, + "planId": 80515, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1146, + "planId": 80516, + "nodeType": 2, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1147, + "planId": 80517, + "nodeType": 2, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1148, + "planId": 80518, + "nodeType": 2, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1149, + "planId": 80519, + "nodeType": 2, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1150, + "planId": 80520, + "nodeType": 2, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1151, + "planId": 90101, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1152, + "planId": 90102, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1153, + "planId": 90103, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1154, + "planId": 90104, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1155, + "planId": 90105, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1156, + "planId": 90106, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1157, + "planId": 90107, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1158, + "planId": 90108, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1159, + "planId": 90109, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1160, + "planId": 90110, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1161, + "planId": 90111, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1162, + "planId": 90112, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1163, + "planId": 90113, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1164, + "planId": 90114, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1165, + "planId": 90115, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1166, + "planId": 90201, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1167, + "planId": 90202, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1168, + "planId": 90203, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1169, + "planId": 90204, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1170, + "planId": 90205, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1171, + "planId": 90206, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1172, + "planId": 90207, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1173, + "planId": 90208, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1174, + "planId": 90209, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1175, + "planId": 90210, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1176, + "planId": 90211, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1177, + "planId": 90212, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1178, + "planId": 90213, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1179, + "planId": 90214, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1180, + "planId": 90215, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1181, + "planId": 90301, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1182, + "planId": 90302, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1183, + "planId": 90303, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1184, + "planId": 90304, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1185, + "planId": 90305, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1186, + "planId": 90306, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1187, + "planId": 90307, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1188, + "planId": 90308, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1189, + "planId": 90309, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1190, + "planId": 90310, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1191, + "planId": 90311, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1192, + "planId": 90312, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1193, + "planId": 90313, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1194, + "planId": 90314, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1195, + "planId": 90315, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1196, + "planId": 90401, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1197, + "planId": 90402, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1198, + "planId": 90403, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1199, + "planId": 90404, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1200, + "planId": 90405, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1201, + "planId": 90406, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1202, + "planId": 90407, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1203, + "planId": 90408, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1204, + "planId": 90409, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1205, + "planId": 90410, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1206, + "planId": 90411, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1207, + "planId": 90412, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1208, + "planId": 90413, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1209, + "planId": 90414, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1210, + "planId": 90415, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1211, + "planId": 90501, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1212, + "planId": 90502, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1213, + "planId": 90503, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1214, + "planId": 90504, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1215, + "planId": 90505, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1216, + "planId": 90506, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1217, + "planId": 90507, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1218, + "planId": 90508, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1219, + "planId": 90509, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1220, + "planId": 90510, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1221, + "planId": 90511, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1222, + "planId": 90512, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1223, + "planId": 90513, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1224, + "planId": 90514, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1225, + "planId": 90515, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1226, + "planId": 90516, + "nodeType": 2, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1227, + "planId": 90517, + "nodeType": 2, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1228, + "planId": 90518, + "nodeType": 2, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1229, + "planId": 90519, + "nodeType": 2, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1230, + "planId": 90520, + "nodeType": 2, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1231, + "planId": 100101, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1232, + "planId": 100102, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1233, + "planId": 100103, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1234, + "planId": 100104, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1235, + "planId": 100105, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1236, + "planId": 100106, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1237, + "planId": 100107, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1238, + "planId": 100108, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1239, + "planId": 100109, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1240, + "planId": 100110, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1241, + "planId": 100111, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1242, + "planId": 100112, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1243, + "planId": 100113, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1244, + "planId": 100114, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1245, + "planId": 100115, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1246, + "planId": 100201, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1247, + "planId": 100202, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1248, + "planId": 100203, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1249, + "planId": 100204, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1250, + "planId": 100205, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1251, + "planId": 100206, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1252, + "planId": 100207, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1253, + "planId": 100208, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1254, + "planId": 100209, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1255, + "planId": 100210, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1256, + "planId": 100211, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1257, + "planId": 100212, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1258, + "planId": 100213, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1259, + "planId": 100214, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1260, + "planId": 100215, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1261, + "planId": 100301, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1262, + "planId": 100302, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1263, + "planId": 100303, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1264, + "planId": 100304, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1265, + "planId": 100305, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1266, + "planId": 100306, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1267, + "planId": 100307, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1268, + "planId": 100308, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1269, + "planId": 100309, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1270, + "planId": 100310, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1271, + "planId": 100311, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1272, + "planId": 100312, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1273, + "planId": 100313, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1274, + "planId": 100314, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1275, + "planId": 100315, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1276, + "planId": 100401, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1277, + "planId": 100402, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1278, + "planId": 100403, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1279, + "planId": 100404, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1280, + "planId": 100405, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1281, + "planId": 100406, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1282, + "planId": 100407, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1283, + "planId": 100408, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1284, + "planId": 100409, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1285, + "planId": 100410, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1286, + "planId": 100411, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1287, + "planId": 100412, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1288, + "planId": 100413, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1289, + "planId": 100414, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1290, + "planId": 100415, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1291, + "planId": 100501, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1292, + "planId": 100502, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1293, + "planId": 100503, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1294, + "planId": 100504, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1295, + "planId": 100505, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1296, + "planId": 100506, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1297, + "planId": 100507, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1298, + "planId": 100508, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1299, + "planId": 100509, + "nodeType": 2, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1300, + "planId": 100510, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1301, + "planId": 100511, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1302, + "planId": 100512, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1303, + "planId": 100513, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1304, + "planId": 100514, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1305, + "planId": 100515, + "nodeType": 2, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1306, + "planId": 100516, + "nodeType": 2, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1307, + "planId": 100517, + "nodeType": 2, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1308, + "planId": 100518, + "nodeType": 2, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1309, + "planId": 100519, + "nodeType": 2, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1310, + "planId": 100520, + "nodeType": 2, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 300, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1311, + "planId": 10101, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1312, + "planId": 10102, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1313, + "planId": 10103, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1314, + "planId": 10104, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1315, + "planId": 10105, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1316, + "planId": 20101, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1317, + "planId": 20102, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1318, + "planId": 20103, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1319, + "planId": 20104, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1320, + "planId": 20105, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1321, + "planId": 20106, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1322, + "planId": 20107, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1323, + "planId": 20108, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1324, + "planId": 20109, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1325, + "planId": 20110, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1326, + "planId": 30101, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1327, + "planId": 30102, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1328, + "planId": 30103, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1329, + "planId": 30104, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1330, + "planId": 30105, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1331, + "planId": 30106, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1332, + "planId": 30107, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1333, + "planId": 30108, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1334, + "planId": 30109, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1335, + "planId": 30110, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1336, + "planId": 30111, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1337, + "planId": 30112, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1338, + "planId": 30113, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1339, + "planId": 30114, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1340, + "planId": 30115, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1341, + "planId": 30201, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1342, + "planId": 30202, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1343, + "planId": 30203, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1344, + "planId": 30204, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1345, + "planId": 30205, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1346, + "planId": 30206, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1347, + "planId": 30207, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1348, + "planId": 30208, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1349, + "planId": 30209, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1350, + "planId": 30210, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1351, + "planId": 30211, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1352, + "planId": 30212, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1353, + "planId": 30213, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1354, + "planId": 30214, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1355, + "planId": 30215, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1356, + "planId": 30301, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1357, + "planId": 30302, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1358, + "planId": 30303, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1359, + "planId": 30304, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1360, + "planId": 30305, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1361, + "planId": 30306, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1362, + "planId": 30307, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1363, + "planId": 30308, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1364, + "planId": 30309, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1365, + "planId": 30310, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1366, + "planId": 30311, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1367, + "planId": 30312, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1368, + "planId": 30313, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1369, + "planId": 30314, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1370, + "planId": 30315, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1371, + "planId": 30401, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1372, + "planId": 30402, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1373, + "planId": 30403, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1374, + "planId": 30404, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1375, + "planId": 30405, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1376, + "planId": 30406, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1377, + "planId": 30407, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1378, + "planId": 30408, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1379, + "planId": 30409, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1380, + "planId": 30410, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1381, + "planId": 30411, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1382, + "planId": 30412, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1383, + "planId": 30413, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1384, + "planId": 30414, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1385, + "planId": 30415, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1386, + "planId": 30501, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1387, + "planId": 30502, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1388, + "planId": 30503, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1389, + "planId": 30504, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1390, + "planId": 30505, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1391, + "planId": 30506, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1392, + "planId": 30507, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1393, + "planId": 30508, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1394, + "planId": 30509, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1395, + "planId": 30510, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1396, + "planId": 30511, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1397, + "planId": 30512, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1398, + "planId": 30513, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1399, + "planId": 30514, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1400, + "planId": 30515, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1401, + "planId": 30516, + "nodeType": 3, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1402, + "planId": 30517, + "nodeType": 3, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1403, + "planId": 30518, + "nodeType": 3, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1404, + "planId": 30519, + "nodeType": 3, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1405, + "planId": 30520, + "nodeType": 3, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1406, + "planId": 40101, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1407, + "planId": 40102, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1408, + "planId": 40103, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1409, + "planId": 40104, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1410, + "planId": 40105, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1411, + "planId": 40106, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1412, + "planId": 40107, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1413, + "planId": 40108, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1414, + "planId": 40109, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1415, + "planId": 40110, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1416, + "planId": 40111, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1417, + "planId": 40112, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1418, + "planId": 40113, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1419, + "planId": 40114, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1420, + "planId": 40115, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1421, + "planId": 40201, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1422, + "planId": 40202, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1423, + "planId": 40203, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1424, + "planId": 40204, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1425, + "planId": 40205, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1426, + "planId": 40206, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1427, + "planId": 40207, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1428, + "planId": 40208, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1429, + "planId": 40209, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1430, + "planId": 40210, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1431, + "planId": 40211, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1432, + "planId": 40212, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1433, + "planId": 40213, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1434, + "planId": 40214, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1435, + "planId": 40215, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1436, + "planId": 40301, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1437, + "planId": 40302, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1438, + "planId": 40303, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1439, + "planId": 40304, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1440, + "planId": 40305, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1441, + "planId": 40306, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1442, + "planId": 40307, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1443, + "planId": 40308, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1444, + "planId": 40309, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1445, + "planId": 40310, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1446, + "planId": 40311, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1447, + "planId": 40312, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1448, + "planId": 40313, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1449, + "planId": 40314, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1450, + "planId": 40315, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1451, + "planId": 40401, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1452, + "planId": 40402, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1453, + "planId": 40403, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1454, + "planId": 40404, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1455, + "planId": 40405, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1456, + "planId": 40406, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1457, + "planId": 40407, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1458, + "planId": 40408, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1459, + "planId": 40409, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1460, + "planId": 40410, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1461, + "planId": 40411, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1462, + "planId": 40412, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1463, + "planId": 40413, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1464, + "planId": 40414, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1465, + "planId": 40415, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1466, + "planId": 40501, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1467, + "planId": 40502, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1468, + "planId": 40503, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1469, + "planId": 40504, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1470, + "planId": 40505, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1471, + "planId": 40506, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1472, + "planId": 40507, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1473, + "planId": 40508, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1474, + "planId": 40509, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1475, + "planId": 40510, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1476, + "planId": 40511, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1477, + "planId": 40512, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1478, + "planId": 40513, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1479, + "planId": 40514, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1480, + "planId": 40515, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1481, + "planId": 40516, + "nodeType": 3, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1482, + "planId": 40517, + "nodeType": 3, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1483, + "planId": 40518, + "nodeType": 3, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1484, + "planId": 40519, + "nodeType": 3, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1485, + "planId": 40520, + "nodeType": 3, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1486, + "planId": 50101, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1487, + "planId": 50102, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1488, + "planId": 50103, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1489, + "planId": 50104, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1490, + "planId": 50105, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1491, + "planId": 50106, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1492, + "planId": 50107, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1493, + "planId": 50108, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1494, + "planId": 50109, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1495, + "planId": 50110, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1496, + "planId": 50111, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1497, + "planId": 50112, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1498, + "planId": 50113, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1499, + "planId": 50114, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1500, + "planId": 50115, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1501, + "planId": 50201, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1502, + "planId": 50202, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1503, + "planId": 50203, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1504, + "planId": 50204, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1505, + "planId": 50205, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1506, + "planId": 50206, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1507, + "planId": 50207, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1508, + "planId": 50208, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1509, + "planId": 50209, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1510, + "planId": 50210, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1511, + "planId": 50211, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1512, + "planId": 50212, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1513, + "planId": 50213, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1514, + "planId": 50214, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1515, + "planId": 50215, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1516, + "planId": 50301, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1517, + "planId": 50302, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1518, + "planId": 50303, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1519, + "planId": 50304, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1520, + "planId": 50305, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1521, + "planId": 50306, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1522, + "planId": 50307, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1523, + "planId": 50308, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1524, + "planId": 50309, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1525, + "planId": 50310, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1526, + "planId": 50311, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1527, + "planId": 50312, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1528, + "planId": 50313, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1529, + "planId": 50314, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1530, + "planId": 50315, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1531, + "planId": 50401, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1532, + "planId": 50402, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1533, + "planId": 50403, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1534, + "planId": 50404, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1535, + "planId": 50405, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1536, + "planId": 50406, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1537, + "planId": 50407, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1538, + "planId": 50408, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1539, + "planId": 50409, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1540, + "planId": 50410, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1541, + "planId": 50411, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1542, + "planId": 50412, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1543, + "planId": 50413, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1544, + "planId": 50414, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1545, + "planId": 50415, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1546, + "planId": 50501, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1547, + "planId": 50502, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1548, + "planId": 50503, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1549, + "planId": 50504, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1550, + "planId": 50505, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1551, + "planId": 50506, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1552, + "planId": 50507, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1553, + "planId": 50508, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1554, + "planId": 50509, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1555, + "planId": 50510, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1556, + "planId": 50511, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1557, + "planId": 50512, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1558, + "planId": 50513, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1559, + "planId": 50514, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1560, + "planId": 50515, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1561, + "planId": 50516, + "nodeType": 3, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1562, + "planId": 50517, + "nodeType": 3, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1563, + "planId": 50518, + "nodeType": 3, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1564, + "planId": 50519, + "nodeType": 3, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1565, + "planId": 50520, + "nodeType": 3, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1566, + "planId": 60101, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1567, + "planId": 60102, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1568, + "planId": 60103, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1569, + "planId": 60104, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1570, + "planId": 60105, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1571, + "planId": 60106, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1572, + "planId": 60107, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1573, + "planId": 60108, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1574, + "planId": 60109, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1575, + "planId": 60110, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1576, + "planId": 60111, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1577, + "planId": 60112, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1578, + "planId": 60113, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1579, + "planId": 60114, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1580, + "planId": 60115, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1581, + "planId": 60201, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1582, + "planId": 60202, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1583, + "planId": 60203, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1584, + "planId": 60204, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1585, + "planId": 60205, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1586, + "planId": 60206, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1587, + "planId": 60207, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1588, + "planId": 60208, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1589, + "planId": 60209, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1590, + "planId": 60210, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1591, + "planId": 60211, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1592, + "planId": 60212, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1593, + "planId": 60213, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1594, + "planId": 60214, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1595, + "planId": 60215, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1596, + "planId": 60301, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1597, + "planId": 60302, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1598, + "planId": 60303, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1599, + "planId": 60304, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1600, + "planId": 60305, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1601, + "planId": 60306, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1602, + "planId": 60307, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1603, + "planId": 60308, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1604, + "planId": 60309, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1605, + "planId": 60310, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1606, + "planId": 60311, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1607, + "planId": 60312, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1608, + "planId": 60313, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1609, + "planId": 60314, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1610, + "planId": 60315, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1611, + "planId": 60401, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1612, + "planId": 60402, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1613, + "planId": 60403, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1614, + "planId": 60404, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1615, + "planId": 60405, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1616, + "planId": 60406, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1617, + "planId": 60407, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1618, + "planId": 60408, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1619, + "planId": 60409, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1620, + "planId": 60410, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1621, + "planId": 60411, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1622, + "planId": 60412, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1623, + "planId": 60413, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1624, + "planId": 60414, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1625, + "planId": 60415, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1626, + "planId": 60501, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1627, + "planId": 60502, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1628, + "planId": 60503, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1629, + "planId": 60504, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1630, + "planId": 60505, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1631, + "planId": 60506, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1632, + "planId": 60507, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1633, + "planId": 60508, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1634, + "planId": 60509, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1635, + "planId": 60510, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1636, + "planId": 60511, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1637, + "planId": 60512, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1638, + "planId": 60513, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1639, + "planId": 60514, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1640, + "planId": 60515, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1641, + "planId": 60516, + "nodeType": 3, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1642, + "planId": 60517, + "nodeType": 3, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1643, + "planId": 60518, + "nodeType": 3, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1644, + "planId": 60519, + "nodeType": 3, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1645, + "planId": 60520, + "nodeType": 3, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1646, + "planId": 70101, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1647, + "planId": 70102, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1648, + "planId": 70103, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1649, + "planId": 70104, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1650, + "planId": 70105, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1651, + "planId": 70106, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1652, + "planId": 70107, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1653, + "planId": 70108, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1654, + "planId": 70109, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1655, + "planId": 70110, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1656, + "planId": 70111, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1657, + "planId": 70112, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1658, + "planId": 70113, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1659, + "planId": 70114, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1660, + "planId": 70115, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1661, + "planId": 70201, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1662, + "planId": 70202, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1663, + "planId": 70203, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1664, + "planId": 70204, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1665, + "planId": 70205, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1666, + "planId": 70206, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1667, + "planId": 70207, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1668, + "planId": 70208, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1669, + "planId": 70209, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1670, + "planId": 70210, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1671, + "planId": 70211, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1672, + "planId": 70212, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1673, + "planId": 70213, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1674, + "planId": 70214, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1675, + "planId": 70215, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1676, + "planId": 70301, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1677, + "planId": 70302, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1678, + "planId": 70303, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1679, + "planId": 70304, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1680, + "planId": 70305, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1681, + "planId": 70306, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1682, + "planId": 70307, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1683, + "planId": 70308, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1684, + "planId": 70309, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1685, + "planId": 70310, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1686, + "planId": 70311, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1687, + "planId": 70312, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1688, + "planId": 70313, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1689, + "planId": 70314, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1690, + "planId": 70315, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1691, + "planId": 70401, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1692, + "planId": 70402, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1693, + "planId": 70403, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1694, + "planId": 70404, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1695, + "planId": 70405, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1696, + "planId": 70406, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1697, + "planId": 70407, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1698, + "planId": 70408, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1699, + "planId": 70409, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1700, + "planId": 70410, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1701, + "planId": 70411, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1702, + "planId": 70412, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1703, + "planId": 70413, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1704, + "planId": 70414, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1705, + "planId": 70415, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1706, + "planId": 70501, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1707, + "planId": 70502, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1708, + "planId": 70503, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1709, + "planId": 70504, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1710, + "planId": 70505, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1711, + "planId": 70506, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1712, + "planId": 70507, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1713, + "planId": 70508, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1714, + "planId": 70509, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1715, + "planId": 70510, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1716, + "planId": 70511, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1717, + "planId": 70512, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1718, + "planId": 70513, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1719, + "planId": 70514, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1720, + "planId": 70515, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1721, + "planId": 70516, + "nodeType": 3, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1722, + "planId": 70517, + "nodeType": 3, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1723, + "planId": 70518, + "nodeType": 3, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1724, + "planId": 70519, + "nodeType": 3, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1725, + "planId": 70520, + "nodeType": 3, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1726, + "planId": 80101, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1727, + "planId": 80102, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1728, + "planId": 80103, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1729, + "planId": 80104, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1730, + "planId": 80105, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1731, + "planId": 80106, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1732, + "planId": 80107, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1733, + "planId": 80108, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1734, + "planId": 80109, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1735, + "planId": 80110, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1736, + "planId": 80111, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1737, + "planId": 80112, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1738, + "planId": 80113, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1739, + "planId": 80114, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1740, + "planId": 80115, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1741, + "planId": 80201, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1742, + "planId": 80202, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1743, + "planId": 80203, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1744, + "planId": 80204, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1745, + "planId": 80205, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1746, + "planId": 80206, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1747, + "planId": 80207, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1748, + "planId": 80208, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1749, + "planId": 80209, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1750, + "planId": 80210, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1751, + "planId": 80211, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1752, + "planId": 80212, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1753, + "planId": 80213, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1754, + "planId": 80214, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1755, + "planId": 80215, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1756, + "planId": 80301, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1757, + "planId": 80302, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1758, + "planId": 80303, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1759, + "planId": 80304, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1760, + "planId": 80305, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1761, + "planId": 80306, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1762, + "planId": 80307, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1763, + "planId": 80308, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1764, + "planId": 80309, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1765, + "planId": 80310, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1766, + "planId": 80311, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1767, + "planId": 80312, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1768, + "planId": 80313, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1769, + "planId": 80314, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1770, + "planId": 80315, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1771, + "planId": 80401, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1772, + "planId": 80402, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1773, + "planId": 80403, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1774, + "planId": 80404, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1775, + "planId": 80405, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1776, + "planId": 80406, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1777, + "planId": 80407, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1778, + "planId": 80408, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1779, + "planId": 80409, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1780, + "planId": 80410, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1781, + "planId": 80411, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1782, + "planId": 80412, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1783, + "planId": 80413, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1784, + "planId": 80414, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1785, + "planId": 80415, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1786, + "planId": 80501, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1787, + "planId": 80502, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1788, + "planId": 80503, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1789, + "planId": 80504, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1790, + "planId": 80505, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1791, + "planId": 80506, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1792, + "planId": 80507, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1793, + "planId": 80508, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1794, + "planId": 80509, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1795, + "planId": 80510, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1796, + "planId": 80511, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1797, + "planId": 80512, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1798, + "planId": 80513, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1799, + "planId": 80514, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1800, + "planId": 80515, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1801, + "planId": 80516, + "nodeType": 3, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1802, + "planId": 80517, + "nodeType": 3, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1803, + "planId": 80518, + "nodeType": 3, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1804, + "planId": 80519, + "nodeType": 3, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1805, + "planId": 80520, + "nodeType": 3, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1806, + "planId": 90101, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1807, + "planId": 90102, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1808, + "planId": 90103, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1809, + "planId": 90104, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1810, + "planId": 90105, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1811, + "planId": 90106, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1812, + "planId": 90107, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1813, + "planId": 90108, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1814, + "planId": 90109, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1815, + "planId": 90110, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1816, + "planId": 90111, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1817, + "planId": 90112, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1818, + "planId": 90113, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1819, + "planId": 90114, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1820, + "planId": 90115, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1821, + "planId": 90201, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1822, + "planId": 90202, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1823, + "planId": 90203, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1824, + "planId": 90204, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1825, + "planId": 90205, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1826, + "planId": 90206, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1827, + "planId": 90207, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1828, + "planId": 90208, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1829, + "planId": 90209, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1830, + "planId": 90210, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1831, + "planId": 90211, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1832, + "planId": 90212, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1833, + "planId": 90213, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1834, + "planId": 90214, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1835, + "planId": 90215, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1836, + "planId": 90301, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1837, + "planId": 90302, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1838, + "planId": 90303, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1839, + "planId": 90304, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1840, + "planId": 90305, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1841, + "planId": 90306, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1842, + "planId": 90307, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1843, + "planId": 90308, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1844, + "planId": 90309, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1845, + "planId": 90310, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1846, + "planId": 90311, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1847, + "planId": 90312, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1848, + "planId": 90313, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1849, + "planId": 90314, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1850, + "planId": 90315, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1851, + "planId": 90401, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1852, + "planId": 90402, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1853, + "planId": 90403, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1854, + "planId": 90404, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1855, + "planId": 90405, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1856, + "planId": 90406, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1857, + "planId": 90407, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1858, + "planId": 90408, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1859, + "planId": 90409, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1860, + "planId": 90410, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1861, + "planId": 90411, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1862, + "planId": 90412, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1863, + "planId": 90413, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1864, + "planId": 90414, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1865, + "planId": 90415, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1866, + "planId": 90501, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1867, + "planId": 90502, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1868, + "planId": 90503, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1869, + "planId": 90504, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1870, + "planId": 90505, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1871, + "planId": 90506, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1872, + "planId": 90507, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1873, + "planId": 90508, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1874, + "planId": 90509, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1875, + "planId": 90510, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1876, + "planId": 90511, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1877, + "planId": 90512, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1878, + "planId": 90513, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1879, + "planId": 90514, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1880, + "planId": 90515, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1881, + "planId": 90516, + "nodeType": 3, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1882, + "planId": 90517, + "nodeType": 3, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1883, + "planId": 90518, + "nodeType": 3, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1884, + "planId": 90519, + "nodeType": 3, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1885, + "planId": 90520, + "nodeType": 3, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1886, + "planId": 100101, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1887, + "planId": 100102, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1888, + "planId": 100103, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1889, + "planId": 100104, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1890, + "planId": 100105, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1891, + "planId": 100106, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1892, + "planId": 100107, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1893, + "planId": 100108, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1894, + "planId": 100109, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1895, + "planId": 100110, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1896, + "planId": 100111, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1897, + "planId": 100112, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1898, + "planId": 100113, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1899, + "planId": 100114, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1900, + "planId": 100115, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1901, + "planId": 100201, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1902, + "planId": 100202, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1903, + "planId": 100203, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1904, + "planId": 100204, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1905, + "planId": 100205, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1906, + "planId": 100206, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1907, + "planId": 100207, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1908, + "planId": 100208, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1909, + "planId": 100209, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1910, + "planId": 100210, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1911, + "planId": 100211, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1912, + "planId": 100212, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1913, + "planId": 100213, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1914, + "planId": 100214, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1915, + "planId": 100215, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1916, + "planId": 100301, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1917, + "planId": 100302, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1918, + "planId": 100303, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1919, + "planId": 100304, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1920, + "planId": 100305, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1921, + "planId": 100306, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1922, + "planId": 100307, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1923, + "planId": 100308, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1924, + "planId": 100309, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1925, + "planId": 100310, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1926, + "planId": 100311, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1927, + "planId": 100312, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1928, + "planId": 100313, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1929, + "planId": 100314, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1930, + "planId": 100315, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1931, + "planId": 100401, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1932, + "planId": 100402, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1933, + "planId": 100403, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1934, + "planId": 100404, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1935, + "planId": 100405, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1936, + "planId": 100406, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1937, + "planId": 100407, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1938, + "planId": 100408, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1939, + "planId": 100409, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1940, + "planId": 100410, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1941, + "planId": 100411, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1942, + "planId": 100412, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1943, + "planId": 100413, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1944, + "planId": 100414, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1945, + "planId": 100415, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1946, + "planId": 100501, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1947, + "planId": 100502, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1948, + "planId": 100503, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1949, + "planId": 100504, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1950, + "planId": 100505, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1951, + "planId": 100506, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1952, + "planId": 100507, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1953, + "planId": 100508, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1954, + "planId": 100509, + "nodeType": 3, + "charaPlan": 1, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 1, + "passiveCardPlan": 1, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 1, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1955, + "planId": 100510, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1956, + "planId": 100511, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1957, + "planId": 100512, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1958, + "planId": 100513, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1959, + "planId": 100514, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1960, + "planId": 100515, + "nodeType": 3, + "charaPlan": 2, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 2, + "passiveCardPlan": 2, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 2, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1961, + "planId": 100516, + "nodeType": 3, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1962, + "planId": 100517, + "nodeType": 3, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1963, + "planId": 100518, + "nodeType": 3, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1964, + "planId": 100519, + "nodeType": 3, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1965, + "planId": 100520, + "nodeType": 3, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 2, + "charaPassivePlan": 3, + "passiveCardPlan": 3, + "passiveCardRandomNum": 3, + "passiveCardChooseNum": 1, + "holyCardPlan": 3, + "holyCardRandomNum": 3, + "holyCardChooseNum": 1, + "coin": 500, + "score": 30, + "tech": 20, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1966, + "planId": 10101, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1967, + "planId": 10102, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1968, + "planId": 10103, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1969, + "planId": 10104, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1970, + "planId": 10105, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1971, + "planId": 20101, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1972, + "planId": 20102, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1973, + "planId": 20103, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1974, + "planId": 20104, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1975, + "planId": 20105, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1976, + "planId": 20106, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1977, + "planId": 20107, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1978, + "planId": 20108, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1979, + "planId": 20109, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1980, + "planId": 20110, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1981, + "planId": 30101, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1982, + "planId": 30102, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1983, + "planId": 30103, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1984, + "planId": 30104, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1985, + "planId": 30105, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1986, + "planId": 30106, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1987, + "planId": 30107, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1988, + "planId": 30108, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1989, + "planId": 30109, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1990, + "planId": 30110, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1991, + "planId": 30111, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1992, + "planId": 30112, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1993, + "planId": 30113, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1994, + "planId": 30114, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1995, + "planId": 30115, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1996, + "planId": 30201, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1997, + "planId": 30202, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1998, + "planId": 30203, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 1999, + "planId": 30204, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2000, + "planId": 30205, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2001, + "planId": 30206, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2002, + "planId": 30207, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2003, + "planId": 30208, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2004, + "planId": 30209, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2005, + "planId": 30210, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2006, + "planId": 30211, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2007, + "planId": 30212, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2008, + "planId": 30213, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2009, + "planId": 30214, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2010, + "planId": 30215, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2011, + "planId": 30301, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2012, + "planId": 30302, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2013, + "planId": 30303, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2014, + "planId": 30304, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2015, + "planId": 30305, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2016, + "planId": 30306, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2017, + "planId": 30307, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2018, + "planId": 30308, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2019, + "planId": 30309, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2020, + "planId": 30310, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2021, + "planId": 30311, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2022, + "planId": 30312, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2023, + "planId": 30313, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2024, + "planId": 30314, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2025, + "planId": 30315, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2026, + "planId": 30401, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2027, + "planId": 30402, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2028, + "planId": 30403, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2029, + "planId": 30404, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2030, + "planId": 30405, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2031, + "planId": 30406, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2032, + "planId": 30407, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2033, + "planId": 30408, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2034, + "planId": 30409, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2035, + "planId": 30410, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2036, + "planId": 30411, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2037, + "planId": 30412, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2038, + "planId": 30413, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2039, + "planId": 30414, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2040, + "planId": 30415, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2041, + "planId": 30501, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 3, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2042, + "planId": 30502, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 3, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2043, + "planId": 30503, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 3, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2044, + "planId": 30504, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 3, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2045, + "planId": 30505, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 3, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2046, + "planId": 30506, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2047, + "planId": 30507, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2048, + "planId": 30508, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2049, + "planId": 30509, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2050, + "planId": 30510, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2051, + "planId": 30511, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2052, + "planId": 30512, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2053, + "planId": 30513, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2054, + "planId": 30514, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2055, + "planId": 30515, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2056, + "planId": 30516, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2057, + "planId": 30517, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2058, + "planId": 30518, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2059, + "planId": 30519, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2060, + "planId": 30520, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2061, + "planId": 40101, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2062, + "planId": 40102, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2063, + "planId": 40103, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2064, + "planId": 40104, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2065, + "planId": 40105, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2066, + "planId": 40106, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2067, + "planId": 40107, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2068, + "planId": 40108, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2069, + "planId": 40109, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2070, + "planId": 40110, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2071, + "planId": 40111, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2072, + "planId": 40112, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2073, + "planId": 40113, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2074, + "planId": 40114, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2075, + "planId": 40115, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2076, + "planId": 40201, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2077, + "planId": 40202, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2078, + "planId": 40203, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2079, + "planId": 40204, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2080, + "planId": 40205, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2081, + "planId": 40206, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2082, + "planId": 40207, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2083, + "planId": 40208, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2084, + "planId": 40209, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2085, + "planId": 40210, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2086, + "planId": 40211, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2087, + "planId": 40212, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2088, + "planId": 40213, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2089, + "planId": 40214, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2090, + "planId": 40215, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2091, + "planId": 40301, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2092, + "planId": 40302, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2093, + "planId": 40303, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2094, + "planId": 40304, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2095, + "planId": 40305, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2096, + "planId": 40306, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2097, + "planId": 40307, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2098, + "planId": 40308, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2099, + "planId": 40309, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2100, + "planId": 40310, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2101, + "planId": 40311, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2102, + "planId": 40312, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2103, + "planId": 40313, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2104, + "planId": 40314, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2105, + "planId": 40315, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2106, + "planId": 40401, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2107, + "planId": 40402, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2108, + "planId": 40403, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2109, + "planId": 40404, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2110, + "planId": 40405, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2111, + "planId": 40406, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2112, + "planId": 40407, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2113, + "planId": 40408, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2114, + "planId": 40409, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2115, + "planId": 40410, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2116, + "planId": 40411, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2117, + "planId": 40412, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2118, + "planId": 40413, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2119, + "planId": 40414, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2120, + "planId": 40415, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2121, + "planId": 40501, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 3, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2122, + "planId": 40502, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 3, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2123, + "planId": 40503, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 3, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2124, + "planId": 40504, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 3, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2125, + "planId": 40505, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 3, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2126, + "planId": 40506, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2127, + "planId": 40507, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2128, + "planId": 40508, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2129, + "planId": 40509, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2130, + "planId": 40510, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2131, + "planId": 40511, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2132, + "planId": 40512, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2133, + "planId": 40513, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2134, + "planId": 40514, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2135, + "planId": 40515, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2136, + "planId": 40516, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2137, + "planId": 40517, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2138, + "planId": 40518, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2139, + "planId": 40519, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2140, + "planId": 40520, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2141, + "planId": 50101, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2142, + "planId": 50102, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2143, + "planId": 50103, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2144, + "planId": 50104, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2145, + "planId": 50105, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2146, + "planId": 50106, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2147, + "planId": 50107, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2148, + "planId": 50108, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2149, + "planId": 50109, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2150, + "planId": 50110, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2151, + "planId": 50111, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2152, + "planId": 50112, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2153, + "planId": 50113, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2154, + "planId": 50114, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2155, + "planId": 50115, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2156, + "planId": 50201, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2157, + "planId": 50202, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2158, + "planId": 50203, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2159, + "planId": 50204, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2160, + "planId": 50205, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2161, + "planId": 50206, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2162, + "planId": 50207, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2163, + "planId": 50208, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2164, + "planId": 50209, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2165, + "planId": 50210, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2166, + "planId": 50211, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2167, + "planId": 50212, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2168, + "planId": 50213, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2169, + "planId": 50214, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2170, + "planId": 50215, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2171, + "planId": 50301, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2172, + "planId": 50302, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2173, + "planId": 50303, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2174, + "planId": 50304, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2175, + "planId": 50305, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2176, + "planId": 50306, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2177, + "planId": 50307, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2178, + "planId": 50308, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2179, + "planId": 50309, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2180, + "planId": 50310, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2181, + "planId": 50311, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2182, + "planId": 50312, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2183, + "planId": 50313, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2184, + "planId": 50314, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2185, + "planId": 50315, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2186, + "planId": 50401, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2187, + "planId": 50402, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2188, + "planId": 50403, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2189, + "planId": 50404, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2190, + "planId": 50405, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2191, + "planId": 50406, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2192, + "planId": 50407, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2193, + "planId": 50408, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2194, + "planId": 50409, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2195, + "planId": 50410, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2196, + "planId": 50411, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2197, + "planId": 50412, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2198, + "planId": 50413, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2199, + "planId": 50414, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2200, + "planId": 50415, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2201, + "planId": 50501, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 3, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2202, + "planId": 50502, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 3, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2203, + "planId": 50503, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 3, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2204, + "planId": 50504, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 3, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2205, + "planId": 50505, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 3, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2206, + "planId": 50506, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2207, + "planId": 50507, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2208, + "planId": 50508, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2209, + "planId": 50509, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2210, + "planId": 50510, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2211, + "planId": 50511, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2212, + "planId": 50512, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2213, + "planId": 50513, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2214, + "planId": 50514, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2215, + "planId": 50515, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2216, + "planId": 50516, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2217, + "planId": 50517, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2218, + "planId": 50518, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2219, + "planId": 50519, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2220, + "planId": 50520, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2221, + "planId": 60101, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2222, + "planId": 60102, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2223, + "planId": 60103, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2224, + "planId": 60104, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2225, + "planId": 60105, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2226, + "planId": 60106, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2227, + "planId": 60107, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2228, + "planId": 60108, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2229, + "planId": 60109, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2230, + "planId": 60110, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2231, + "planId": 60111, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2232, + "planId": 60112, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2233, + "planId": 60113, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2234, + "planId": 60114, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2235, + "planId": 60115, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2236, + "planId": 60201, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2237, + "planId": 60202, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2238, + "planId": 60203, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2239, + "planId": 60204, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2240, + "planId": 60205, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2241, + "planId": 60206, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2242, + "planId": 60207, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2243, + "planId": 60208, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2244, + "planId": 60209, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2245, + "planId": 60210, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2246, + "planId": 60211, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2247, + "planId": 60212, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2248, + "planId": 60213, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2249, + "planId": 60214, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2250, + "planId": 60215, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2251, + "planId": 60301, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2252, + "planId": 60302, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2253, + "planId": 60303, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2254, + "planId": 60304, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2255, + "planId": 60305, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2256, + "planId": 60306, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2257, + "planId": 60307, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2258, + "planId": 60308, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2259, + "planId": 60309, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2260, + "planId": 60310, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2261, + "planId": 60311, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2262, + "planId": 60312, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2263, + "planId": 60313, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2264, + "planId": 60314, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2265, + "planId": 60315, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2266, + "planId": 60401, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2267, + "planId": 60402, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2268, + "planId": 60403, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2269, + "planId": 60404, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2270, + "planId": 60405, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2271, + "planId": 60406, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2272, + "planId": 60407, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2273, + "planId": 60408, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2274, + "planId": 60409, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2275, + "planId": 60410, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2276, + "planId": 60411, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2277, + "planId": 60412, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2278, + "planId": 60413, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2279, + "planId": 60414, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2280, + "planId": 60415, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2281, + "planId": 60501, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 3, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2282, + "planId": 60502, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 3, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2283, + "planId": 60503, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 3, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2284, + "planId": 60504, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 3, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2285, + "planId": 60505, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 3, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2286, + "planId": 60506, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2287, + "planId": 60507, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2288, + "planId": 60508, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2289, + "planId": 60509, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2290, + "planId": 60510, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2291, + "planId": 60511, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2292, + "planId": 60512, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2293, + "planId": 60513, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2294, + "planId": 60514, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2295, + "planId": 60515, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2296, + "planId": 60516, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2297, + "planId": 60517, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2298, + "planId": 60518, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2299, + "planId": 60519, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2300, + "planId": 60520, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2301, + "planId": 70101, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2302, + "planId": 70102, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2303, + "planId": 70103, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2304, + "planId": 70104, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2305, + "planId": 70105, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2306, + "planId": 70106, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2307, + "planId": 70107, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2308, + "planId": 70108, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2309, + "planId": 70109, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2310, + "planId": 70110, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2311, + "planId": 70111, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2312, + "planId": 70112, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2313, + "planId": 70113, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2314, + "planId": 70114, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2315, + "planId": 70115, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2316, + "planId": 70201, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2317, + "planId": 70202, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2318, + "planId": 70203, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2319, + "planId": 70204, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2320, + "planId": 70205, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2321, + "planId": 70206, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2322, + "planId": 70207, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2323, + "planId": 70208, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2324, + "planId": 70209, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2325, + "planId": 70210, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2326, + "planId": 70211, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2327, + "planId": 70212, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2328, + "planId": 70213, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2329, + "planId": 70214, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2330, + "planId": 70215, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2331, + "planId": 70301, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2332, + "planId": 70302, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2333, + "planId": 70303, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2334, + "planId": 70304, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2335, + "planId": 70305, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2336, + "planId": 70306, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2337, + "planId": 70307, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2338, + "planId": 70308, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2339, + "planId": 70309, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2340, + "planId": 70310, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2341, + "planId": 70311, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2342, + "planId": 70312, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2343, + "planId": 70313, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2344, + "planId": 70314, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2345, + "planId": 70315, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2346, + "planId": 70401, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2347, + "planId": 70402, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2348, + "planId": 70403, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2349, + "planId": 70404, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2350, + "planId": 70405, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2351, + "planId": 70406, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2352, + "planId": 70407, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2353, + "planId": 70408, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2354, + "planId": 70409, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2355, + "planId": 70410, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2356, + "planId": 70411, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2357, + "planId": 70412, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2358, + "planId": 70413, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2359, + "planId": 70414, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2360, + "planId": 70415, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2361, + "planId": 70501, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 3, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2362, + "planId": 70502, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 3, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2363, + "planId": 70503, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 3, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2364, + "planId": 70504, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 3, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2365, + "planId": 70505, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 3, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2366, + "planId": 70506, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2367, + "planId": 70507, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2368, + "planId": 70508, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2369, + "planId": 70509, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2370, + "planId": 70510, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2371, + "planId": 70511, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2372, + "planId": 70512, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2373, + "planId": 70513, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2374, + "planId": 70514, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2375, + "planId": 70515, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2376, + "planId": 70516, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2377, + "planId": 70517, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2378, + "planId": 70518, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2379, + "planId": 70519, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2380, + "planId": 70520, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2381, + "planId": 80101, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2382, + "planId": 80102, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2383, + "planId": 80103, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2384, + "planId": 80104, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2385, + "planId": 80105, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2386, + "planId": 80106, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2387, + "planId": 80107, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2388, + "planId": 80108, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2389, + "planId": 80109, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2390, + "planId": 80110, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2391, + "planId": 80111, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2392, + "planId": 80112, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2393, + "planId": 80113, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2394, + "planId": 80114, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2395, + "planId": 80115, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2396, + "planId": 80201, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2397, + "planId": 80202, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2398, + "planId": 80203, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2399, + "planId": 80204, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2400, + "planId": 80205, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2401, + "planId": 80206, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2402, + "planId": 80207, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2403, + "planId": 80208, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2404, + "planId": 80209, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2405, + "planId": 80210, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2406, + "planId": 80211, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2407, + "planId": 80212, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2408, + "planId": 80213, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2409, + "planId": 80214, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2410, + "planId": 80215, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2411, + "planId": 80301, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2412, + "planId": 80302, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2413, + "planId": 80303, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2414, + "planId": 80304, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2415, + "planId": 80305, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2416, + "planId": 80306, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2417, + "planId": 80307, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2418, + "planId": 80308, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2419, + "planId": 80309, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2420, + "planId": 80310, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2421, + "planId": 80311, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2422, + "planId": 80312, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2423, + "planId": 80313, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2424, + "planId": 80314, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2425, + "planId": 80315, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2426, + "planId": 80401, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2427, + "planId": 80402, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2428, + "planId": 80403, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2429, + "planId": 80404, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2430, + "planId": 80405, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2431, + "planId": 80406, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2432, + "planId": 80407, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2433, + "planId": 80408, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2434, + "planId": 80409, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2435, + "planId": 80410, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2436, + "planId": 80411, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2437, + "planId": 80412, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2438, + "planId": 80413, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2439, + "planId": 80414, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2440, + "planId": 80415, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2441, + "planId": 80501, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 3, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2442, + "planId": 80502, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 3, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2443, + "planId": 80503, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 3, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2444, + "planId": 80504, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 3, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2445, + "planId": 80505, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 3, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2446, + "planId": 80506, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2447, + "planId": 80507, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2448, + "planId": 80508, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2449, + "planId": 80509, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2450, + "planId": 80510, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2451, + "planId": 80511, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2452, + "planId": 80512, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2453, + "planId": 80513, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2454, + "planId": 80514, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2455, + "planId": 80515, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2456, + "planId": 80516, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2457, + "planId": 80517, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2458, + "planId": 80518, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2459, + "planId": 80519, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2460, + "planId": 80520, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2461, + "planId": 90101, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2462, + "planId": 90102, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2463, + "planId": 90103, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2464, + "planId": 90104, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2465, + "planId": 90105, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2466, + "planId": 90106, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2467, + "planId": 90107, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2468, + "planId": 90108, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2469, + "planId": 90109, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2470, + "planId": 90110, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2471, + "planId": 90111, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2472, + "planId": 90112, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2473, + "planId": 90113, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2474, + "planId": 90114, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2475, + "planId": 90115, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2476, + "planId": 90201, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2477, + "planId": 90202, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2478, + "planId": 90203, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2479, + "planId": 90204, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2480, + "planId": 90205, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2481, + "planId": 90206, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2482, + "planId": 90207, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2483, + "planId": 90208, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2484, + "planId": 90209, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2485, + "planId": 90210, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2486, + "planId": 90211, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2487, + "planId": 90212, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2488, + "planId": 90213, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2489, + "planId": 90214, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2490, + "planId": 90215, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2491, + "planId": 90301, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2492, + "planId": 90302, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2493, + "planId": 90303, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2494, + "planId": 90304, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2495, + "planId": 90305, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2496, + "planId": 90306, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2497, + "planId": 90307, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2498, + "planId": 90308, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2499, + "planId": 90309, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2500, + "planId": 90310, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2501, + "planId": 90311, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2502, + "planId": 90312, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2503, + "planId": 90313, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2504, + "planId": 90314, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2505, + "planId": 90315, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2506, + "planId": 90401, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2507, + "planId": 90402, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2508, + "planId": 90403, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2509, + "planId": 90404, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2510, + "planId": 90405, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2511, + "planId": 90406, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2512, + "planId": 90407, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2513, + "planId": 90408, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2514, + "planId": 90409, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2515, + "planId": 90410, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2516, + "planId": 90411, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2517, + "planId": 90412, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2518, + "planId": 90413, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2519, + "planId": 90414, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2520, + "planId": 90415, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2521, + "planId": 90501, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 3, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2522, + "planId": 90502, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 3, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2523, + "planId": 90503, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 3, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2524, + "planId": 90504, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 3, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2525, + "planId": 90505, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 3, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2526, + "planId": 90506, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2527, + "planId": 90507, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2528, + "planId": 90508, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2529, + "planId": 90509, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2530, + "planId": 90510, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2531, + "planId": 90511, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2532, + "planId": 90512, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2533, + "planId": 90513, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2534, + "planId": 90514, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2535, + "planId": 90515, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2536, + "planId": 90516, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2537, + "planId": 90517, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2538, + "planId": 90518, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2539, + "planId": 90519, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2540, + "planId": 90520, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2541, + "planId": 100101, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2542, + "planId": 100102, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2543, + "planId": 100103, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2544, + "planId": 100104, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2545, + "planId": 100105, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2546, + "planId": 100106, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2547, + "planId": 100107, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2548, + "planId": 100108, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2549, + "planId": 100109, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2550, + "planId": 100110, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2551, + "planId": 100111, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2552, + "planId": 100112, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2553, + "planId": 100113, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2554, + "planId": 100114, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2555, + "planId": 100115, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2556, + "planId": 100201, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2557, + "planId": 100202, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2558, + "planId": 100203, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2559, + "planId": 100204, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2560, + "planId": 100205, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2561, + "planId": 100206, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2562, + "planId": 100207, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2563, + "planId": 100208, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2564, + "planId": 100209, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2565, + "planId": 100210, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2566, + "planId": 100211, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2567, + "planId": 100212, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2568, + "planId": 100213, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2569, + "planId": 100214, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2570, + "planId": 100215, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2571, + "planId": 100301, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2572, + "planId": 100302, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2573, + "planId": 100303, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2574, + "planId": 100304, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2575, + "planId": 100305, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2576, + "planId": 100306, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2577, + "planId": 100307, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2578, + "planId": 100308, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2579, + "planId": 100309, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2580, + "planId": 100310, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2581, + "planId": 100311, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2582, + "planId": 100312, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2583, + "planId": 100313, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2584, + "planId": 100314, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2585, + "planId": 100315, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2586, + "planId": 100401, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2587, + "planId": 100402, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2588, + "planId": 100403, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2589, + "planId": 100404, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2590, + "planId": 100405, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2591, + "planId": 100406, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2592, + "planId": 100407, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2593, + "planId": 100408, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2594, + "planId": 100409, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2595, + "planId": 100410, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2596, + "planId": 100411, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2597, + "planId": 100412, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2598, + "planId": 100413, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2599, + "planId": 100414, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2600, + "planId": 100415, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2601, + "planId": 100501, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 3, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2602, + "planId": 100502, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 3, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2603, + "planId": 100503, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 3, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2604, + "planId": 100504, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 3, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2605, + "planId": 100505, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 3, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2606, + "planId": 100506, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2607, + "planId": 100507, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2608, + "planId": 100508, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2609, + "planId": 100509, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2610, + "planId": 100510, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2611, + "planId": 100511, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2612, + "planId": 100512, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 2, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2613, + "planId": 100513, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2614, + "planId": 100514, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2615, + "planId": 100515, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2616, + "planId": 100516, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2617, + "planId": 100517, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2618, + "planId": 100518, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2619, + "planId": 100519, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + }, + { + "id": 2620, + "planId": 100520, + "nodeType": 5, + "charaPlan": 3, + "charaRandomNum": 3, + "charaChooseNum": 3, + "charaPassivePlan": 1, + "passiveCardPlan": 0, + "passiveCardRandomNum": 0, + "passiveCardChooseNum": 0, + "holyCardPlan": 0, + "holyCardRandomNum": 0, + "holyCardChooseNum": 0, + "coin": 0, + "score": 0, + "tech": 0, + "goods": "&", + "__EMPTY": 0, + "__EMPTY_1": 0 + } +] \ No newline at end of file diff --git a/shared/resource/jsons/dic_rougeNode.json b/shared/resource/jsons/dic_rougeNode.json new file mode 100644 index 000000000..c8ce021f1 --- /dev/null +++ b/shared/resource/jsons/dic_rougeNode.json @@ -0,0 +1,13092 @@ +[ + { + "id": 1, + "nodeId": 1110101, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101110101 + }, + { + "id": 2, + "nodeId": 1110201, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101110201 + }, + { + "id": 3, + "nodeId": 1110301, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101110301 + }, + { + "id": 4, + "nodeId": 1110401, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101110401 + }, + { + "id": 5, + "nodeId": 1110501, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101110501 + }, + { + "id": 6, + "nodeId": 1110601, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101110601 + }, + { + "id": 7, + "nodeId": 1110701, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101110701 + }, + { + "id": 8, + "nodeId": 1110801, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101110801 + }, + { + "id": 9, + "nodeId": 1120101, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101120101 + }, + { + "id": 10, + "nodeId": 1120201, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101120201 + }, + { + "id": 11, + "nodeId": 1120301, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101120301 + }, + { + "id": 12, + "nodeId": 1120401, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101120401 + }, + { + "id": 13, + "nodeId": 1120501, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101120501 + }, + { + "id": 14, + "nodeId": 1120601, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101120601 + }, + { + "id": 15, + "nodeId": 1120701, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101120701 + }, + { + "id": 16, + "nodeId": 1120801, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101120801 + }, + { + "id": 17, + "nodeId": 1130101, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101130101 + }, + { + "id": 18, + "nodeId": 1130201, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101130201 + }, + { + "id": 19, + "nodeId": 1130301, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101130301 + }, + { + "id": 20, + "nodeId": 1130401, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101130401 + }, + { + "id": 21, + "nodeId": 1130501, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101130501 + }, + { + "id": 22, + "nodeId": 1130601, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101130601 + }, + { + "id": 23, + "nodeId": 1130701, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101130701 + }, + { + "id": 24, + "nodeId": 1130801, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101130801 + }, + { + "id": 25, + "nodeId": 1210101, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104110101 + }, + { + "id": 26, + "nodeId": 1210201, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104110201 + }, + { + "id": 27, + "nodeId": 1210301, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104110301 + }, + { + "id": 28, + "nodeId": 1210401, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104110401 + }, + { + "id": 29, + "nodeId": 1210501, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104110501 + }, + { + "id": 30, + "nodeId": 1210601, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104110601 + }, + { + "id": 31, + "nodeId": 1210701, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104110701 + }, + { + "id": 32, + "nodeId": 1210801, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104110801 + }, + { + "id": 33, + "nodeId": 1220101, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104120101 + }, + { + "id": 34, + "nodeId": 1220201, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104120201 + }, + { + "id": 35, + "nodeId": 1220301, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104120301 + }, + { + "id": 36, + "nodeId": 1220401, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104120401 + }, + { + "id": 37, + "nodeId": 1220501, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104120501 + }, + { + "id": 38, + "nodeId": 1220601, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104120601 + }, + { + "id": 39, + "nodeId": 1220701, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104120701 + }, + { + "id": 40, + "nodeId": 1220801, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104120801 + }, + { + "id": 41, + "nodeId": 1230101, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104130101 + }, + { + "id": 42, + "nodeId": 1230201, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104130201 + }, + { + "id": 43, + "nodeId": 1230301, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104130301 + }, + { + "id": 44, + "nodeId": 1230401, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104130401 + }, + { + "id": 45, + "nodeId": 1230501, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104130501 + }, + { + "id": 46, + "nodeId": 1230601, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104130601 + }, + { + "id": 47, + "nodeId": 1230701, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104130701 + }, + { + "id": 48, + "nodeId": 1230801, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104130801 + }, + { + "id": 49, + "nodeId": 1310101, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109110101 + }, + { + "id": 50, + "nodeId": 1310101, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109310101 + }, + { + "id": 51, + "nodeId": 1310201, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109110201 + }, + { + "id": 52, + "nodeId": 1310301, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109110301 + }, + { + "id": 53, + "nodeId": 1310401, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109110401 + }, + { + "id": 54, + "nodeId": 1310501, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109110501 + }, + { + "id": 55, + "nodeId": 1310601, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109110601 + }, + { + "id": 56, + "nodeId": 1310701, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109110701 + }, + { + "id": 57, + "nodeId": 1310801, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109110801 + }, + { + "id": 58, + "nodeId": 1320101, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109120101 + }, + { + "id": 59, + "nodeId": 1320201, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109120201 + }, + { + "id": 60, + "nodeId": 1320301, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109120301 + }, + { + "id": 61, + "nodeId": 1320401, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109120401 + }, + { + "id": 62, + "nodeId": 1320501, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109120501 + }, + { + "id": 63, + "nodeId": 1320601, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109120601 + }, + { + "id": 64, + "nodeId": 1320701, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109120701 + }, + { + "id": 65, + "nodeId": 1320801, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109120801 + }, + { + "id": 66, + "nodeId": 1330101, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109130101 + }, + { + "id": 67, + "nodeId": 1330201, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109130201 + }, + { + "id": 68, + "nodeId": 1330301, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109130301 + }, + { + "id": 69, + "nodeId": 1330401, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109130401 + }, + { + "id": 70, + "nodeId": 1330501, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109130501 + }, + { + "id": 71, + "nodeId": 1330601, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109130601 + }, + { + "id": 72, + "nodeId": 1330601, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109230601 + }, + { + "id": 73, + "nodeId": 1330701, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109130701 + }, + { + "id": 74, + "nodeId": 1330701, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109230701 + }, + { + "id": 75, + "nodeId": 1330801, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109130801 + }, + { + "id": 76, + "nodeId": 1410101, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106110101 + }, + { + "id": 77, + "nodeId": 1410201, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106110201 + }, + { + "id": 78, + "nodeId": 1410301, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106110301 + }, + { + "id": 79, + "nodeId": 1410401, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106110401 + }, + { + "id": 80, + "nodeId": 1410501, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106110501 + }, + { + "id": 81, + "nodeId": 1410601, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106110601 + }, + { + "id": 82, + "nodeId": 1410701, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106110701 + }, + { + "id": 83, + "nodeId": 1410801, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106110801 + }, + { + "id": 84, + "nodeId": 1420101, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106120101 + }, + { + "id": 85, + "nodeId": 1420201, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106120201 + }, + { + "id": 86, + "nodeId": 1420301, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106120301 + }, + { + "id": 87, + "nodeId": 1420401, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106120401 + }, + { + "id": 88, + "nodeId": 1420501, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106120501 + }, + { + "id": 89, + "nodeId": 1420601, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106120601 + }, + { + "id": 90, + "nodeId": 1420701, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106120701 + }, + { + "id": 91, + "nodeId": 1420801, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106120801 + }, + { + "id": 92, + "nodeId": 1430101, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106130101 + }, + { + "id": 93, + "nodeId": 1430201, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106130201 + }, + { + "id": 94, + "nodeId": 1430301, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106130301 + }, + { + "id": 95, + "nodeId": 1430401, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106130401 + }, + { + "id": 96, + "nodeId": 1430501, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106130501 + }, + { + "id": 97, + "nodeId": 1430601, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106130601 + }, + { + "id": 98, + "nodeId": 1430701, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106130701 + }, + { + "id": 99, + "nodeId": 1430801, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106130801 + }, + { + "id": 100, + "nodeId": 1510101, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110110101 + }, + { + "id": 101, + "nodeId": 1510201, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110110201 + }, + { + "id": 102, + "nodeId": 1510301, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110110301 + }, + { + "id": 103, + "nodeId": 1510401, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110110401 + }, + { + "id": 104, + "nodeId": 1510501, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110110501 + }, + { + "id": 105, + "nodeId": 1510601, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110110601 + }, + { + "id": 106, + "nodeId": 1510701, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110110701 + }, + { + "id": 107, + "nodeId": 1510801, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110110801 + }, + { + "id": 108, + "nodeId": 1520101, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110120101 + }, + { + "id": 109, + "nodeId": 1520201, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110120201 + }, + { + "id": 110, + "nodeId": 1520301, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110120301 + }, + { + "id": 111, + "nodeId": 1520401, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110120401 + }, + { + "id": 112, + "nodeId": 1520501, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110120501 + }, + { + "id": 113, + "nodeId": 1520601, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110120601 + }, + { + "id": 114, + "nodeId": 1520701, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110120701 + }, + { + "id": 115, + "nodeId": 1520801, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110120801 + }, + { + "id": 116, + "nodeId": 1530101, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110130101 + }, + { + "id": 117, + "nodeId": 1530201, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110130201 + }, + { + "id": 118, + "nodeId": 1530301, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110130301 + }, + { + "id": 119, + "nodeId": 1530401, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110130401 + }, + { + "id": 120, + "nodeId": 1530501, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110130501 + }, + { + "id": 121, + "nodeId": 1530601, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110130601 + }, + { + "id": 122, + "nodeId": 1530701, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110130701 + }, + { + "id": 123, + "nodeId": 1530801, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110130801 + }, + { + "id": 124, + "nodeId": 1610101, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103110101 + }, + { + "id": 125, + "nodeId": 1610201, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103110201 + }, + { + "id": 126, + "nodeId": 1610301, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103110301 + }, + { + "id": 127, + "nodeId": 1610401, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103110401 + }, + { + "id": 128, + "nodeId": 1610501, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103110501 + }, + { + "id": 129, + "nodeId": 1610601, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103110601 + }, + { + "id": 130, + "nodeId": 1610701, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103110701 + }, + { + "id": 131, + "nodeId": 1610801, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103110801 + }, + { + "id": 132, + "nodeId": 1620101, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103120101 + }, + { + "id": 133, + "nodeId": 1620201, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103120201 + }, + { + "id": 134, + "nodeId": 1620301, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103120301 + }, + { + "id": 135, + "nodeId": 1620401, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103120401 + }, + { + "id": 136, + "nodeId": 1620501, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103120501 + }, + { + "id": 137, + "nodeId": 1620601, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103120601 + }, + { + "id": 138, + "nodeId": 1620701, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103120701 + }, + { + "id": 139, + "nodeId": 1620801, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103120801 + }, + { + "id": 140, + "nodeId": 1630101, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103130101 + }, + { + "id": 141, + "nodeId": 1630201, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103130201 + }, + { + "id": 142, + "nodeId": 1630301, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103130301 + }, + { + "id": 143, + "nodeId": 1630401, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103130401 + }, + { + "id": 144, + "nodeId": 1630501, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103130501 + }, + { + "id": 145, + "nodeId": 1630601, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103130601 + }, + { + "id": 146, + "nodeId": 1630701, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103130701 + }, + { + "id": 147, + "nodeId": 1630801, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103130801 + }, + { + "id": 148, + "nodeId": 1710101, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102110101 + }, + { + "id": 149, + "nodeId": 1710201, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102110201 + }, + { + "id": 150, + "nodeId": 1710301, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102110301 + }, + { + "id": 151, + "nodeId": 1710401, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102110401 + }, + { + "id": 152, + "nodeId": 1710501, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102110501 + }, + { + "id": 153, + "nodeId": 1710601, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102110601 + }, + { + "id": 154, + "nodeId": 1710701, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102110701 + }, + { + "id": 155, + "nodeId": 1710801, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102110801 + }, + { + "id": 156, + "nodeId": 1720101, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102120101 + }, + { + "id": 157, + "nodeId": 1720201, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102120201 + }, + { + "id": 158, + "nodeId": 1720301, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102120301 + }, + { + "id": 159, + "nodeId": 1720401, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102120401 + }, + { + "id": 160, + "nodeId": 1720501, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102120501 + }, + { + "id": 161, + "nodeId": 1720601, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102120601 + }, + { + "id": 162, + "nodeId": 1720701, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102120701 + }, + { + "id": 163, + "nodeId": 1720801, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102120801 + }, + { + "id": 164, + "nodeId": 1730101, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102130101 + }, + { + "id": 165, + "nodeId": 1730201, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102130201 + }, + { + "id": 166, + "nodeId": 1730301, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102130301 + }, + { + "id": 167, + "nodeId": 1730401, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102130401 + }, + { + "id": 168, + "nodeId": 1730501, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102130501 + }, + { + "id": 169, + "nodeId": 1730601, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102130601 + }, + { + "id": 170, + "nodeId": 1730701, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102130701 + }, + { + "id": 171, + "nodeId": 1730801, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102130801 + }, + { + "id": 172, + "nodeId": 1810101, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107110101 + }, + { + "id": 173, + "nodeId": 1810201, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107110201 + }, + { + "id": 174, + "nodeId": 1810301, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107110301 + }, + { + "id": 175, + "nodeId": 1810401, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107110401 + }, + { + "id": 176, + "nodeId": 1810501, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107110501 + }, + { + "id": 177, + "nodeId": 1810601, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107110601 + }, + { + "id": 178, + "nodeId": 1810701, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107110701 + }, + { + "id": 179, + "nodeId": 1810801, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107110801 + }, + { + "id": 180, + "nodeId": 1820101, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107120101 + }, + { + "id": 181, + "nodeId": 1820201, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107120201 + }, + { + "id": 182, + "nodeId": 1820301, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107120301 + }, + { + "id": 183, + "nodeId": 1820401, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107120401 + }, + { + "id": 184, + "nodeId": 1820501, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107120501 + }, + { + "id": 185, + "nodeId": 1820601, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107120601 + }, + { + "id": 186, + "nodeId": 1820701, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107120701 + }, + { + "id": 187, + "nodeId": 1820801, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107120801 + }, + { + "id": 188, + "nodeId": 1830101, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107130101 + }, + { + "id": 189, + "nodeId": 1830201, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107130201 + }, + { + "id": 190, + "nodeId": 1830301, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107130301 + }, + { + "id": 191, + "nodeId": 1830401, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107130401 + }, + { + "id": 192, + "nodeId": 1830501, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107130501 + }, + { + "id": 193, + "nodeId": 1830601, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107130601 + }, + { + "id": 194, + "nodeId": 1830701, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107130701 + }, + { + "id": 195, + "nodeId": 1830801, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107130801 + }, + { + "id": 196, + "nodeId": 2110101, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101210101 + }, + { + "id": 197, + "nodeId": 2110201, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101210201 + }, + { + "id": 198, + "nodeId": 2110301, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101210301 + }, + { + "id": 199, + "nodeId": 2110401, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101210401 + }, + { + "id": 200, + "nodeId": 2110501, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101210501 + }, + { + "id": 201, + "nodeId": 2110601, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101210601 + }, + { + "id": 202, + "nodeId": 2120101, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101220101 + }, + { + "id": 203, + "nodeId": 2120201, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101220201 + }, + { + "id": 204, + "nodeId": 2120301, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101220301 + }, + { + "id": 205, + "nodeId": 2120401, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101220401 + }, + { + "id": 206, + "nodeId": 2120501, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101220501 + }, + { + "id": 207, + "nodeId": 2120601, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101220601 + }, + { + "id": 208, + "nodeId": 2130101, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101230101 + }, + { + "id": 209, + "nodeId": 2130201, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101230201 + }, + { + "id": 210, + "nodeId": 2130301, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101230301 + }, + { + "id": 211, + "nodeId": 2130401, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101230401 + }, + { + "id": 212, + "nodeId": 2130501, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101230501 + }, + { + "id": 213, + "nodeId": 2130601, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101230601 + }, + { + "id": 214, + "nodeId": 2210101, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104210101 + }, + { + "id": 215, + "nodeId": 2210201, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104210201 + }, + { + "id": 216, + "nodeId": 2210301, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104210301 + }, + { + "id": 217, + "nodeId": 2210401, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104210401 + }, + { + "id": 218, + "nodeId": 2210501, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104210501 + }, + { + "id": 219, + "nodeId": 2210601, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104210601 + }, + { + "id": 220, + "nodeId": 2220101, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104220101 + }, + { + "id": 221, + "nodeId": 2220201, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104220201 + }, + { + "id": 222, + "nodeId": 2220301, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104220301 + }, + { + "id": 223, + "nodeId": 2220401, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104220401 + }, + { + "id": 224, + "nodeId": 2220501, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104220501 + }, + { + "id": 225, + "nodeId": 2220601, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104220601 + }, + { + "id": 226, + "nodeId": 2230101, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104230101 + }, + { + "id": 227, + "nodeId": 2230201, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104230201 + }, + { + "id": 228, + "nodeId": 2230301, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104230301 + }, + { + "id": 229, + "nodeId": 2230401, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104230401 + }, + { + "id": 230, + "nodeId": 2230501, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104230501 + }, + { + "id": 231, + "nodeId": 2230601, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104230601 + }, + { + "id": 232, + "nodeId": 2310101, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109210101 + }, + { + "id": 233, + "nodeId": 2310201, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109210201 + }, + { + "id": 234, + "nodeId": 2310301, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109210301 + }, + { + "id": 235, + "nodeId": 2310401, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109210401 + }, + { + "id": 236, + "nodeId": 2310501, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109210501 + }, + { + "id": 237, + "nodeId": 2310601, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109210601 + }, + { + "id": 238, + "nodeId": 2310701, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109210701 + }, + { + "id": 239, + "nodeId": 2320101, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109220101 + }, + { + "id": 240, + "nodeId": 2320201, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109220201 + }, + { + "id": 241, + "nodeId": 2320301, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109220301 + }, + { + "id": 242, + "nodeId": 2320401, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109220401 + }, + { + "id": 243, + "nodeId": 2320501, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109220501 + }, + { + "id": 244, + "nodeId": 2320601, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109220601 + }, + { + "id": 245, + "nodeId": 2320701, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109220701 + }, + { + "id": 246, + "nodeId": 2330101, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109230101 + }, + { + "id": 247, + "nodeId": 2330201, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109230201 + }, + { + "id": 248, + "nodeId": 2330301, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109230301 + }, + { + "id": 249, + "nodeId": 2330401, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109230401 + }, + { + "id": 250, + "nodeId": 2330501, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109230401 + }, + { + "id": 251, + "nodeId": 2410101, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106210101 + }, + { + "id": 252, + "nodeId": 2410201, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106210201 + }, + { + "id": 253, + "nodeId": 2410301, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106210301 + }, + { + "id": 254, + "nodeId": 2410401, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106210401 + }, + { + "id": 255, + "nodeId": 2410501, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106210501 + }, + { + "id": 256, + "nodeId": 2410601, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106210601 + }, + { + "id": 257, + "nodeId": 2420101, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106220101 + }, + { + "id": 258, + "nodeId": 2420201, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106220201 + }, + { + "id": 259, + "nodeId": 2420301, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106220301 + }, + { + "id": 260, + "nodeId": 2420401, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106220401 + }, + { + "id": 261, + "nodeId": 2420501, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106220501 + }, + { + "id": 262, + "nodeId": 2420601, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106220601 + }, + { + "id": 263, + "nodeId": 2430101, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106230101 + }, + { + "id": 264, + "nodeId": 2430201, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106230201 + }, + { + "id": 265, + "nodeId": 2430301, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106230301 + }, + { + "id": 266, + "nodeId": 2430401, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106230401 + }, + { + "id": 267, + "nodeId": 2430501, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106230501 + }, + { + "id": 268, + "nodeId": 2430601, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106230601 + }, + { + "id": 269, + "nodeId": 2510101, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110210101 + }, + { + "id": 270, + "nodeId": 2510201, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110210201 + }, + { + "id": 271, + "nodeId": 2510301, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110210301 + }, + { + "id": 272, + "nodeId": 2510401, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110210401 + }, + { + "id": 273, + "nodeId": 2510501, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110210501 + }, + { + "id": 274, + "nodeId": 2510601, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110210601 + }, + { + "id": 275, + "nodeId": 2510701, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110210701 + }, + { + "id": 276, + "nodeId": 2520101, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110220101 + }, + { + "id": 277, + "nodeId": 2520201, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110220201 + }, + { + "id": 278, + "nodeId": 2520301, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110220301 + }, + { + "id": 279, + "nodeId": 2520401, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110220401 + }, + { + "id": 280, + "nodeId": 2520501, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110220501 + }, + { + "id": 281, + "nodeId": 2520601, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110220601 + }, + { + "id": 282, + "nodeId": 2520701, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110220701 + }, + { + "id": 283, + "nodeId": 2530101, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110230101 + }, + { + "id": 284, + "nodeId": 2530201, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110230201 + }, + { + "id": 285, + "nodeId": 2530301, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110230301 + }, + { + "id": 286, + "nodeId": 2530401, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110230401 + }, + { + "id": 287, + "nodeId": 2530501, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110230501 + }, + { + "id": 288, + "nodeId": 2530601, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110230601 + }, + { + "id": 289, + "nodeId": 2530701, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110230701 + }, + { + "id": 290, + "nodeId": 2610101, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103210101 + }, + { + "id": 291, + "nodeId": 2610201, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103210201 + }, + { + "id": 292, + "nodeId": 2610301, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103210301 + }, + { + "id": 293, + "nodeId": 2610401, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103210401 + }, + { + "id": 294, + "nodeId": 2610501, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103210501 + }, + { + "id": 295, + "nodeId": 2620101, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103220101 + }, + { + "id": 296, + "nodeId": 2620201, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103220201 + }, + { + "id": 297, + "nodeId": 2620301, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103220301 + }, + { + "id": 298, + "nodeId": 2620401, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103220401 + }, + { + "id": 299, + "nodeId": 2620501, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103220501 + }, + { + "id": 300, + "nodeId": 2630101, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103230101 + }, + { + "id": 301, + "nodeId": 2630201, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103230201 + }, + { + "id": 302, + "nodeId": 2630301, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103230301 + }, + { + "id": 303, + "nodeId": 2630401, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103230401 + }, + { + "id": 304, + "nodeId": 2630501, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103230501 + }, + { + "id": 305, + "nodeId": 2710101, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102210101 + }, + { + "id": 306, + "nodeId": 2710201, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102210201 + }, + { + "id": 307, + "nodeId": 2710301, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102210301 + }, + { + "id": 308, + "nodeId": 2710401, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102210401 + }, + { + "id": 309, + "nodeId": 2710501, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102210501 + }, + { + "id": 310, + "nodeId": 2720101, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102220101 + }, + { + "id": 311, + "nodeId": 2720201, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102220201 + }, + { + "id": 312, + "nodeId": 2720301, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102220301 + }, + { + "id": 313, + "nodeId": 2720401, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102220401 + }, + { + "id": 314, + "nodeId": 2720501, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102220501 + }, + { + "id": 315, + "nodeId": 2730101, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102230101 + }, + { + "id": 316, + "nodeId": 2730201, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102230201 + }, + { + "id": 317, + "nodeId": 2730301, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102230301 + }, + { + "id": 318, + "nodeId": 2730401, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102230401 + }, + { + "id": 319, + "nodeId": 2730501, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102230501 + }, + { + "id": 320, + "nodeId": 2810101, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107210101 + }, + { + "id": 321, + "nodeId": 2810201, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107210201 + }, + { + "id": 322, + "nodeId": 2810301, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107210301 + }, + { + "id": 323, + "nodeId": 2810401, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107210401 + }, + { + "id": 324, + "nodeId": 2810501, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107210501 + }, + { + "id": 325, + "nodeId": 2820101, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107220101 + }, + { + "id": 326, + "nodeId": 2820201, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107220201 + }, + { + "id": 327, + "nodeId": 2820301, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107220301 + }, + { + "id": 328, + "nodeId": 2820401, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107220401 + }, + { + "id": 329, + "nodeId": 2820501, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107220501 + }, + { + "id": 330, + "nodeId": 2830101, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107230101 + }, + { + "id": 331, + "nodeId": 2830201, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107230201 + }, + { + "id": 332, + "nodeId": 2830301, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107230301 + }, + { + "id": 333, + "nodeId": 2830401, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107230401 + }, + { + "id": 334, + "nodeId": 2830501, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107230501 + }, + { + "id": 335, + "nodeId": 7110101, + "nodeType": 7, + "nodeTypeName": "儒家试炼boss", + "param": 101310101 + }, + { + "id": 336, + "nodeId": 7210101, + "nodeType": 7, + "nodeTypeName": "道家试炼boss", + "param": 104310101 + }, + { + "id": 337, + "nodeId": 7330501, + "nodeType": 7, + "nodeTypeName": "墨家试炼boss", + "param": 109230501 + }, + { + "id": 338, + "nodeId": 7410101, + "nodeType": 7, + "nodeTypeName": "法家试炼boss", + "param": 106310101 + }, + { + "id": 339, + "nodeId": 7510101, + "nodeType": 7, + "nodeTypeName": "医家试炼boss", + "param": 110310101 + }, + { + "id": 340, + "nodeId": 7610101, + "nodeType": 7, + "nodeTypeName": "兵家试炼boss", + "param": 103310101 + }, + { + "id": 341, + "nodeId": 7710101, + "nodeType": 7, + "nodeTypeName": "阴阳家试炼boss", + "param": 102310101 + }, + { + "id": 342, + "nodeId": 7810101, + "nodeType": 7, + "nodeTypeName": "纵横家试炼boss", + "param": 107310101 + }, + { + "id": 343, + "nodeId": 3110101, + "nodeType": 3, + "nodeTypeName": "挑战点", + "param": 0 + }, + { + "id": 344, + "nodeId": 3210101, + "nodeType": 3, + "nodeTypeName": "挑战点", + "param": 0 + }, + { + "id": 345, + "nodeId": 3310101, + "nodeType": 3, + "nodeTypeName": "挑战点", + "param": 0 + }, + { + "id": 346, + "nodeId": 3410101, + "nodeType": 3, + "nodeTypeName": "挑战点", + "param": 0 + }, + { + "id": 347, + "nodeId": 3510101, + "nodeType": 3, + "nodeTypeName": "挑战点", + "param": 0 + }, + { + "id": 348, + "nodeId": 3610101, + "nodeType": 3, + "nodeTypeName": "挑战点", + "param": 0 + }, + { + "id": 349, + "nodeId": 3710101, + "nodeType": 3, + "nodeTypeName": "挑战点", + "param": 0 + }, + { + "id": 350, + "nodeId": 3810101, + "nodeType": 3, + "nodeTypeName": "挑战点", + "param": 0 + }, + { + "id": 351, + "nodeId": 4110101, + "nodeType": 4, + "nodeTypeName": "商店", + "param": 0 + }, + { + "id": 352, + "nodeId": 4210101, + "nodeType": 4, + "nodeTypeName": "商店", + "param": 0 + }, + { + "id": 353, + "nodeId": 4310101, + "nodeType": 4, + "nodeTypeName": "商店", + "param": 0 + }, + { + "id": 354, + "nodeId": 4410101, + "nodeType": 4, + "nodeTypeName": "商店", + "param": 0 + }, + { + "id": 355, + "nodeId": 4510101, + "nodeType": 4, + "nodeTypeName": "商店", + "param": 0 + }, + { + "id": 356, + "nodeId": 4610101, + "nodeType": 4, + "nodeTypeName": "商店", + "param": 0 + }, + { + "id": 357, + "nodeId": 4710101, + "nodeType": 4, + "nodeTypeName": "商店", + "param": 0 + }, + { + "id": 358, + "nodeId": 4810101, + "nodeType": 4, + "nodeTypeName": "商店", + "param": 0 + }, + { + "id": 359, + "nodeId": 5110101, + "nodeType": 5, + "nodeTypeName": "休整点", + "param": 0 + }, + { + "id": 360, + "nodeId": 5210101, + "nodeType": 5, + "nodeTypeName": "休整点", + "param": 0 + }, + { + "id": 361, + "nodeId": 5310101, + "nodeType": 5, + "nodeTypeName": "休整点", + "param": 0 + }, + { + "id": 362, + "nodeId": 5410101, + "nodeType": 5, + "nodeTypeName": "休整点", + "param": 0 + }, + { + "id": 363, + "nodeId": 5510101, + "nodeType": 5, + "nodeTypeName": "休整点", + "param": 0 + }, + { + "id": 364, + "nodeId": 5610101, + "nodeType": 5, + "nodeTypeName": "休整点", + "param": 0 + }, + { + "id": 365, + "nodeId": 5710101, + "nodeType": 5, + "nodeTypeName": "休整点", + "param": 0 + }, + { + "id": 366, + "nodeId": 5810101, + "nodeType": 5, + "nodeTypeName": "休整点", + "param": 0 + }, + { + "id": 367, + "nodeId": 6110101, + "nodeType": 6, + "nodeTypeName": "问号点", + "param": 1 + }, + { + "id": 368, + "nodeId": 6210101, + "nodeType": 6, + "nodeTypeName": "问号点", + "param": 1 + }, + { + "id": 369, + "nodeId": 6310101, + "nodeType": 6, + "nodeTypeName": "问号点", + "param": 1 + }, + { + "id": 370, + "nodeId": 6410101, + "nodeType": 6, + "nodeTypeName": "问号点", + "param": 1 + }, + { + "id": 371, + "nodeId": 6510101, + "nodeType": 6, + "nodeTypeName": "问号点", + "param": 1 + }, + { + "id": 372, + "nodeId": 6610101, + "nodeType": 6, + "nodeTypeName": "问号点", + "param": 1 + }, + { + "id": 373, + "nodeId": 6710101, + "nodeType": 6, + "nodeTypeName": "问号点", + "param": 1 + }, + { + "id": 374, + "nodeId": 6810101, + "nodeType": 6, + "nodeTypeName": "问号点", + "param": 1 + }, + { + "id": 375, + "nodeId": 1110102, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101110102 + }, + { + "id": 376, + "nodeId": 1110202, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101110202 + }, + { + "id": 377, + "nodeId": 1110302, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101110302 + }, + { + "id": 378, + "nodeId": 1110402, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101110402 + }, + { + "id": 379, + "nodeId": 1110502, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101110502 + }, + { + "id": 380, + "nodeId": 1110602, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101110602 + }, + { + "id": 381, + "nodeId": 1110702, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101110702 + }, + { + "id": 382, + "nodeId": 1110802, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101110802 + }, + { + "id": 383, + "nodeId": 1120102, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101120102 + }, + { + "id": 384, + "nodeId": 1120202, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101120202 + }, + { + "id": 385, + "nodeId": 1120302, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101120302 + }, + { + "id": 386, + "nodeId": 1120402, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101120402 + }, + { + "id": 387, + "nodeId": 1120502, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101120502 + }, + { + "id": 388, + "nodeId": 1120602, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101120602 + }, + { + "id": 389, + "nodeId": 1120702, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101120702 + }, + { + "id": 390, + "nodeId": 1120802, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101120802 + }, + { + "id": 391, + "nodeId": 1130102, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101130102 + }, + { + "id": 392, + "nodeId": 1130202, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101130202 + }, + { + "id": 393, + "nodeId": 1130302, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101130302 + }, + { + "id": 394, + "nodeId": 1130402, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101130402 + }, + { + "id": 395, + "nodeId": 1130502, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101130502 + }, + { + "id": 396, + "nodeId": 1130602, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101130602 + }, + { + "id": 397, + "nodeId": 1130702, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101130702 + }, + { + "id": 398, + "nodeId": 1130802, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101130802 + }, + { + "id": 399, + "nodeId": 1210102, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104110102 + }, + { + "id": 400, + "nodeId": 1210202, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104110202 + }, + { + "id": 401, + "nodeId": 1210302, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104110302 + }, + { + "id": 402, + "nodeId": 1210402, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104110402 + }, + { + "id": 403, + "nodeId": 1210502, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104110502 + }, + { + "id": 404, + "nodeId": 1210602, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104110602 + }, + { + "id": 405, + "nodeId": 1210702, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104110702 + }, + { + "id": 406, + "nodeId": 1210802, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104110802 + }, + { + "id": 407, + "nodeId": 1220102, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104120102 + }, + { + "id": 408, + "nodeId": 1220202, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104120202 + }, + { + "id": 409, + "nodeId": 1220302, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104120302 + }, + { + "id": 410, + "nodeId": 1220402, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104120402 + }, + { + "id": 411, + "nodeId": 1220502, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104120502 + }, + { + "id": 412, + "nodeId": 1220602, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104120602 + }, + { + "id": 413, + "nodeId": 1220702, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104120702 + }, + { + "id": 414, + "nodeId": 1220802, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104120802 + }, + { + "id": 415, + "nodeId": 1230102, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104130102 + }, + { + "id": 416, + "nodeId": 1230202, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104130202 + }, + { + "id": 417, + "nodeId": 1230302, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104130302 + }, + { + "id": 418, + "nodeId": 1230402, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104130402 + }, + { + "id": 419, + "nodeId": 1230502, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104130502 + }, + { + "id": 420, + "nodeId": 1230602, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104130602 + }, + { + "id": 421, + "nodeId": 1230702, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104130702 + }, + { + "id": 422, + "nodeId": 1230802, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104130802 + }, + { + "id": 423, + "nodeId": 1310102, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109110102 + }, + { + "id": 424, + "nodeId": 1310102, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109310102 + }, + { + "id": 425, + "nodeId": 1310202, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109110202 + }, + { + "id": 426, + "nodeId": 1310302, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109110302 + }, + { + "id": 427, + "nodeId": 1310402, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109110402 + }, + { + "id": 428, + "nodeId": 1310502, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109110502 + }, + { + "id": 429, + "nodeId": 1310602, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109110602 + }, + { + "id": 430, + "nodeId": 1310702, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109110702 + }, + { + "id": 431, + "nodeId": 1310802, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109110802 + }, + { + "id": 432, + "nodeId": 1320102, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109120102 + }, + { + "id": 433, + "nodeId": 1320202, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109120202 + }, + { + "id": 434, + "nodeId": 1320302, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109120302 + }, + { + "id": 435, + "nodeId": 1320402, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109120402 + }, + { + "id": 436, + "nodeId": 1320502, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109120502 + }, + { + "id": 437, + "nodeId": 1320602, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109120602 + }, + { + "id": 438, + "nodeId": 1320702, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109120702 + }, + { + "id": 439, + "nodeId": 1320802, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109120802 + }, + { + "id": 440, + "nodeId": 1330102, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109130102 + }, + { + "id": 441, + "nodeId": 1330202, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109130202 + }, + { + "id": 442, + "nodeId": 1330302, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109130302 + }, + { + "id": 443, + "nodeId": 1330402, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109130402 + }, + { + "id": 444, + "nodeId": 1330502, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109130502 + }, + { + "id": 445, + "nodeId": 1330602, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109130602 + }, + { + "id": 446, + "nodeId": 1330602, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109230602 + }, + { + "id": 447, + "nodeId": 1330702, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109130702 + }, + { + "id": 448, + "nodeId": 1330702, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109230702 + }, + { + "id": 449, + "nodeId": 1330802, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109130802 + }, + { + "id": 450, + "nodeId": 1410102, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106110102 + }, + { + "id": 451, + "nodeId": 1410202, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106110202 + }, + { + "id": 452, + "nodeId": 1410302, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106110302 + }, + { + "id": 453, + "nodeId": 1410402, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106110402 + }, + { + "id": 454, + "nodeId": 1410502, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106110502 + }, + { + "id": 455, + "nodeId": 1410602, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106110602 + }, + { + "id": 456, + "nodeId": 1410702, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106110702 + }, + { + "id": 457, + "nodeId": 1410802, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106110802 + }, + { + "id": 458, + "nodeId": 1420102, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106120102 + }, + { + "id": 459, + "nodeId": 1420202, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106120202 + }, + { + "id": 460, + "nodeId": 1420302, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106120302 + }, + { + "id": 461, + "nodeId": 1420402, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106120402 + }, + { + "id": 462, + "nodeId": 1420502, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106120502 + }, + { + "id": 463, + "nodeId": 1420602, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106120602 + }, + { + "id": 464, + "nodeId": 1420702, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106120702 + }, + { + "id": 465, + "nodeId": 1420802, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106120802 + }, + { + "id": 466, + "nodeId": 1430102, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106130102 + }, + { + "id": 467, + "nodeId": 1430202, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106130202 + }, + { + "id": 468, + "nodeId": 1430302, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106130302 + }, + { + "id": 469, + "nodeId": 1430402, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106130402 + }, + { + "id": 470, + "nodeId": 1430502, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106130502 + }, + { + "id": 471, + "nodeId": 1430602, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106130602 + }, + { + "id": 472, + "nodeId": 1430702, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106130702 + }, + { + "id": 473, + "nodeId": 1430802, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106130802 + }, + { + "id": 474, + "nodeId": 1510102, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110110102 + }, + { + "id": 475, + "nodeId": 1510202, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110110202 + }, + { + "id": 476, + "nodeId": 1510302, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110110302 + }, + { + "id": 477, + "nodeId": 1510402, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110110402 + }, + { + "id": 478, + "nodeId": 1510502, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110110502 + }, + { + "id": 479, + "nodeId": 1510602, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110110602 + }, + { + "id": 480, + "nodeId": 1510702, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110110702 + }, + { + "id": 481, + "nodeId": 1510802, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110110802 + }, + { + "id": 482, + "nodeId": 1520102, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110120102 + }, + { + "id": 483, + "nodeId": 1520202, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110120202 + }, + { + "id": 484, + "nodeId": 1520302, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110120302 + }, + { + "id": 485, + "nodeId": 1520402, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110120402 + }, + { + "id": 486, + "nodeId": 1520502, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110120502 + }, + { + "id": 487, + "nodeId": 1520602, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110120602 + }, + { + "id": 488, + "nodeId": 1520702, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110120702 + }, + { + "id": 489, + "nodeId": 1520802, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110120802 + }, + { + "id": 490, + "nodeId": 1530102, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110130102 + }, + { + "id": 491, + "nodeId": 1530202, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110130202 + }, + { + "id": 492, + "nodeId": 1530302, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110130302 + }, + { + "id": 493, + "nodeId": 1530402, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110130402 + }, + { + "id": 494, + "nodeId": 1530502, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110130502 + }, + { + "id": 495, + "nodeId": 1530602, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110130602 + }, + { + "id": 496, + "nodeId": 1530702, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110130702 + }, + { + "id": 497, + "nodeId": 1530802, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110130802 + }, + { + "id": 498, + "nodeId": 1610102, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103110102 + }, + { + "id": 499, + "nodeId": 1610202, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103110202 + }, + { + "id": 500, + "nodeId": 1610302, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103110302 + }, + { + "id": 501, + "nodeId": 1610402, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103110402 + }, + { + "id": 502, + "nodeId": 1610502, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103110502 + }, + { + "id": 503, + "nodeId": 1610602, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103110602 + }, + { + "id": 504, + "nodeId": 1610702, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103110702 + }, + { + "id": 505, + "nodeId": 1610802, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103110802 + }, + { + "id": 506, + "nodeId": 1620102, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103120102 + }, + { + "id": 507, + "nodeId": 1620202, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103120202 + }, + { + "id": 508, + "nodeId": 1620302, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103120302 + }, + { + "id": 509, + "nodeId": 1620402, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103120402 + }, + { + "id": 510, + "nodeId": 1620502, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103120502 + }, + { + "id": 511, + "nodeId": 1620602, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103120602 + }, + { + "id": 512, + "nodeId": 1620702, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103120702 + }, + { + "id": 513, + "nodeId": 1620802, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103120802 + }, + { + "id": 514, + "nodeId": 1630102, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103130102 + }, + { + "id": 515, + "nodeId": 1630202, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103130202 + }, + { + "id": 516, + "nodeId": 1630302, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103130302 + }, + { + "id": 517, + "nodeId": 1630402, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103130402 + }, + { + "id": 518, + "nodeId": 1630502, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103130502 + }, + { + "id": 519, + "nodeId": 1630602, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103130602 + }, + { + "id": 520, + "nodeId": 1630702, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103130702 + }, + { + "id": 521, + "nodeId": 1630802, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103130802 + }, + { + "id": 522, + "nodeId": 1710102, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102110102 + }, + { + "id": 523, + "nodeId": 1710202, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102110202 + }, + { + "id": 524, + "nodeId": 1710302, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102110302 + }, + { + "id": 525, + "nodeId": 1710402, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102110402 + }, + { + "id": 526, + "nodeId": 1710502, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102110502 + }, + { + "id": 527, + "nodeId": 1710602, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102110602 + }, + { + "id": 528, + "nodeId": 1710702, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102110702 + }, + { + "id": 529, + "nodeId": 1710802, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102110802 + }, + { + "id": 530, + "nodeId": 1720102, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102120102 + }, + { + "id": 531, + "nodeId": 1720202, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102120202 + }, + { + "id": 532, + "nodeId": 1720302, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102120302 + }, + { + "id": 533, + "nodeId": 1720402, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102120402 + }, + { + "id": 534, + "nodeId": 1720502, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102120502 + }, + { + "id": 535, + "nodeId": 1720602, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102120602 + }, + { + "id": 536, + "nodeId": 1720702, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102120702 + }, + { + "id": 537, + "nodeId": 1720802, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102120802 + }, + { + "id": 538, + "nodeId": 1730102, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102130102 + }, + { + "id": 539, + "nodeId": 1730202, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102130202 + }, + { + "id": 540, + "nodeId": 1730302, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102130302 + }, + { + "id": 541, + "nodeId": 1730402, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102130402 + }, + { + "id": 542, + "nodeId": 1730502, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102130502 + }, + { + "id": 543, + "nodeId": 1730602, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102130602 + }, + { + "id": 544, + "nodeId": 1730702, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102130702 + }, + { + "id": 545, + "nodeId": 1730802, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102130802 + }, + { + "id": 546, + "nodeId": 1810102, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107110102 + }, + { + "id": 547, + "nodeId": 1810202, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107110202 + }, + { + "id": 548, + "nodeId": 1810302, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107110302 + }, + { + "id": 549, + "nodeId": 1810402, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107110402 + }, + { + "id": 550, + "nodeId": 1810502, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107110502 + }, + { + "id": 551, + "nodeId": 1810602, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107110602 + }, + { + "id": 552, + "nodeId": 1810702, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107110702 + }, + { + "id": 553, + "nodeId": 1810802, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107110802 + }, + { + "id": 554, + "nodeId": 1820102, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107120102 + }, + { + "id": 555, + "nodeId": 1820202, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107120202 + }, + { + "id": 556, + "nodeId": 1820302, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107120302 + }, + { + "id": 557, + "nodeId": 1820402, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107120402 + }, + { + "id": 558, + "nodeId": 1820502, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107120502 + }, + { + "id": 559, + "nodeId": 1820602, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107120602 + }, + { + "id": 560, + "nodeId": 1820702, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107120702 + }, + { + "id": 561, + "nodeId": 1820802, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107120802 + }, + { + "id": 562, + "nodeId": 1830102, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107130102 + }, + { + "id": 563, + "nodeId": 1830202, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107130202 + }, + { + "id": 564, + "nodeId": 1830302, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107130302 + }, + { + "id": 565, + "nodeId": 1830402, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107130402 + }, + { + "id": 566, + "nodeId": 1830502, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107130502 + }, + { + "id": 567, + "nodeId": 1830602, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107130602 + }, + { + "id": 568, + "nodeId": 1830702, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107130702 + }, + { + "id": 569, + "nodeId": 1830802, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107130802 + }, + { + "id": 570, + "nodeId": 2110102, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101210102 + }, + { + "id": 571, + "nodeId": 2110202, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101210202 + }, + { + "id": 572, + "nodeId": 2110302, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101210302 + }, + { + "id": 573, + "nodeId": 2110402, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101210402 + }, + { + "id": 574, + "nodeId": 2110502, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101210502 + }, + { + "id": 575, + "nodeId": 2110602, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101210602 + }, + { + "id": 576, + "nodeId": 2120102, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101220102 + }, + { + "id": 577, + "nodeId": 2120202, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101220202 + }, + { + "id": 578, + "nodeId": 2120302, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101220302 + }, + { + "id": 579, + "nodeId": 2120402, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101220402 + }, + { + "id": 580, + "nodeId": 2120502, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101220502 + }, + { + "id": 581, + "nodeId": 2120602, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101220602 + }, + { + "id": 582, + "nodeId": 2130102, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101230102 + }, + { + "id": 583, + "nodeId": 2130202, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101230202 + }, + { + "id": 584, + "nodeId": 2130302, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101230302 + }, + { + "id": 585, + "nodeId": 2130402, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101230402 + }, + { + "id": 586, + "nodeId": 2130502, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101230502 + }, + { + "id": 587, + "nodeId": 2130602, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101230602 + }, + { + "id": 588, + "nodeId": 2210102, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104210102 + }, + { + "id": 589, + "nodeId": 2210202, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104210202 + }, + { + "id": 590, + "nodeId": 2210302, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104210302 + }, + { + "id": 591, + "nodeId": 2210402, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104210402 + }, + { + "id": 592, + "nodeId": 2210502, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104210502 + }, + { + "id": 593, + "nodeId": 2210602, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104210602 + }, + { + "id": 594, + "nodeId": 2220102, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104220102 + }, + { + "id": 595, + "nodeId": 2220202, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104220202 + }, + { + "id": 596, + "nodeId": 2220302, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104220302 + }, + { + "id": 597, + "nodeId": 2220402, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104220402 + }, + { + "id": 598, + "nodeId": 2220502, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104220502 + }, + { + "id": 599, + "nodeId": 2220602, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104220602 + }, + { + "id": 600, + "nodeId": 2230102, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104230102 + }, + { + "id": 601, + "nodeId": 2230202, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104230202 + }, + { + "id": 602, + "nodeId": 2230302, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104230302 + }, + { + "id": 603, + "nodeId": 2230402, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104230402 + }, + { + "id": 604, + "nodeId": 2230502, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104230502 + }, + { + "id": 605, + "nodeId": 2230602, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104230602 + }, + { + "id": 606, + "nodeId": 2310102, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109210102 + }, + { + "id": 607, + "nodeId": 2310202, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109210202 + }, + { + "id": 608, + "nodeId": 2310302, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109210302 + }, + { + "id": 609, + "nodeId": 2310402, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109210402 + }, + { + "id": 610, + "nodeId": 2310502, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109210502 + }, + { + "id": 611, + "nodeId": 2310602, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109210602 + }, + { + "id": 612, + "nodeId": 2310702, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109210702 + }, + { + "id": 613, + "nodeId": 2320102, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109220102 + }, + { + "id": 614, + "nodeId": 2320202, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109220202 + }, + { + "id": 615, + "nodeId": 2320302, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109220302 + }, + { + "id": 616, + "nodeId": 2320402, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109220402 + }, + { + "id": 617, + "nodeId": 2320502, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109220502 + }, + { + "id": 618, + "nodeId": 2320602, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109220602 + }, + { + "id": 619, + "nodeId": 2320702, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109220702 + }, + { + "id": 620, + "nodeId": 2330102, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109230102 + }, + { + "id": 621, + "nodeId": 2330202, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109230202 + }, + { + "id": 622, + "nodeId": 2330302, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109230302 + }, + { + "id": 623, + "nodeId": 2330402, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109230402 + }, + { + "id": 624, + "nodeId": 2330502, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109230402 + }, + { + "id": 625, + "nodeId": 2410102, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106210102 + }, + { + "id": 626, + "nodeId": 2410202, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106210202 + }, + { + "id": 627, + "nodeId": 2410302, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106210302 + }, + { + "id": 628, + "nodeId": 2410402, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106210402 + }, + { + "id": 629, + "nodeId": 2410502, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106210502 + }, + { + "id": 630, + "nodeId": 2410602, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106210602 + }, + { + "id": 631, + "nodeId": 2420102, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106220102 + }, + { + "id": 632, + "nodeId": 2420202, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106220202 + }, + { + "id": 633, + "nodeId": 2420302, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106220302 + }, + { + "id": 634, + "nodeId": 2420402, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106220402 + }, + { + "id": 635, + "nodeId": 2420502, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106220502 + }, + { + "id": 636, + "nodeId": 2420602, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106220602 + }, + { + "id": 637, + "nodeId": 2430102, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106230102 + }, + { + "id": 638, + "nodeId": 2430202, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106230202 + }, + { + "id": 639, + "nodeId": 2430302, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106230302 + }, + { + "id": 640, + "nodeId": 2430402, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106230402 + }, + { + "id": 641, + "nodeId": 2430502, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106230502 + }, + { + "id": 642, + "nodeId": 2430602, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106230602 + }, + { + "id": 643, + "nodeId": 2510102, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110210102 + }, + { + "id": 644, + "nodeId": 2510202, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110210202 + }, + { + "id": 645, + "nodeId": 2510302, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110210302 + }, + { + "id": 646, + "nodeId": 2510402, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110210402 + }, + { + "id": 647, + "nodeId": 2510502, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110210502 + }, + { + "id": 648, + "nodeId": 2510602, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110210602 + }, + { + "id": 649, + "nodeId": 2510702, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110210702 + }, + { + "id": 650, + "nodeId": 2520102, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110220102 + }, + { + "id": 651, + "nodeId": 2520202, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110220202 + }, + { + "id": 652, + "nodeId": 2520302, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110220302 + }, + { + "id": 653, + "nodeId": 2520402, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110220402 + }, + { + "id": 654, + "nodeId": 2520502, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110220502 + }, + { + "id": 655, + "nodeId": 2520602, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110220602 + }, + { + "id": 656, + "nodeId": 2520702, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110220702 + }, + { + "id": 657, + "nodeId": 2530102, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110230102 + }, + { + "id": 658, + "nodeId": 2530202, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110230202 + }, + { + "id": 659, + "nodeId": 2530302, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110230302 + }, + { + "id": 660, + "nodeId": 2530402, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110230402 + }, + { + "id": 661, + "nodeId": 2530502, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110230502 + }, + { + "id": 662, + "nodeId": 2530602, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110230602 + }, + { + "id": 663, + "nodeId": 2530702, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110230702 + }, + { + "id": 664, + "nodeId": 2610102, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103210102 + }, + { + "id": 665, + "nodeId": 2610202, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103210202 + }, + { + "id": 666, + "nodeId": 2610302, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103210302 + }, + { + "id": 667, + "nodeId": 2610402, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103210402 + }, + { + "id": 668, + "nodeId": 2610502, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103210502 + }, + { + "id": 669, + "nodeId": 2620102, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103220102 + }, + { + "id": 670, + "nodeId": 2620202, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103220202 + }, + { + "id": 671, + "nodeId": 2620302, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103220302 + }, + { + "id": 672, + "nodeId": 2620402, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103220402 + }, + { + "id": 673, + "nodeId": 2620502, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103220502 + }, + { + "id": 674, + "nodeId": 2630102, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103230102 + }, + { + "id": 675, + "nodeId": 2630202, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103230202 + }, + { + "id": 676, + "nodeId": 2630302, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103230302 + }, + { + "id": 677, + "nodeId": 2630402, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103230402 + }, + { + "id": 678, + "nodeId": 2630502, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103230502 + }, + { + "id": 679, + "nodeId": 2710102, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102210102 + }, + { + "id": 680, + "nodeId": 2710202, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102210202 + }, + { + "id": 681, + "nodeId": 2710302, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102210302 + }, + { + "id": 682, + "nodeId": 2710402, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102210402 + }, + { + "id": 683, + "nodeId": 2710502, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102210502 + }, + { + "id": 684, + "nodeId": 2720102, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102220102 + }, + { + "id": 685, + "nodeId": 2720202, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102220202 + }, + { + "id": 686, + "nodeId": 2720302, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102220302 + }, + { + "id": 687, + "nodeId": 2720402, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102220402 + }, + { + "id": 688, + "nodeId": 2720502, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102220502 + }, + { + "id": 689, + "nodeId": 2730102, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102230102 + }, + { + "id": 690, + "nodeId": 2730202, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102230202 + }, + { + "id": 691, + "nodeId": 2730302, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102230302 + }, + { + "id": 692, + "nodeId": 2730402, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102230402 + }, + { + "id": 693, + "nodeId": 2730502, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102230502 + }, + { + "id": 694, + "nodeId": 2810102, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107210102 + }, + { + "id": 695, + "nodeId": 2810202, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107210202 + }, + { + "id": 696, + "nodeId": 2810302, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107210302 + }, + { + "id": 697, + "nodeId": 2810402, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107210402 + }, + { + "id": 698, + "nodeId": 2810502, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107210502 + }, + { + "id": 699, + "nodeId": 2820102, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107220102 + }, + { + "id": 700, + "nodeId": 2820202, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107220202 + }, + { + "id": 701, + "nodeId": 2820302, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107220302 + }, + { + "id": 702, + "nodeId": 2820402, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107220402 + }, + { + "id": 703, + "nodeId": 2820502, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107220502 + }, + { + "id": 704, + "nodeId": 2830102, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107230102 + }, + { + "id": 705, + "nodeId": 2830202, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107230202 + }, + { + "id": 706, + "nodeId": 2830302, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107230302 + }, + { + "id": 707, + "nodeId": 2830402, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107230402 + }, + { + "id": 708, + "nodeId": 2830502, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107230502 + }, + { + "id": 709, + "nodeId": 7110102, + "nodeType": 7, + "nodeTypeName": "儒家试炼boss", + "param": 101310102 + }, + { + "id": 710, + "nodeId": 7210102, + "nodeType": 7, + "nodeTypeName": "道家试炼boss", + "param": 104310102 + }, + { + "id": 711, + "nodeId": 7330502, + "nodeType": 7, + "nodeTypeName": "墨家试炼boss", + "param": 109230502 + }, + { + "id": 712, + "nodeId": 7410102, + "nodeType": 7, + "nodeTypeName": "法家试炼boss", + "param": 106310102 + }, + { + "id": 713, + "nodeId": 7510102, + "nodeType": 7, + "nodeTypeName": "医家试炼boss", + "param": 110310102 + }, + { + "id": 714, + "nodeId": 7610102, + "nodeType": 7, + "nodeTypeName": "兵家试炼boss", + "param": 103310102 + }, + { + "id": 715, + "nodeId": 7710102, + "nodeType": 7, + "nodeTypeName": "阴阳家试炼boss", + "param": 102310102 + }, + { + "id": 716, + "nodeId": 7810102, + "nodeType": 7, + "nodeTypeName": "纵横家试炼boss", + "param": 107310102 + }, + { + "id": 717, + "nodeId": 3110102, + "nodeType": 3, + "nodeTypeName": "挑战点", + "param": 0 + }, + { + "id": 718, + "nodeId": 3210102, + "nodeType": 3, + "nodeTypeName": "挑战点", + "param": 0 + }, + { + "id": 719, + "nodeId": 3310102, + "nodeType": 3, + "nodeTypeName": "挑战点", + "param": 0 + }, + { + "id": 720, + "nodeId": 3410102, + "nodeType": 3, + "nodeTypeName": "挑战点", + "param": 0 + }, + { + "id": 721, + "nodeId": 3510102, + "nodeType": 3, + "nodeTypeName": "挑战点", + "param": 0 + }, + { + "id": 722, + "nodeId": 3610102, + "nodeType": 3, + "nodeTypeName": "挑战点", + "param": 0 + }, + { + "id": 723, + "nodeId": 3710102, + "nodeType": 3, + "nodeTypeName": "挑战点", + "param": 0 + }, + { + "id": 724, + "nodeId": 3810102, + "nodeType": 3, + "nodeTypeName": "挑战点", + "param": 0 + }, + { + "id": 725, + "nodeId": 4110102, + "nodeType": 4, + "nodeTypeName": "商店", + "param": 0 + }, + { + "id": 726, + "nodeId": 4210102, + "nodeType": 4, + "nodeTypeName": "商店", + "param": 0 + }, + { + "id": 727, + "nodeId": 4310102, + "nodeType": 4, + "nodeTypeName": "商店", + "param": 0 + }, + { + "id": 728, + "nodeId": 4410102, + "nodeType": 4, + "nodeTypeName": "商店", + "param": 0 + }, + { + "id": 729, + "nodeId": 4510102, + "nodeType": 4, + "nodeTypeName": "商店", + "param": 0 + }, + { + "id": 730, + "nodeId": 4610102, + "nodeType": 4, + "nodeTypeName": "商店", + "param": 0 + }, + { + "id": 731, + "nodeId": 4710102, + "nodeType": 4, + "nodeTypeName": "商店", + "param": 0 + }, + { + "id": 732, + "nodeId": 4810102, + "nodeType": 4, + "nodeTypeName": "商店", + "param": 0 + }, + { + "id": 733, + "nodeId": 5110102, + "nodeType": 5, + "nodeTypeName": "休整点", + "param": 0 + }, + { + "id": 734, + "nodeId": 5210102, + "nodeType": 5, + "nodeTypeName": "休整点", + "param": 0 + }, + { + "id": 735, + "nodeId": 5310102, + "nodeType": 5, + "nodeTypeName": "休整点", + "param": 0 + }, + { + "id": 736, + "nodeId": 5410102, + "nodeType": 5, + "nodeTypeName": "休整点", + "param": 0 + }, + { + "id": 737, + "nodeId": 5510102, + "nodeType": 5, + "nodeTypeName": "休整点", + "param": 0 + }, + { + "id": 738, + "nodeId": 5610102, + "nodeType": 5, + "nodeTypeName": "休整点", + "param": 0 + }, + { + "id": 739, + "nodeId": 5710102, + "nodeType": 5, + "nodeTypeName": "休整点", + "param": 0 + }, + { + "id": 740, + "nodeId": 5810102, + "nodeType": 5, + "nodeTypeName": "休整点", + "param": 0 + }, + { + "id": 741, + "nodeId": 6110102, + "nodeType": 6, + "nodeTypeName": "问号点", + "param": 1 + }, + { + "id": 742, + "nodeId": 6210102, + "nodeType": 6, + "nodeTypeName": "问号点", + "param": 1 + }, + { + "id": 743, + "nodeId": 6310102, + "nodeType": 6, + "nodeTypeName": "问号点", + "param": 1 + }, + { + "id": 744, + "nodeId": 6410102, + "nodeType": 6, + "nodeTypeName": "问号点", + "param": 1 + }, + { + "id": 745, + "nodeId": 6510102, + "nodeType": 6, + "nodeTypeName": "问号点", + "param": 1 + }, + { + "id": 746, + "nodeId": 6610102, + "nodeType": 6, + "nodeTypeName": "问号点", + "param": 1 + }, + { + "id": 747, + "nodeId": 6710102, + "nodeType": 6, + "nodeTypeName": "问号点", + "param": 1 + }, + { + "id": 748, + "nodeId": 6810102, + "nodeType": 6, + "nodeTypeName": "问号点", + "param": 1 + }, + { + "id": 749, + "nodeId": 1110103, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101110103 + }, + { + "id": 750, + "nodeId": 1110203, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101110203 + }, + { + "id": 751, + "nodeId": 1110303, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101110303 + }, + { + "id": 752, + "nodeId": 1110403, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101110403 + }, + { + "id": 753, + "nodeId": 1110503, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101110503 + }, + { + "id": 754, + "nodeId": 1110603, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101110603 + }, + { + "id": 755, + "nodeId": 1110703, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101110703 + }, + { + "id": 756, + "nodeId": 1110803, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101110803 + }, + { + "id": 757, + "nodeId": 1120103, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101120103 + }, + { + "id": 758, + "nodeId": 1120203, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101120203 + }, + { + "id": 759, + "nodeId": 1120303, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101120303 + }, + { + "id": 760, + "nodeId": 1120403, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101120403 + }, + { + "id": 761, + "nodeId": 1120503, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101120503 + }, + { + "id": 762, + "nodeId": 1120603, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101120603 + }, + { + "id": 763, + "nodeId": 1120703, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101120703 + }, + { + "id": 764, + "nodeId": 1120803, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101120803 + }, + { + "id": 765, + "nodeId": 1130103, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101130103 + }, + { + "id": 766, + "nodeId": 1130203, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101130203 + }, + { + "id": 767, + "nodeId": 1130303, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101130303 + }, + { + "id": 768, + "nodeId": 1130403, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101130403 + }, + { + "id": 769, + "nodeId": 1130503, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101130503 + }, + { + "id": 770, + "nodeId": 1130603, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101130603 + }, + { + "id": 771, + "nodeId": 1130703, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101130703 + }, + { + "id": 772, + "nodeId": 1130803, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101130803 + }, + { + "id": 773, + "nodeId": 1210103, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104110103 + }, + { + "id": 774, + "nodeId": 1210203, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104110203 + }, + { + "id": 775, + "nodeId": 1210303, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104110303 + }, + { + "id": 776, + "nodeId": 1210403, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104110403 + }, + { + "id": 777, + "nodeId": 1210503, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104110503 + }, + { + "id": 778, + "nodeId": 1210603, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104110603 + }, + { + "id": 779, + "nodeId": 1210703, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104110703 + }, + { + "id": 780, + "nodeId": 1210803, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104110803 + }, + { + "id": 781, + "nodeId": 1220103, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104120103 + }, + { + "id": 782, + "nodeId": 1220203, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104120203 + }, + { + "id": 783, + "nodeId": 1220303, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104120303 + }, + { + "id": 784, + "nodeId": 1220403, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104120403 + }, + { + "id": 785, + "nodeId": 1220503, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104120503 + }, + { + "id": 786, + "nodeId": 1220603, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104120603 + }, + { + "id": 787, + "nodeId": 1220703, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104120703 + }, + { + "id": 788, + "nodeId": 1220803, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104120803 + }, + { + "id": 789, + "nodeId": 1230103, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104130103 + }, + { + "id": 790, + "nodeId": 1230203, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104130203 + }, + { + "id": 791, + "nodeId": 1230303, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104130303 + }, + { + "id": 792, + "nodeId": 1230403, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104130403 + }, + { + "id": 793, + "nodeId": 1230503, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104130503 + }, + { + "id": 794, + "nodeId": 1230603, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104130603 + }, + { + "id": 795, + "nodeId": 1230703, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104130703 + }, + { + "id": 796, + "nodeId": 1230803, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104130803 + }, + { + "id": 797, + "nodeId": 1310103, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109110103 + }, + { + "id": 798, + "nodeId": 1310103, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109310103 + }, + { + "id": 799, + "nodeId": 1310203, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109110203 + }, + { + "id": 800, + "nodeId": 1310303, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109110303 + }, + { + "id": 801, + "nodeId": 1310403, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109110403 + }, + { + "id": 802, + "nodeId": 1310503, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109110503 + }, + { + "id": 803, + "nodeId": 1310603, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109110603 + }, + { + "id": 804, + "nodeId": 1310703, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109110703 + }, + { + "id": 805, + "nodeId": 1310803, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109110803 + }, + { + "id": 806, + "nodeId": 1320103, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109120103 + }, + { + "id": 807, + "nodeId": 1320203, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109120203 + }, + { + "id": 808, + "nodeId": 1320303, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109120303 + }, + { + "id": 809, + "nodeId": 1320403, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109120403 + }, + { + "id": 810, + "nodeId": 1320503, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109120503 + }, + { + "id": 811, + "nodeId": 1320603, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109120603 + }, + { + "id": 812, + "nodeId": 1320703, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109120703 + }, + { + "id": 813, + "nodeId": 1320803, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109120803 + }, + { + "id": 814, + "nodeId": 1330103, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109130103 + }, + { + "id": 815, + "nodeId": 1330203, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109130203 + }, + { + "id": 816, + "nodeId": 1330303, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109130303 + }, + { + "id": 817, + "nodeId": 1330403, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109130403 + }, + { + "id": 818, + "nodeId": 1330503, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109130503 + }, + { + "id": 819, + "nodeId": 1330603, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109130603 + }, + { + "id": 820, + "nodeId": 1330603, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109230603 + }, + { + "id": 821, + "nodeId": 1330703, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109130703 + }, + { + "id": 822, + "nodeId": 1330703, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109230703 + }, + { + "id": 823, + "nodeId": 1330803, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109130803 + }, + { + "id": 824, + "nodeId": 1410103, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106110103 + }, + { + "id": 825, + "nodeId": 1410203, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106110203 + }, + { + "id": 826, + "nodeId": 1410303, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106110303 + }, + { + "id": 827, + "nodeId": 1410403, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106110403 + }, + { + "id": 828, + "nodeId": 1410503, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106110503 + }, + { + "id": 829, + "nodeId": 1410603, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106110603 + }, + { + "id": 830, + "nodeId": 1410703, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106110703 + }, + { + "id": 831, + "nodeId": 1410803, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106110803 + }, + { + "id": 832, + "nodeId": 1420103, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106120103 + }, + { + "id": 833, + "nodeId": 1420203, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106120203 + }, + { + "id": 834, + "nodeId": 1420303, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106120303 + }, + { + "id": 835, + "nodeId": 1420403, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106120403 + }, + { + "id": 836, + "nodeId": 1420503, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106120503 + }, + { + "id": 837, + "nodeId": 1420603, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106120603 + }, + { + "id": 838, + "nodeId": 1420703, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106120703 + }, + { + "id": 839, + "nodeId": 1420803, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106120803 + }, + { + "id": 840, + "nodeId": 1430103, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106130103 + }, + { + "id": 841, + "nodeId": 1430203, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106130203 + }, + { + "id": 842, + "nodeId": 1430303, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106130303 + }, + { + "id": 843, + "nodeId": 1430403, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106130403 + }, + { + "id": 844, + "nodeId": 1430503, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106130503 + }, + { + "id": 845, + "nodeId": 1430603, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106130603 + }, + { + "id": 846, + "nodeId": 1430703, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106130703 + }, + { + "id": 847, + "nodeId": 1430803, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106130803 + }, + { + "id": 848, + "nodeId": 1510103, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110110103 + }, + { + "id": 849, + "nodeId": 1510203, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110110203 + }, + { + "id": 850, + "nodeId": 1510303, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110110303 + }, + { + "id": 851, + "nodeId": 1510403, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110110403 + }, + { + "id": 852, + "nodeId": 1510503, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110110503 + }, + { + "id": 853, + "nodeId": 1510603, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110110603 + }, + { + "id": 854, + "nodeId": 1510703, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110110703 + }, + { + "id": 855, + "nodeId": 1510803, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110110803 + }, + { + "id": 856, + "nodeId": 1520103, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110120103 + }, + { + "id": 857, + "nodeId": 1520203, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110120203 + }, + { + "id": 858, + "nodeId": 1520303, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110120303 + }, + { + "id": 859, + "nodeId": 1520403, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110120403 + }, + { + "id": 860, + "nodeId": 1520503, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110120503 + }, + { + "id": 861, + "nodeId": 1520603, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110120603 + }, + { + "id": 862, + "nodeId": 1520703, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110120703 + }, + { + "id": 863, + "nodeId": 1520803, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110120803 + }, + { + "id": 864, + "nodeId": 1530103, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110130103 + }, + { + "id": 865, + "nodeId": 1530203, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110130203 + }, + { + "id": 866, + "nodeId": 1530303, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110130303 + }, + { + "id": 867, + "nodeId": 1530403, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110130403 + }, + { + "id": 868, + "nodeId": 1530503, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110130503 + }, + { + "id": 869, + "nodeId": 1530603, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110130603 + }, + { + "id": 870, + "nodeId": 1530703, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110130703 + }, + { + "id": 871, + "nodeId": 1530803, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110130803 + }, + { + "id": 872, + "nodeId": 1610103, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103110103 + }, + { + "id": 873, + "nodeId": 1610203, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103110203 + }, + { + "id": 874, + "nodeId": 1610303, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103110303 + }, + { + "id": 875, + "nodeId": 1610403, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103110403 + }, + { + "id": 876, + "nodeId": 1610503, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103110503 + }, + { + "id": 877, + "nodeId": 1610603, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103110603 + }, + { + "id": 878, + "nodeId": 1610703, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103110703 + }, + { + "id": 879, + "nodeId": 1610803, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103110803 + }, + { + "id": 880, + "nodeId": 1620103, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103120103 + }, + { + "id": 881, + "nodeId": 1620203, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103120203 + }, + { + "id": 882, + "nodeId": 1620303, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103120303 + }, + { + "id": 883, + "nodeId": 1620403, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103120403 + }, + { + "id": 884, + "nodeId": 1620503, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103120503 + }, + { + "id": 885, + "nodeId": 1620603, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103120603 + }, + { + "id": 886, + "nodeId": 1620703, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103120703 + }, + { + "id": 887, + "nodeId": 1620803, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103120803 + }, + { + "id": 888, + "nodeId": 1630103, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103130103 + }, + { + "id": 889, + "nodeId": 1630203, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103130203 + }, + { + "id": 890, + "nodeId": 1630303, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103130303 + }, + { + "id": 891, + "nodeId": 1630403, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103130403 + }, + { + "id": 892, + "nodeId": 1630503, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103130503 + }, + { + "id": 893, + "nodeId": 1630603, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103130603 + }, + { + "id": 894, + "nodeId": 1630703, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103130703 + }, + { + "id": 895, + "nodeId": 1630803, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103130803 + }, + { + "id": 896, + "nodeId": 1710103, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102110103 + }, + { + "id": 897, + "nodeId": 1710203, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102110203 + }, + { + "id": 898, + "nodeId": 1710303, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102110303 + }, + { + "id": 899, + "nodeId": 1710403, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102110403 + }, + { + "id": 900, + "nodeId": 1710503, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102110503 + }, + { + "id": 901, + "nodeId": 1710603, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102110603 + }, + { + "id": 902, + "nodeId": 1710703, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102110703 + }, + { + "id": 903, + "nodeId": 1710803, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102110803 + }, + { + "id": 904, + "nodeId": 1720103, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102120103 + }, + { + "id": 905, + "nodeId": 1720203, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102120203 + }, + { + "id": 906, + "nodeId": 1720303, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102120303 + }, + { + "id": 907, + "nodeId": 1720403, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102120403 + }, + { + "id": 908, + "nodeId": 1720503, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102120503 + }, + { + "id": 909, + "nodeId": 1720603, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102120603 + }, + { + "id": 910, + "nodeId": 1720703, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102120703 + }, + { + "id": 911, + "nodeId": 1720803, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102120803 + }, + { + "id": 912, + "nodeId": 1730103, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102130103 + }, + { + "id": 913, + "nodeId": 1730203, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102130203 + }, + { + "id": 914, + "nodeId": 1730303, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102130303 + }, + { + "id": 915, + "nodeId": 1730403, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102130403 + }, + { + "id": 916, + "nodeId": 1730503, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102130503 + }, + { + "id": 917, + "nodeId": 1730603, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102130603 + }, + { + "id": 918, + "nodeId": 1730703, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102130703 + }, + { + "id": 919, + "nodeId": 1730803, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102130803 + }, + { + "id": 920, + "nodeId": 1810103, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107110103 + }, + { + "id": 921, + "nodeId": 1810203, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107110203 + }, + { + "id": 922, + "nodeId": 1810303, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107110303 + }, + { + "id": 923, + "nodeId": 1810403, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107110403 + }, + { + "id": 924, + "nodeId": 1810503, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107110503 + }, + { + "id": 925, + "nodeId": 1810603, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107110603 + }, + { + "id": 926, + "nodeId": 1810703, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107110703 + }, + { + "id": 927, + "nodeId": 1810803, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107110803 + }, + { + "id": 928, + "nodeId": 1820103, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107120103 + }, + { + "id": 929, + "nodeId": 1820203, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107120203 + }, + { + "id": 930, + "nodeId": 1820303, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107120303 + }, + { + "id": 931, + "nodeId": 1820403, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107120403 + }, + { + "id": 932, + "nodeId": 1820503, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107120503 + }, + { + "id": 933, + "nodeId": 1820603, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107120603 + }, + { + "id": 934, + "nodeId": 1820703, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107120703 + }, + { + "id": 935, + "nodeId": 1820803, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107120803 + }, + { + "id": 936, + "nodeId": 1830103, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107130103 + }, + { + "id": 937, + "nodeId": 1830203, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107130203 + }, + { + "id": 938, + "nodeId": 1830303, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107130303 + }, + { + "id": 939, + "nodeId": 1830403, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107130403 + }, + { + "id": 940, + "nodeId": 1830503, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107130503 + }, + { + "id": 941, + "nodeId": 1830603, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107130603 + }, + { + "id": 942, + "nodeId": 1830703, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107130703 + }, + { + "id": 943, + "nodeId": 1830803, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107130803 + }, + { + "id": 944, + "nodeId": 2110103, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101210103 + }, + { + "id": 945, + "nodeId": 2110203, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101210203 + }, + { + "id": 946, + "nodeId": 2110303, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101210303 + }, + { + "id": 947, + "nodeId": 2110403, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101210403 + }, + { + "id": 948, + "nodeId": 2110503, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101210503 + }, + { + "id": 949, + "nodeId": 2110603, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101210603 + }, + { + "id": 950, + "nodeId": 2120103, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101220103 + }, + { + "id": 951, + "nodeId": 2120203, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101220203 + }, + { + "id": 952, + "nodeId": 2120303, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101220303 + }, + { + "id": 953, + "nodeId": 2120403, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101220403 + }, + { + "id": 954, + "nodeId": 2120503, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101220503 + }, + { + "id": 955, + "nodeId": 2120603, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101220603 + }, + { + "id": 956, + "nodeId": 2130103, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101230103 + }, + { + "id": 957, + "nodeId": 2130203, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101230203 + }, + { + "id": 958, + "nodeId": 2130303, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101230303 + }, + { + "id": 959, + "nodeId": 2130403, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101230403 + }, + { + "id": 960, + "nodeId": 2130503, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101230503 + }, + { + "id": 961, + "nodeId": 2130603, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101230603 + }, + { + "id": 962, + "nodeId": 2210103, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104210103 + }, + { + "id": 963, + "nodeId": 2210203, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104210203 + }, + { + "id": 964, + "nodeId": 2210303, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104210303 + }, + { + "id": 965, + "nodeId": 2210403, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104210403 + }, + { + "id": 966, + "nodeId": 2210503, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104210503 + }, + { + "id": 967, + "nodeId": 2210603, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104210603 + }, + { + "id": 968, + "nodeId": 2220103, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104220103 + }, + { + "id": 969, + "nodeId": 2220203, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104220203 + }, + { + "id": 970, + "nodeId": 2220303, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104220303 + }, + { + "id": 971, + "nodeId": 2220403, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104220403 + }, + { + "id": 972, + "nodeId": 2220503, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104220503 + }, + { + "id": 973, + "nodeId": 2220603, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104220603 + }, + { + "id": 974, + "nodeId": 2230103, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104230103 + }, + { + "id": 975, + "nodeId": 2230203, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104230203 + }, + { + "id": 976, + "nodeId": 2230303, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104230303 + }, + { + "id": 977, + "nodeId": 2230403, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104230403 + }, + { + "id": 978, + "nodeId": 2230503, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104230503 + }, + { + "id": 979, + "nodeId": 2230603, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104230603 + }, + { + "id": 980, + "nodeId": 2310103, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109210103 + }, + { + "id": 981, + "nodeId": 2310203, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109210203 + }, + { + "id": 982, + "nodeId": 2310303, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109210303 + }, + { + "id": 983, + "nodeId": 2310403, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109210403 + }, + { + "id": 984, + "nodeId": 2310503, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109210503 + }, + { + "id": 985, + "nodeId": 2310603, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109210603 + }, + { + "id": 986, + "nodeId": 2310703, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109210703 + }, + { + "id": 987, + "nodeId": 2320103, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109220103 + }, + { + "id": 988, + "nodeId": 2320203, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109220203 + }, + { + "id": 989, + "nodeId": 2320303, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109220303 + }, + { + "id": 990, + "nodeId": 2320403, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109220403 + }, + { + "id": 991, + "nodeId": 2320503, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109220503 + }, + { + "id": 992, + "nodeId": 2320603, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109220603 + }, + { + "id": 993, + "nodeId": 2320703, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109220703 + }, + { + "id": 994, + "nodeId": 2330103, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109230103 + }, + { + "id": 995, + "nodeId": 2330203, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109230203 + }, + { + "id": 996, + "nodeId": 2330303, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109230303 + }, + { + "id": 997, + "nodeId": 2330403, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109230403 + }, + { + "id": 998, + "nodeId": 2330503, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109230403 + }, + { + "id": 999, + "nodeId": 2410103, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106210103 + }, + { + "id": 1000, + "nodeId": 2410203, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106210203 + }, + { + "id": 1001, + "nodeId": 2410303, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106210303 + }, + { + "id": 1002, + "nodeId": 2410403, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106210403 + }, + { + "id": 1003, + "nodeId": 2410503, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106210503 + }, + { + "id": 1004, + "nodeId": 2410603, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106210603 + }, + { + "id": 1005, + "nodeId": 2420103, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106220103 + }, + { + "id": 1006, + "nodeId": 2420203, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106220203 + }, + { + "id": 1007, + "nodeId": 2420303, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106220303 + }, + { + "id": 1008, + "nodeId": 2420403, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106220403 + }, + { + "id": 1009, + "nodeId": 2420503, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106220503 + }, + { + "id": 1010, + "nodeId": 2420603, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106220603 + }, + { + "id": 1011, + "nodeId": 2430103, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106230103 + }, + { + "id": 1012, + "nodeId": 2430203, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106230203 + }, + { + "id": 1013, + "nodeId": 2430303, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106230303 + }, + { + "id": 1014, + "nodeId": 2430403, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106230403 + }, + { + "id": 1015, + "nodeId": 2430503, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106230503 + }, + { + "id": 1016, + "nodeId": 2430603, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106230603 + }, + { + "id": 1017, + "nodeId": 2510103, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110210103 + }, + { + "id": 1018, + "nodeId": 2510203, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110210203 + }, + { + "id": 1019, + "nodeId": 2510303, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110210303 + }, + { + "id": 1020, + "nodeId": 2510403, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110210403 + }, + { + "id": 1021, + "nodeId": 2510503, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110210503 + }, + { + "id": 1022, + "nodeId": 2510603, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110210603 + }, + { + "id": 1023, + "nodeId": 2510703, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110210703 + }, + { + "id": 1024, + "nodeId": 2520103, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110220103 + }, + { + "id": 1025, + "nodeId": 2520203, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110220203 + }, + { + "id": 1026, + "nodeId": 2520303, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110220303 + }, + { + "id": 1027, + "nodeId": 2520403, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110220403 + }, + { + "id": 1028, + "nodeId": 2520503, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110220503 + }, + { + "id": 1029, + "nodeId": 2520603, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110220603 + }, + { + "id": 1030, + "nodeId": 2520703, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110220703 + }, + { + "id": 1031, + "nodeId": 2530103, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110230103 + }, + { + "id": 1032, + "nodeId": 2530203, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110230203 + }, + { + "id": 1033, + "nodeId": 2530303, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110230303 + }, + { + "id": 1034, + "nodeId": 2530403, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110230403 + }, + { + "id": 1035, + "nodeId": 2530503, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110230503 + }, + { + "id": 1036, + "nodeId": 2530603, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110230603 + }, + { + "id": 1037, + "nodeId": 2530703, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110230703 + }, + { + "id": 1038, + "nodeId": 2610103, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103210103 + }, + { + "id": 1039, + "nodeId": 2610203, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103210203 + }, + { + "id": 1040, + "nodeId": 2610303, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103210303 + }, + { + "id": 1041, + "nodeId": 2610403, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103210403 + }, + { + "id": 1042, + "nodeId": 2610503, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103210503 + }, + { + "id": 1043, + "nodeId": 2620103, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103220103 + }, + { + "id": 1044, + "nodeId": 2620203, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103220203 + }, + { + "id": 1045, + "nodeId": 2620303, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103220303 + }, + { + "id": 1046, + "nodeId": 2620403, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103220403 + }, + { + "id": 1047, + "nodeId": 2620503, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103220503 + }, + { + "id": 1048, + "nodeId": 2630103, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103230103 + }, + { + "id": 1049, + "nodeId": 2630203, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103230203 + }, + { + "id": 1050, + "nodeId": 2630303, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103230303 + }, + { + "id": 1051, + "nodeId": 2630403, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103230403 + }, + { + "id": 1052, + "nodeId": 2630503, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103230503 + }, + { + "id": 1053, + "nodeId": 2710103, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102210103 + }, + { + "id": 1054, + "nodeId": 2710203, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102210203 + }, + { + "id": 1055, + "nodeId": 2710303, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102210303 + }, + { + "id": 1056, + "nodeId": 2710403, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102210403 + }, + { + "id": 1057, + "nodeId": 2710503, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102210503 + }, + { + "id": 1058, + "nodeId": 2720103, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102220103 + }, + { + "id": 1059, + "nodeId": 2720203, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102220203 + }, + { + "id": 1060, + "nodeId": 2720303, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102220303 + }, + { + "id": 1061, + "nodeId": 2720403, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102220403 + }, + { + "id": 1062, + "nodeId": 2720503, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102220503 + }, + { + "id": 1063, + "nodeId": 2730103, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102230103 + }, + { + "id": 1064, + "nodeId": 2730203, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102230203 + }, + { + "id": 1065, + "nodeId": 2730303, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102230303 + }, + { + "id": 1066, + "nodeId": 2730403, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102230403 + }, + { + "id": 1067, + "nodeId": 2730503, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102230503 + }, + { + "id": 1068, + "nodeId": 2810103, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107210103 + }, + { + "id": 1069, + "nodeId": 2810203, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107210203 + }, + { + "id": 1070, + "nodeId": 2810303, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107210303 + }, + { + "id": 1071, + "nodeId": 2810403, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107210403 + }, + { + "id": 1072, + "nodeId": 2810503, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107210503 + }, + { + "id": 1073, + "nodeId": 2820103, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107220103 + }, + { + "id": 1074, + "nodeId": 2820203, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107220203 + }, + { + "id": 1075, + "nodeId": 2820303, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107220303 + }, + { + "id": 1076, + "nodeId": 2820403, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107220403 + }, + { + "id": 1077, + "nodeId": 2820503, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107220503 + }, + { + "id": 1078, + "nodeId": 2830103, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107230103 + }, + { + "id": 1079, + "nodeId": 2830203, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107230203 + }, + { + "id": 1080, + "nodeId": 2830303, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107230303 + }, + { + "id": 1081, + "nodeId": 2830403, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107230403 + }, + { + "id": 1082, + "nodeId": 2830503, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107230503 + }, + { + "id": 1083, + "nodeId": 7110103, + "nodeType": 7, + "nodeTypeName": "儒家试炼boss", + "param": 101310103 + }, + { + "id": 1084, + "nodeId": 7210103, + "nodeType": 7, + "nodeTypeName": "道家试炼boss", + "param": 104310103 + }, + { + "id": 1085, + "nodeId": 7330503, + "nodeType": 7, + "nodeTypeName": "墨家试炼boss", + "param": 109230503 + }, + { + "id": 1086, + "nodeId": 7410103, + "nodeType": 7, + "nodeTypeName": "法家试炼boss", + "param": 106310103 + }, + { + "id": 1087, + "nodeId": 7510103, + "nodeType": 7, + "nodeTypeName": "医家试炼boss", + "param": 110310103 + }, + { + "id": 1088, + "nodeId": 7610103, + "nodeType": 7, + "nodeTypeName": "兵家试炼boss", + "param": 103310103 + }, + { + "id": 1089, + "nodeId": 7710103, + "nodeType": 7, + "nodeTypeName": "阴阳家试炼boss", + "param": 102310103 + }, + { + "id": 1090, + "nodeId": 7810103, + "nodeType": 7, + "nodeTypeName": "纵横家试炼boss", + "param": 107310103 + }, + { + "id": 1091, + "nodeId": 3110103, + "nodeType": 3, + "nodeTypeName": "挑战点", + "param": 0 + }, + { + "id": 1092, + "nodeId": 3210103, + "nodeType": 3, + "nodeTypeName": "挑战点", + "param": 0 + }, + { + "id": 1093, + "nodeId": 3310103, + "nodeType": 3, + "nodeTypeName": "挑战点", + "param": 0 + }, + { + "id": 1094, + "nodeId": 3410103, + "nodeType": 3, + "nodeTypeName": "挑战点", + "param": 0 + }, + { + "id": 1095, + "nodeId": 3510103, + "nodeType": 3, + "nodeTypeName": "挑战点", + "param": 0 + }, + { + "id": 1096, + "nodeId": 3610103, + "nodeType": 3, + "nodeTypeName": "挑战点", + "param": 0 + }, + { + "id": 1097, + "nodeId": 3710103, + "nodeType": 3, + "nodeTypeName": "挑战点", + "param": 0 + }, + { + "id": 1098, + "nodeId": 3810103, + "nodeType": 3, + "nodeTypeName": "挑战点", + "param": 0 + }, + { + "id": 1099, + "nodeId": 4110103, + "nodeType": 4, + "nodeTypeName": "商店", + "param": 0 + }, + { + "id": 1100, + "nodeId": 4210103, + "nodeType": 4, + "nodeTypeName": "商店", + "param": 0 + }, + { + "id": 1101, + "nodeId": 4310103, + "nodeType": 4, + "nodeTypeName": "商店", + "param": 0 + }, + { + "id": 1102, + "nodeId": 4410103, + "nodeType": 4, + "nodeTypeName": "商店", + "param": 0 + }, + { + "id": 1103, + "nodeId": 4510103, + "nodeType": 4, + "nodeTypeName": "商店", + "param": 0 + }, + { + "id": 1104, + "nodeId": 4610103, + "nodeType": 4, + "nodeTypeName": "商店", + "param": 0 + }, + { + "id": 1105, + "nodeId": 4710103, + "nodeType": 4, + "nodeTypeName": "商店", + "param": 0 + }, + { + "id": 1106, + "nodeId": 4810103, + "nodeType": 4, + "nodeTypeName": "商店", + "param": 0 + }, + { + "id": 1107, + "nodeId": 5110103, + "nodeType": 5, + "nodeTypeName": "休整点", + "param": 0 + }, + { + "id": 1108, + "nodeId": 5210103, + "nodeType": 5, + "nodeTypeName": "休整点", + "param": 0 + }, + { + "id": 1109, + "nodeId": 5310103, + "nodeType": 5, + "nodeTypeName": "休整点", + "param": 0 + }, + { + "id": 1110, + "nodeId": 5410103, + "nodeType": 5, + "nodeTypeName": "休整点", + "param": 0 + }, + { + "id": 1111, + "nodeId": 5510103, + "nodeType": 5, + "nodeTypeName": "休整点", + "param": 0 + }, + { + "id": 1112, + "nodeId": 5610103, + "nodeType": 5, + "nodeTypeName": "休整点", + "param": 0 + }, + { + "id": 1113, + "nodeId": 5710103, + "nodeType": 5, + "nodeTypeName": "休整点", + "param": 0 + }, + { + "id": 1114, + "nodeId": 5810103, + "nodeType": 5, + "nodeTypeName": "休整点", + "param": 0 + }, + { + "id": 1115, + "nodeId": 6110103, + "nodeType": 6, + "nodeTypeName": "问号点", + "param": 1 + }, + { + "id": 1116, + "nodeId": 6210103, + "nodeType": 6, + "nodeTypeName": "问号点", + "param": 1 + }, + { + "id": 1117, + "nodeId": 6310103, + "nodeType": 6, + "nodeTypeName": "问号点", + "param": 1 + }, + { + "id": 1118, + "nodeId": 6410103, + "nodeType": 6, + "nodeTypeName": "问号点", + "param": 1 + }, + { + "id": 1119, + "nodeId": 6510103, + "nodeType": 6, + "nodeTypeName": "问号点", + "param": 1 + }, + { + "id": 1120, + "nodeId": 6610103, + "nodeType": 6, + "nodeTypeName": "问号点", + "param": 1 + }, + { + "id": 1121, + "nodeId": 6710103, + "nodeType": 6, + "nodeTypeName": "问号点", + "param": 1 + }, + { + "id": 1122, + "nodeId": 6810103, + "nodeType": 6, + "nodeTypeName": "问号点", + "param": 1 + }, + { + "id": 1123, + "nodeId": 1110104, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101110104 + }, + { + "id": 1124, + "nodeId": 1110204, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101110204 + }, + { + "id": 1125, + "nodeId": 1110304, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101110304 + }, + { + "id": 1126, + "nodeId": 1110404, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101110404 + }, + { + "id": 1127, + "nodeId": 1110504, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101110504 + }, + { + "id": 1128, + "nodeId": 1110604, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101110604 + }, + { + "id": 1129, + "nodeId": 1110704, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101110704 + }, + { + "id": 1130, + "nodeId": 1110804, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101110804 + }, + { + "id": 1131, + "nodeId": 1120104, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101120104 + }, + { + "id": 1132, + "nodeId": 1120204, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101120204 + }, + { + "id": 1133, + "nodeId": 1120304, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101120304 + }, + { + "id": 1134, + "nodeId": 1120404, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101120404 + }, + { + "id": 1135, + "nodeId": 1120504, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101120504 + }, + { + "id": 1136, + "nodeId": 1120604, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101120604 + }, + { + "id": 1137, + "nodeId": 1120704, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101120704 + }, + { + "id": 1138, + "nodeId": 1120804, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101120804 + }, + { + "id": 1139, + "nodeId": 1130104, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101130104 + }, + { + "id": 1140, + "nodeId": 1130204, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101130204 + }, + { + "id": 1141, + "nodeId": 1130304, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101130304 + }, + { + "id": 1142, + "nodeId": 1130404, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101130404 + }, + { + "id": 1143, + "nodeId": 1130504, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101130504 + }, + { + "id": 1144, + "nodeId": 1130604, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101130604 + }, + { + "id": 1145, + "nodeId": 1130704, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101130704 + }, + { + "id": 1146, + "nodeId": 1130804, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101130804 + }, + { + "id": 1147, + "nodeId": 1210104, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104110104 + }, + { + "id": 1148, + "nodeId": 1210204, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104110204 + }, + { + "id": 1149, + "nodeId": 1210304, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104110304 + }, + { + "id": 1150, + "nodeId": 1210404, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104110404 + }, + { + "id": 1151, + "nodeId": 1210504, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104110504 + }, + { + "id": 1152, + "nodeId": 1210604, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104110604 + }, + { + "id": 1153, + "nodeId": 1210704, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104110704 + }, + { + "id": 1154, + "nodeId": 1210804, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104110804 + }, + { + "id": 1155, + "nodeId": 1220104, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104120104 + }, + { + "id": 1156, + "nodeId": 1220204, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104120204 + }, + { + "id": 1157, + "nodeId": 1220304, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104120304 + }, + { + "id": 1158, + "nodeId": 1220404, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104120404 + }, + { + "id": 1159, + "nodeId": 1220504, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104120504 + }, + { + "id": 1160, + "nodeId": 1220604, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104120604 + }, + { + "id": 1161, + "nodeId": 1220704, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104120704 + }, + { + "id": 1162, + "nodeId": 1220804, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104120804 + }, + { + "id": 1163, + "nodeId": 1230104, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104130104 + }, + { + "id": 1164, + "nodeId": 1230204, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104130204 + }, + { + "id": 1165, + "nodeId": 1230304, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104130304 + }, + { + "id": 1166, + "nodeId": 1230404, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104130404 + }, + { + "id": 1167, + "nodeId": 1230504, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104130504 + }, + { + "id": 1168, + "nodeId": 1230604, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104130604 + }, + { + "id": 1169, + "nodeId": 1230704, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104130704 + }, + { + "id": 1170, + "nodeId": 1230804, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104130804 + }, + { + "id": 1171, + "nodeId": 1310104, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109110104 + }, + { + "id": 1172, + "nodeId": 1310104, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109310104 + }, + { + "id": 1173, + "nodeId": 1310204, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109110204 + }, + { + "id": 1174, + "nodeId": 1310304, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109110304 + }, + { + "id": 1175, + "nodeId": 1310404, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109110404 + }, + { + "id": 1176, + "nodeId": 1310504, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109110504 + }, + { + "id": 1177, + "nodeId": 1310604, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109110604 + }, + { + "id": 1178, + "nodeId": 1310704, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109110704 + }, + { + "id": 1179, + "nodeId": 1310804, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109110804 + }, + { + "id": 1180, + "nodeId": 1320104, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109120104 + }, + { + "id": 1181, + "nodeId": 1320204, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109120204 + }, + { + "id": 1182, + "nodeId": 1320304, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109120304 + }, + { + "id": 1183, + "nodeId": 1320404, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109120404 + }, + { + "id": 1184, + "nodeId": 1320504, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109120504 + }, + { + "id": 1185, + "nodeId": 1320604, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109120604 + }, + { + "id": 1186, + "nodeId": 1320704, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109120704 + }, + { + "id": 1187, + "nodeId": 1320804, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109120804 + }, + { + "id": 1188, + "nodeId": 1330104, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109130104 + }, + { + "id": 1189, + "nodeId": 1330204, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109130204 + }, + { + "id": 1190, + "nodeId": 1330304, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109130304 + }, + { + "id": 1191, + "nodeId": 1330404, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109130404 + }, + { + "id": 1192, + "nodeId": 1330504, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109130504 + }, + { + "id": 1193, + "nodeId": 1330604, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109130604 + }, + { + "id": 1194, + "nodeId": 1330604, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109230604 + }, + { + "id": 1195, + "nodeId": 1330704, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109130704 + }, + { + "id": 1196, + "nodeId": 1330704, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109230704 + }, + { + "id": 1197, + "nodeId": 1330804, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109130804 + }, + { + "id": 1198, + "nodeId": 1410104, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106110104 + }, + { + "id": 1199, + "nodeId": 1410204, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106110204 + }, + { + "id": 1200, + "nodeId": 1410304, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106110304 + }, + { + "id": 1201, + "nodeId": 1410404, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106110404 + }, + { + "id": 1202, + "nodeId": 1410504, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106110504 + }, + { + "id": 1203, + "nodeId": 1410604, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106110604 + }, + { + "id": 1204, + "nodeId": 1410704, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106110704 + }, + { + "id": 1205, + "nodeId": 1410804, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106110804 + }, + { + "id": 1206, + "nodeId": 1420104, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106120104 + }, + { + "id": 1207, + "nodeId": 1420204, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106120204 + }, + { + "id": 1208, + "nodeId": 1420304, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106120304 + }, + { + "id": 1209, + "nodeId": 1420404, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106120404 + }, + { + "id": 1210, + "nodeId": 1420504, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106120504 + }, + { + "id": 1211, + "nodeId": 1420604, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106120604 + }, + { + "id": 1212, + "nodeId": 1420704, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106120704 + }, + { + "id": 1213, + "nodeId": 1420804, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106120804 + }, + { + "id": 1214, + "nodeId": 1430104, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106130104 + }, + { + "id": 1215, + "nodeId": 1430204, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106130204 + }, + { + "id": 1216, + "nodeId": 1430304, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106130304 + }, + { + "id": 1217, + "nodeId": 1430404, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106130404 + }, + { + "id": 1218, + "nodeId": 1430504, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106130504 + }, + { + "id": 1219, + "nodeId": 1430604, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106130604 + }, + { + "id": 1220, + "nodeId": 1430704, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106130704 + }, + { + "id": 1221, + "nodeId": 1430804, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106130804 + }, + { + "id": 1222, + "nodeId": 1510104, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110110104 + }, + { + "id": 1223, + "nodeId": 1510204, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110110204 + }, + { + "id": 1224, + "nodeId": 1510304, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110110304 + }, + { + "id": 1225, + "nodeId": 1510404, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110110404 + }, + { + "id": 1226, + "nodeId": 1510504, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110110504 + }, + { + "id": 1227, + "nodeId": 1510604, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110110604 + }, + { + "id": 1228, + "nodeId": 1510704, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110110704 + }, + { + "id": 1229, + "nodeId": 1510804, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110110804 + }, + { + "id": 1230, + "nodeId": 1520104, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110120104 + }, + { + "id": 1231, + "nodeId": 1520204, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110120204 + }, + { + "id": 1232, + "nodeId": 1520304, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110120304 + }, + { + "id": 1233, + "nodeId": 1520404, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110120404 + }, + { + "id": 1234, + "nodeId": 1520504, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110120504 + }, + { + "id": 1235, + "nodeId": 1520604, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110120604 + }, + { + "id": 1236, + "nodeId": 1520704, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110120704 + }, + { + "id": 1237, + "nodeId": 1520804, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110120804 + }, + { + "id": 1238, + "nodeId": 1530104, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110130104 + }, + { + "id": 1239, + "nodeId": 1530204, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110130204 + }, + { + "id": 1240, + "nodeId": 1530304, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110130304 + }, + { + "id": 1241, + "nodeId": 1530404, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110130404 + }, + { + "id": 1242, + "nodeId": 1530504, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110130504 + }, + { + "id": 1243, + "nodeId": 1530604, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110130604 + }, + { + "id": 1244, + "nodeId": 1530704, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110130704 + }, + { + "id": 1245, + "nodeId": 1530804, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110130804 + }, + { + "id": 1246, + "nodeId": 1610104, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103110104 + }, + { + "id": 1247, + "nodeId": 1610204, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103110204 + }, + { + "id": 1248, + "nodeId": 1610304, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103110304 + }, + { + "id": 1249, + "nodeId": 1610404, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103110404 + }, + { + "id": 1250, + "nodeId": 1610504, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103110504 + }, + { + "id": 1251, + "nodeId": 1610604, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103110604 + }, + { + "id": 1252, + "nodeId": 1610704, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103110704 + }, + { + "id": 1253, + "nodeId": 1610804, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103110804 + }, + { + "id": 1254, + "nodeId": 1620104, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103120104 + }, + { + "id": 1255, + "nodeId": 1620204, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103120204 + }, + { + "id": 1256, + "nodeId": 1620304, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103120304 + }, + { + "id": 1257, + "nodeId": 1620404, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103120404 + }, + { + "id": 1258, + "nodeId": 1620504, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103120504 + }, + { + "id": 1259, + "nodeId": 1620604, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103120604 + }, + { + "id": 1260, + "nodeId": 1620704, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103120704 + }, + { + "id": 1261, + "nodeId": 1620804, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103120804 + }, + { + "id": 1262, + "nodeId": 1630104, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103130104 + }, + { + "id": 1263, + "nodeId": 1630204, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103130204 + }, + { + "id": 1264, + "nodeId": 1630304, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103130304 + }, + { + "id": 1265, + "nodeId": 1630404, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103130404 + }, + { + "id": 1266, + "nodeId": 1630504, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103130504 + }, + { + "id": 1267, + "nodeId": 1630604, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103130604 + }, + { + "id": 1268, + "nodeId": 1630704, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103130704 + }, + { + "id": 1269, + "nodeId": 1630804, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103130804 + }, + { + "id": 1270, + "nodeId": 1710104, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102110104 + }, + { + "id": 1271, + "nodeId": 1710204, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102110204 + }, + { + "id": 1272, + "nodeId": 1710304, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102110304 + }, + { + "id": 1273, + "nodeId": 1710404, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102110404 + }, + { + "id": 1274, + "nodeId": 1710504, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102110504 + }, + { + "id": 1275, + "nodeId": 1710604, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102110604 + }, + { + "id": 1276, + "nodeId": 1710704, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102110704 + }, + { + "id": 1277, + "nodeId": 1710804, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102110804 + }, + { + "id": 1278, + "nodeId": 1720104, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102120104 + }, + { + "id": 1279, + "nodeId": 1720204, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102120204 + }, + { + "id": 1280, + "nodeId": 1720304, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102120304 + }, + { + "id": 1281, + "nodeId": 1720404, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102120404 + }, + { + "id": 1282, + "nodeId": 1720504, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102120504 + }, + { + "id": 1283, + "nodeId": 1720604, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102120604 + }, + { + "id": 1284, + "nodeId": 1720704, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102120704 + }, + { + "id": 1285, + "nodeId": 1720804, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102120804 + }, + { + "id": 1286, + "nodeId": 1730104, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102130104 + }, + { + "id": 1287, + "nodeId": 1730204, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102130204 + }, + { + "id": 1288, + "nodeId": 1730304, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102130304 + }, + { + "id": 1289, + "nodeId": 1730404, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102130404 + }, + { + "id": 1290, + "nodeId": 1730504, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102130504 + }, + { + "id": 1291, + "nodeId": 1730604, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102130604 + }, + { + "id": 1292, + "nodeId": 1730704, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102130704 + }, + { + "id": 1293, + "nodeId": 1730804, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102130804 + }, + { + "id": 1294, + "nodeId": 1810104, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107110104 + }, + { + "id": 1295, + "nodeId": 1810204, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107110204 + }, + { + "id": 1296, + "nodeId": 1810304, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107110304 + }, + { + "id": 1297, + "nodeId": 1810404, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107110404 + }, + { + "id": 1298, + "nodeId": 1810504, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107110504 + }, + { + "id": 1299, + "nodeId": 1810604, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107110604 + }, + { + "id": 1300, + "nodeId": 1810704, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107110704 + }, + { + "id": 1301, + "nodeId": 1810804, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107110804 + }, + { + "id": 1302, + "nodeId": 1820104, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107120104 + }, + { + "id": 1303, + "nodeId": 1820204, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107120204 + }, + { + "id": 1304, + "nodeId": 1820304, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107120304 + }, + { + "id": 1305, + "nodeId": 1820404, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107120404 + }, + { + "id": 1306, + "nodeId": 1820504, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107120504 + }, + { + "id": 1307, + "nodeId": 1820604, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107120604 + }, + { + "id": 1308, + "nodeId": 1820704, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107120704 + }, + { + "id": 1309, + "nodeId": 1820804, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107120804 + }, + { + "id": 1310, + "nodeId": 1830104, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107130104 + }, + { + "id": 1311, + "nodeId": 1830204, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107130204 + }, + { + "id": 1312, + "nodeId": 1830304, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107130304 + }, + { + "id": 1313, + "nodeId": 1830404, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107130404 + }, + { + "id": 1314, + "nodeId": 1830504, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107130504 + }, + { + "id": 1315, + "nodeId": 1830604, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107130604 + }, + { + "id": 1316, + "nodeId": 1830704, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107130704 + }, + { + "id": 1317, + "nodeId": 1830804, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107130804 + }, + { + "id": 1318, + "nodeId": 2110104, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101210104 + }, + { + "id": 1319, + "nodeId": 2110204, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101210204 + }, + { + "id": 1320, + "nodeId": 2110304, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101210304 + }, + { + "id": 1321, + "nodeId": 2110404, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101210404 + }, + { + "id": 1322, + "nodeId": 2110504, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101210504 + }, + { + "id": 1323, + "nodeId": 2110604, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101210604 + }, + { + "id": 1324, + "nodeId": 2120104, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101220104 + }, + { + "id": 1325, + "nodeId": 2120204, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101220204 + }, + { + "id": 1326, + "nodeId": 2120304, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101220304 + }, + { + "id": 1327, + "nodeId": 2120404, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101220404 + }, + { + "id": 1328, + "nodeId": 2120504, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101220504 + }, + { + "id": 1329, + "nodeId": 2120604, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101220604 + }, + { + "id": 1330, + "nodeId": 2130104, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101230104 + }, + { + "id": 1331, + "nodeId": 2130204, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101230204 + }, + { + "id": 1332, + "nodeId": 2130304, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101230304 + }, + { + "id": 1333, + "nodeId": 2130404, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101230404 + }, + { + "id": 1334, + "nodeId": 2130504, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101230504 + }, + { + "id": 1335, + "nodeId": 2130604, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101230604 + }, + { + "id": 1336, + "nodeId": 2210104, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104210104 + }, + { + "id": 1337, + "nodeId": 2210204, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104210204 + }, + { + "id": 1338, + "nodeId": 2210304, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104210304 + }, + { + "id": 1339, + "nodeId": 2210404, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104210404 + }, + { + "id": 1340, + "nodeId": 2210504, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104210504 + }, + { + "id": 1341, + "nodeId": 2210604, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104210604 + }, + { + "id": 1342, + "nodeId": 2220104, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104220104 + }, + { + "id": 1343, + "nodeId": 2220204, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104220204 + }, + { + "id": 1344, + "nodeId": 2220304, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104220304 + }, + { + "id": 1345, + "nodeId": 2220404, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104220404 + }, + { + "id": 1346, + "nodeId": 2220504, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104220504 + }, + { + "id": 1347, + "nodeId": 2220604, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104220604 + }, + { + "id": 1348, + "nodeId": 2230104, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104230104 + }, + { + "id": 1349, + "nodeId": 2230204, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104230204 + }, + { + "id": 1350, + "nodeId": 2230304, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104230304 + }, + { + "id": 1351, + "nodeId": 2230404, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104230404 + }, + { + "id": 1352, + "nodeId": 2230504, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104230504 + }, + { + "id": 1353, + "nodeId": 2230604, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104230604 + }, + { + "id": 1354, + "nodeId": 2310104, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109210104 + }, + { + "id": 1355, + "nodeId": 2310204, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109210204 + }, + { + "id": 1356, + "nodeId": 2310304, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109210304 + }, + { + "id": 1357, + "nodeId": 2310404, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109210404 + }, + { + "id": 1358, + "nodeId": 2310504, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109210504 + }, + { + "id": 1359, + "nodeId": 2310604, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109210604 + }, + { + "id": 1360, + "nodeId": 2310704, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109210704 + }, + { + "id": 1361, + "nodeId": 2320104, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109220104 + }, + { + "id": 1362, + "nodeId": 2320204, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109220204 + }, + { + "id": 1363, + "nodeId": 2320304, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109220304 + }, + { + "id": 1364, + "nodeId": 2320404, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109220404 + }, + { + "id": 1365, + "nodeId": 2320504, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109220504 + }, + { + "id": 1366, + "nodeId": 2320604, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109220604 + }, + { + "id": 1367, + "nodeId": 2320704, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109220704 + }, + { + "id": 1368, + "nodeId": 2330104, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109230104 + }, + { + "id": 1369, + "nodeId": 2330204, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109230204 + }, + { + "id": 1370, + "nodeId": 2330304, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109230304 + }, + { + "id": 1371, + "nodeId": 2330404, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109230404 + }, + { + "id": 1372, + "nodeId": 2330504, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109230404 + }, + { + "id": 1373, + "nodeId": 2410104, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106210104 + }, + { + "id": 1374, + "nodeId": 2410204, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106210204 + }, + { + "id": 1375, + "nodeId": 2410304, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106210304 + }, + { + "id": 1376, + "nodeId": 2410404, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106210404 + }, + { + "id": 1377, + "nodeId": 2410504, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106210504 + }, + { + "id": 1378, + "nodeId": 2410604, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106210604 + }, + { + "id": 1379, + "nodeId": 2420104, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106220104 + }, + { + "id": 1380, + "nodeId": 2420204, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106220204 + }, + { + "id": 1381, + "nodeId": 2420304, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106220304 + }, + { + "id": 1382, + "nodeId": 2420404, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106220404 + }, + { + "id": 1383, + "nodeId": 2420504, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106220504 + }, + { + "id": 1384, + "nodeId": 2420604, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106220604 + }, + { + "id": 1385, + "nodeId": 2430104, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106230104 + }, + { + "id": 1386, + "nodeId": 2430204, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106230204 + }, + { + "id": 1387, + "nodeId": 2430304, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106230304 + }, + { + "id": 1388, + "nodeId": 2430404, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106230404 + }, + { + "id": 1389, + "nodeId": 2430504, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106230504 + }, + { + "id": 1390, + "nodeId": 2430604, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106230604 + }, + { + "id": 1391, + "nodeId": 2510104, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110210104 + }, + { + "id": 1392, + "nodeId": 2510204, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110210204 + }, + { + "id": 1393, + "nodeId": 2510304, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110210304 + }, + { + "id": 1394, + "nodeId": 2510404, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110210404 + }, + { + "id": 1395, + "nodeId": 2510504, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110210504 + }, + { + "id": 1396, + "nodeId": 2510604, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110210604 + }, + { + "id": 1397, + "nodeId": 2510704, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110210704 + }, + { + "id": 1398, + "nodeId": 2520104, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110220104 + }, + { + "id": 1399, + "nodeId": 2520204, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110220204 + }, + { + "id": 1400, + "nodeId": 2520304, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110220304 + }, + { + "id": 1401, + "nodeId": 2520404, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110220404 + }, + { + "id": 1402, + "nodeId": 2520504, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110220504 + }, + { + "id": 1403, + "nodeId": 2520604, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110220604 + }, + { + "id": 1404, + "nodeId": 2520704, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110220704 + }, + { + "id": 1405, + "nodeId": 2530104, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110230104 + }, + { + "id": 1406, + "nodeId": 2530204, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110230204 + }, + { + "id": 1407, + "nodeId": 2530304, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110230304 + }, + { + "id": 1408, + "nodeId": 2530404, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110230404 + }, + { + "id": 1409, + "nodeId": 2530504, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110230504 + }, + { + "id": 1410, + "nodeId": 2530604, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110230604 + }, + { + "id": 1411, + "nodeId": 2530704, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110230704 + }, + { + "id": 1412, + "nodeId": 2610104, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103210104 + }, + { + "id": 1413, + "nodeId": 2610204, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103210204 + }, + { + "id": 1414, + "nodeId": 2610304, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103210304 + }, + { + "id": 1415, + "nodeId": 2610404, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103210404 + }, + { + "id": 1416, + "nodeId": 2610504, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103210504 + }, + { + "id": 1417, + "nodeId": 2620104, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103220104 + }, + { + "id": 1418, + "nodeId": 2620204, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103220204 + }, + { + "id": 1419, + "nodeId": 2620304, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103220304 + }, + { + "id": 1420, + "nodeId": 2620404, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103220404 + }, + { + "id": 1421, + "nodeId": 2620504, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103220504 + }, + { + "id": 1422, + "nodeId": 2630104, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103230104 + }, + { + "id": 1423, + "nodeId": 2630204, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103230204 + }, + { + "id": 1424, + "nodeId": 2630304, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103230304 + }, + { + "id": 1425, + "nodeId": 2630404, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103230404 + }, + { + "id": 1426, + "nodeId": 2630504, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103230504 + }, + { + "id": 1427, + "nodeId": 2710104, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102210104 + }, + { + "id": 1428, + "nodeId": 2710204, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102210204 + }, + { + "id": 1429, + "nodeId": 2710304, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102210304 + }, + { + "id": 1430, + "nodeId": 2710404, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102210404 + }, + { + "id": 1431, + "nodeId": 2710504, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102210504 + }, + { + "id": 1432, + "nodeId": 2720104, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102220104 + }, + { + "id": 1433, + "nodeId": 2720204, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102220204 + }, + { + "id": 1434, + "nodeId": 2720304, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102220304 + }, + { + "id": 1435, + "nodeId": 2720404, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102220404 + }, + { + "id": 1436, + "nodeId": 2720504, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102220504 + }, + { + "id": 1437, + "nodeId": 2730104, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102230104 + }, + { + "id": 1438, + "nodeId": 2730204, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102230204 + }, + { + "id": 1439, + "nodeId": 2730304, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102230304 + }, + { + "id": 1440, + "nodeId": 2730404, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102230404 + }, + { + "id": 1441, + "nodeId": 2730504, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102230504 + }, + { + "id": 1442, + "nodeId": 2810104, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107210104 + }, + { + "id": 1443, + "nodeId": 2810204, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107210204 + }, + { + "id": 1444, + "nodeId": 2810304, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107210304 + }, + { + "id": 1445, + "nodeId": 2810404, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107210404 + }, + { + "id": 1446, + "nodeId": 2810504, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107210504 + }, + { + "id": 1447, + "nodeId": 2820104, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107220104 + }, + { + "id": 1448, + "nodeId": 2820204, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107220204 + }, + { + "id": 1449, + "nodeId": 2820304, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107220304 + }, + { + "id": 1450, + "nodeId": 2820404, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107220404 + }, + { + "id": 1451, + "nodeId": 2820504, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107220504 + }, + { + "id": 1452, + "nodeId": 2830104, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107230104 + }, + { + "id": 1453, + "nodeId": 2830204, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107230204 + }, + { + "id": 1454, + "nodeId": 2830304, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107230304 + }, + { + "id": 1455, + "nodeId": 2830404, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107230404 + }, + { + "id": 1456, + "nodeId": 2830504, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107230504 + }, + { + "id": 1457, + "nodeId": 7110104, + "nodeType": 7, + "nodeTypeName": "儒家试炼boss", + "param": 101310104 + }, + { + "id": 1458, + "nodeId": 7210104, + "nodeType": 7, + "nodeTypeName": "道家试炼boss", + "param": 104310104 + }, + { + "id": 1459, + "nodeId": 7330504, + "nodeType": 7, + "nodeTypeName": "墨家试炼boss", + "param": 109230504 + }, + { + "id": 1460, + "nodeId": 7410104, + "nodeType": 7, + "nodeTypeName": "法家试炼boss", + "param": 106310104 + }, + { + "id": 1461, + "nodeId": 7510104, + "nodeType": 7, + "nodeTypeName": "医家试炼boss", + "param": 110310104 + }, + { + "id": 1462, + "nodeId": 7610104, + "nodeType": 7, + "nodeTypeName": "兵家试炼boss", + "param": 103310104 + }, + { + "id": 1463, + "nodeId": 7710104, + "nodeType": 7, + "nodeTypeName": "阴阳家试炼boss", + "param": 102310104 + }, + { + "id": 1464, + "nodeId": 7810104, + "nodeType": 7, + "nodeTypeName": "纵横家试炼boss", + "param": 107310104 + }, + { + "id": 1465, + "nodeId": 3110104, + "nodeType": 3, + "nodeTypeName": "挑战点", + "param": 0 + }, + { + "id": 1466, + "nodeId": 3210104, + "nodeType": 3, + "nodeTypeName": "挑战点", + "param": 0 + }, + { + "id": 1467, + "nodeId": 3310104, + "nodeType": 3, + "nodeTypeName": "挑战点", + "param": 0 + }, + { + "id": 1468, + "nodeId": 3410104, + "nodeType": 3, + "nodeTypeName": "挑战点", + "param": 0 + }, + { + "id": 1469, + "nodeId": 3510104, + "nodeType": 3, + "nodeTypeName": "挑战点", + "param": 0 + }, + { + "id": 1470, + "nodeId": 3610104, + "nodeType": 3, + "nodeTypeName": "挑战点", + "param": 0 + }, + { + "id": 1471, + "nodeId": 3710104, + "nodeType": 3, + "nodeTypeName": "挑战点", + "param": 0 + }, + { + "id": 1472, + "nodeId": 3810104, + "nodeType": 3, + "nodeTypeName": "挑战点", + "param": 0 + }, + { + "id": 1473, + "nodeId": 4110104, + "nodeType": 4, + "nodeTypeName": "商店", + "param": 0 + }, + { + "id": 1474, + "nodeId": 4210104, + "nodeType": 4, + "nodeTypeName": "商店", + "param": 0 + }, + { + "id": 1475, + "nodeId": 4310104, + "nodeType": 4, + "nodeTypeName": "商店", + "param": 0 + }, + { + "id": 1476, + "nodeId": 4410104, + "nodeType": 4, + "nodeTypeName": "商店", + "param": 0 + }, + { + "id": 1477, + "nodeId": 4510104, + "nodeType": 4, + "nodeTypeName": "商店", + "param": 0 + }, + { + "id": 1478, + "nodeId": 4610104, + "nodeType": 4, + "nodeTypeName": "商店", + "param": 0 + }, + { + "id": 1479, + "nodeId": 4710104, + "nodeType": 4, + "nodeTypeName": "商店", + "param": 0 + }, + { + "id": 1480, + "nodeId": 4810104, + "nodeType": 4, + "nodeTypeName": "商店", + "param": 0 + }, + { + "id": 1481, + "nodeId": 5110104, + "nodeType": 5, + "nodeTypeName": "休整点", + "param": 0 + }, + { + "id": 1482, + "nodeId": 5210104, + "nodeType": 5, + "nodeTypeName": "休整点", + "param": 0 + }, + { + "id": 1483, + "nodeId": 5310104, + "nodeType": 5, + "nodeTypeName": "休整点", + "param": 0 + }, + { + "id": 1484, + "nodeId": 5410104, + "nodeType": 5, + "nodeTypeName": "休整点", + "param": 0 + }, + { + "id": 1485, + "nodeId": 5510104, + "nodeType": 5, + "nodeTypeName": "休整点", + "param": 0 + }, + { + "id": 1486, + "nodeId": 5610104, + "nodeType": 5, + "nodeTypeName": "休整点", + "param": 0 + }, + { + "id": 1487, + "nodeId": 5710104, + "nodeType": 5, + "nodeTypeName": "休整点", + "param": 0 + }, + { + "id": 1488, + "nodeId": 5810104, + "nodeType": 5, + "nodeTypeName": "休整点", + "param": 0 + }, + { + "id": 1489, + "nodeId": 6110104, + "nodeType": 6, + "nodeTypeName": "问号点", + "param": 1 + }, + { + "id": 1490, + "nodeId": 6210104, + "nodeType": 6, + "nodeTypeName": "问号点", + "param": 1 + }, + { + "id": 1491, + "nodeId": 6310104, + "nodeType": 6, + "nodeTypeName": "问号点", + "param": 1 + }, + { + "id": 1492, + "nodeId": 6410104, + "nodeType": 6, + "nodeTypeName": "问号点", + "param": 1 + }, + { + "id": 1493, + "nodeId": 6510104, + "nodeType": 6, + "nodeTypeName": "问号点", + "param": 1 + }, + { + "id": 1494, + "nodeId": 6610104, + "nodeType": 6, + "nodeTypeName": "问号点", + "param": 1 + }, + { + "id": 1495, + "nodeId": 6710104, + "nodeType": 6, + "nodeTypeName": "问号点", + "param": 1 + }, + { + "id": 1496, + "nodeId": 6810104, + "nodeType": 6, + "nodeTypeName": "问号点", + "param": 1 + }, + { + "id": 1497, + "nodeId": 1110105, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101110105 + }, + { + "id": 1498, + "nodeId": 1110205, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101110205 + }, + { + "id": 1499, + "nodeId": 1110305, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101110305 + }, + { + "id": 1500, + "nodeId": 1110405, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101110405 + }, + { + "id": 1501, + "nodeId": 1110505, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101110505 + }, + { + "id": 1502, + "nodeId": 1110605, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101110605 + }, + { + "id": 1503, + "nodeId": 1110705, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101110705 + }, + { + "id": 1504, + "nodeId": 1110805, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101110805 + }, + { + "id": 1505, + "nodeId": 1120105, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101120105 + }, + { + "id": 1506, + "nodeId": 1120205, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101120205 + }, + { + "id": 1507, + "nodeId": 1120305, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101120305 + }, + { + "id": 1508, + "nodeId": 1120405, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101120405 + }, + { + "id": 1509, + "nodeId": 1120505, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101120505 + }, + { + "id": 1510, + "nodeId": 1120605, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101120605 + }, + { + "id": 1511, + "nodeId": 1120705, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101120705 + }, + { + "id": 1512, + "nodeId": 1120805, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101120805 + }, + { + "id": 1513, + "nodeId": 1130105, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101130105 + }, + { + "id": 1514, + "nodeId": 1130205, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101130205 + }, + { + "id": 1515, + "nodeId": 1130305, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101130305 + }, + { + "id": 1516, + "nodeId": 1130405, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101130405 + }, + { + "id": 1517, + "nodeId": 1130505, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101130505 + }, + { + "id": 1518, + "nodeId": 1130605, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101130605 + }, + { + "id": 1519, + "nodeId": 1130705, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101130705 + }, + { + "id": 1520, + "nodeId": 1130805, + "nodeType": 1, + "nodeTypeName": "儒家试炼普通关", + "param": 101130805 + }, + { + "id": 1521, + "nodeId": 1210105, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104110105 + }, + { + "id": 1522, + "nodeId": 1210205, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104110205 + }, + { + "id": 1523, + "nodeId": 1210305, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104110305 + }, + { + "id": 1524, + "nodeId": 1210405, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104110405 + }, + { + "id": 1525, + "nodeId": 1210505, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104110505 + }, + { + "id": 1526, + "nodeId": 1210605, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104110605 + }, + { + "id": 1527, + "nodeId": 1210705, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104110705 + }, + { + "id": 1528, + "nodeId": 1210805, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104110805 + }, + { + "id": 1529, + "nodeId": 1220105, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104120105 + }, + { + "id": 1530, + "nodeId": 1220205, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104120205 + }, + { + "id": 1531, + "nodeId": 1220305, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104120305 + }, + { + "id": 1532, + "nodeId": 1220405, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104120405 + }, + { + "id": 1533, + "nodeId": 1220505, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104120505 + }, + { + "id": 1534, + "nodeId": 1220605, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104120605 + }, + { + "id": 1535, + "nodeId": 1220705, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104120705 + }, + { + "id": 1536, + "nodeId": 1220805, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104120805 + }, + { + "id": 1537, + "nodeId": 1230105, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104130105 + }, + { + "id": 1538, + "nodeId": 1230205, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104130205 + }, + { + "id": 1539, + "nodeId": 1230305, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104130305 + }, + { + "id": 1540, + "nodeId": 1230405, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104130405 + }, + { + "id": 1541, + "nodeId": 1230505, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104130505 + }, + { + "id": 1542, + "nodeId": 1230605, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104130605 + }, + { + "id": 1543, + "nodeId": 1230705, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104130705 + }, + { + "id": 1544, + "nodeId": 1230805, + "nodeType": 1, + "nodeTypeName": "道家试炼普通关", + "param": 104130805 + }, + { + "id": 1545, + "nodeId": 1310105, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109110105 + }, + { + "id": 1546, + "nodeId": 1310105, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109310105 + }, + { + "id": 1547, + "nodeId": 1310205, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109110205 + }, + { + "id": 1548, + "nodeId": 1310305, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109110305 + }, + { + "id": 1549, + "nodeId": 1310405, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109110405 + }, + { + "id": 1550, + "nodeId": 1310505, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109110505 + }, + { + "id": 1551, + "nodeId": 1310605, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109110605 + }, + { + "id": 1552, + "nodeId": 1310705, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109110705 + }, + { + "id": 1553, + "nodeId": 1310805, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109110805 + }, + { + "id": 1554, + "nodeId": 1320105, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109120105 + }, + { + "id": 1555, + "nodeId": 1320205, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109120205 + }, + { + "id": 1556, + "nodeId": 1320305, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109120305 + }, + { + "id": 1557, + "nodeId": 1320405, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109120405 + }, + { + "id": 1558, + "nodeId": 1320505, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109120505 + }, + { + "id": 1559, + "nodeId": 1320605, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109120605 + }, + { + "id": 1560, + "nodeId": 1320705, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109120705 + }, + { + "id": 1561, + "nodeId": 1320805, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109120805 + }, + { + "id": 1562, + "nodeId": 1330105, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109130105 + }, + { + "id": 1563, + "nodeId": 1330205, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109130205 + }, + { + "id": 1564, + "nodeId": 1330305, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109130305 + }, + { + "id": 1565, + "nodeId": 1330405, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109130405 + }, + { + "id": 1566, + "nodeId": 1330505, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109130505 + }, + { + "id": 1567, + "nodeId": 1330605, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109130605 + }, + { + "id": 1568, + "nodeId": 1330605, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109230605 + }, + { + "id": 1569, + "nodeId": 1330705, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109130705 + }, + { + "id": 1570, + "nodeId": 1330705, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109230705 + }, + { + "id": 1571, + "nodeId": 1330805, + "nodeType": 1, + "nodeTypeName": "墨家试炼普通关", + "param": 109130805 + }, + { + "id": 1572, + "nodeId": 1410105, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106110105 + }, + { + "id": 1573, + "nodeId": 1410205, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106110205 + }, + { + "id": 1574, + "nodeId": 1410305, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106110305 + }, + { + "id": 1575, + "nodeId": 1410405, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106110405 + }, + { + "id": 1576, + "nodeId": 1410505, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106110505 + }, + { + "id": 1577, + "nodeId": 1410605, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106110605 + }, + { + "id": 1578, + "nodeId": 1410705, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106110705 + }, + { + "id": 1579, + "nodeId": 1410805, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106110805 + }, + { + "id": 1580, + "nodeId": 1420105, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106120105 + }, + { + "id": 1581, + "nodeId": 1420205, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106120205 + }, + { + "id": 1582, + "nodeId": 1420305, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106120305 + }, + { + "id": 1583, + "nodeId": 1420405, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106120405 + }, + { + "id": 1584, + "nodeId": 1420505, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106120505 + }, + { + "id": 1585, + "nodeId": 1420605, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106120605 + }, + { + "id": 1586, + "nodeId": 1420705, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106120705 + }, + { + "id": 1587, + "nodeId": 1420805, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106120805 + }, + { + "id": 1588, + "nodeId": 1430105, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106130105 + }, + { + "id": 1589, + "nodeId": 1430205, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106130205 + }, + { + "id": 1590, + "nodeId": 1430305, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106130305 + }, + { + "id": 1591, + "nodeId": 1430405, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106130405 + }, + { + "id": 1592, + "nodeId": 1430505, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106130505 + }, + { + "id": 1593, + "nodeId": 1430605, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106130605 + }, + { + "id": 1594, + "nodeId": 1430705, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106130705 + }, + { + "id": 1595, + "nodeId": 1430805, + "nodeType": 1, + "nodeTypeName": "法家试炼普通关", + "param": 106130805 + }, + { + "id": 1596, + "nodeId": 1510105, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110110105 + }, + { + "id": 1597, + "nodeId": 1510205, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110110205 + }, + { + "id": 1598, + "nodeId": 1510305, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110110305 + }, + { + "id": 1599, + "nodeId": 1510405, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110110405 + }, + { + "id": 1600, + "nodeId": 1510505, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110110505 + }, + { + "id": 1601, + "nodeId": 1510605, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110110605 + }, + { + "id": 1602, + "nodeId": 1510705, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110110705 + }, + { + "id": 1603, + "nodeId": 1510805, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110110805 + }, + { + "id": 1604, + "nodeId": 1520105, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110120105 + }, + { + "id": 1605, + "nodeId": 1520205, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110120205 + }, + { + "id": 1606, + "nodeId": 1520305, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110120305 + }, + { + "id": 1607, + "nodeId": 1520405, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110120405 + }, + { + "id": 1608, + "nodeId": 1520505, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110120505 + }, + { + "id": 1609, + "nodeId": 1520605, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110120605 + }, + { + "id": 1610, + "nodeId": 1520705, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110120705 + }, + { + "id": 1611, + "nodeId": 1520805, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110120805 + }, + { + "id": 1612, + "nodeId": 1530105, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110130105 + }, + { + "id": 1613, + "nodeId": 1530205, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110130205 + }, + { + "id": 1614, + "nodeId": 1530305, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110130305 + }, + { + "id": 1615, + "nodeId": 1530405, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110130405 + }, + { + "id": 1616, + "nodeId": 1530505, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110130505 + }, + { + "id": 1617, + "nodeId": 1530605, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110130605 + }, + { + "id": 1618, + "nodeId": 1530705, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110130705 + }, + { + "id": 1619, + "nodeId": 1530805, + "nodeType": 1, + "nodeTypeName": "医家试炼普通关", + "param": 110130805 + }, + { + "id": 1620, + "nodeId": 1610105, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103110105 + }, + { + "id": 1621, + "nodeId": 1610205, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103110205 + }, + { + "id": 1622, + "nodeId": 1610305, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103110305 + }, + { + "id": 1623, + "nodeId": 1610405, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103110405 + }, + { + "id": 1624, + "nodeId": 1610505, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103110505 + }, + { + "id": 1625, + "nodeId": 1610605, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103110605 + }, + { + "id": 1626, + "nodeId": 1610705, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103110705 + }, + { + "id": 1627, + "nodeId": 1610805, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103110805 + }, + { + "id": 1628, + "nodeId": 1620105, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103120105 + }, + { + "id": 1629, + "nodeId": 1620205, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103120205 + }, + { + "id": 1630, + "nodeId": 1620305, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103120305 + }, + { + "id": 1631, + "nodeId": 1620405, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103120405 + }, + { + "id": 1632, + "nodeId": 1620505, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103120505 + }, + { + "id": 1633, + "nodeId": 1620605, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103120605 + }, + { + "id": 1634, + "nodeId": 1620705, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103120705 + }, + { + "id": 1635, + "nodeId": 1620805, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103120805 + }, + { + "id": 1636, + "nodeId": 1630105, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103130105 + }, + { + "id": 1637, + "nodeId": 1630205, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103130205 + }, + { + "id": 1638, + "nodeId": 1630305, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103130305 + }, + { + "id": 1639, + "nodeId": 1630405, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103130405 + }, + { + "id": 1640, + "nodeId": 1630505, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103130505 + }, + { + "id": 1641, + "nodeId": 1630605, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103130605 + }, + { + "id": 1642, + "nodeId": 1630705, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103130705 + }, + { + "id": 1643, + "nodeId": 1630805, + "nodeType": 1, + "nodeTypeName": "兵家试炼普通关", + "param": 103130805 + }, + { + "id": 1644, + "nodeId": 1710105, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102110105 + }, + { + "id": 1645, + "nodeId": 1710205, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102110205 + }, + { + "id": 1646, + "nodeId": 1710305, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102110305 + }, + { + "id": 1647, + "nodeId": 1710405, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102110405 + }, + { + "id": 1648, + "nodeId": 1710505, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102110505 + }, + { + "id": 1649, + "nodeId": 1710605, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102110605 + }, + { + "id": 1650, + "nodeId": 1710705, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102110705 + }, + { + "id": 1651, + "nodeId": 1710805, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102110805 + }, + { + "id": 1652, + "nodeId": 1720105, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102120105 + }, + { + "id": 1653, + "nodeId": 1720205, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102120205 + }, + { + "id": 1654, + "nodeId": 1720305, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102120305 + }, + { + "id": 1655, + "nodeId": 1720405, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102120405 + }, + { + "id": 1656, + "nodeId": 1720505, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102120505 + }, + { + "id": 1657, + "nodeId": 1720605, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102120605 + }, + { + "id": 1658, + "nodeId": 1720705, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102120705 + }, + { + "id": 1659, + "nodeId": 1720805, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102120805 + }, + { + "id": 1660, + "nodeId": 1730105, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102130105 + }, + { + "id": 1661, + "nodeId": 1730205, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102130205 + }, + { + "id": 1662, + "nodeId": 1730305, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102130305 + }, + { + "id": 1663, + "nodeId": 1730405, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102130405 + }, + { + "id": 1664, + "nodeId": 1730505, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102130505 + }, + { + "id": 1665, + "nodeId": 1730605, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102130605 + }, + { + "id": 1666, + "nodeId": 1730705, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102130705 + }, + { + "id": 1667, + "nodeId": 1730805, + "nodeType": 1, + "nodeTypeName": "阴阳家试炼普通关", + "param": 102130805 + }, + { + "id": 1668, + "nodeId": 1810105, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107110105 + }, + { + "id": 1669, + "nodeId": 1810205, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107110205 + }, + { + "id": 1670, + "nodeId": 1810305, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107110305 + }, + { + "id": 1671, + "nodeId": 1810405, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107110405 + }, + { + "id": 1672, + "nodeId": 1810505, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107110505 + }, + { + "id": 1673, + "nodeId": 1810605, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107110605 + }, + { + "id": 1674, + "nodeId": 1810705, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107110705 + }, + { + "id": 1675, + "nodeId": 1810805, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107110805 + }, + { + "id": 1676, + "nodeId": 1820105, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107120105 + }, + { + "id": 1677, + "nodeId": 1820205, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107120205 + }, + { + "id": 1678, + "nodeId": 1820305, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107120305 + }, + { + "id": 1679, + "nodeId": 1820405, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107120405 + }, + { + "id": 1680, + "nodeId": 1820505, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107120505 + }, + { + "id": 1681, + "nodeId": 1820605, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107120605 + }, + { + "id": 1682, + "nodeId": 1820705, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107120705 + }, + { + "id": 1683, + "nodeId": 1820805, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107120805 + }, + { + "id": 1684, + "nodeId": 1830105, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107130105 + }, + { + "id": 1685, + "nodeId": 1830205, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107130205 + }, + { + "id": 1686, + "nodeId": 1830305, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107130305 + }, + { + "id": 1687, + "nodeId": 1830405, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107130405 + }, + { + "id": 1688, + "nodeId": 1830505, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107130505 + }, + { + "id": 1689, + "nodeId": 1830605, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107130605 + }, + { + "id": 1690, + "nodeId": 1830705, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107130705 + }, + { + "id": 1691, + "nodeId": 1830805, + "nodeType": 1, + "nodeTypeName": "纵横家试炼普通关", + "param": 107130805 + }, + { + "id": 1692, + "nodeId": 2110105, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101210105 + }, + { + "id": 1693, + "nodeId": 2110205, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101210205 + }, + { + "id": 1694, + "nodeId": 2110305, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101210305 + }, + { + "id": 1695, + "nodeId": 2110405, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101210405 + }, + { + "id": 1696, + "nodeId": 2110505, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101210505 + }, + { + "id": 1697, + "nodeId": 2110605, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101210605 + }, + { + "id": 1698, + "nodeId": 2120105, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101220105 + }, + { + "id": 1699, + "nodeId": 2120205, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101220205 + }, + { + "id": 1700, + "nodeId": 2120305, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101220305 + }, + { + "id": 1701, + "nodeId": 2120405, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101220405 + }, + { + "id": 1702, + "nodeId": 2120505, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101220505 + }, + { + "id": 1703, + "nodeId": 2120605, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101220605 + }, + { + "id": 1704, + "nodeId": 2130105, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101230105 + }, + { + "id": 1705, + "nodeId": 2130205, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101230205 + }, + { + "id": 1706, + "nodeId": 2130305, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101230305 + }, + { + "id": 1707, + "nodeId": 2130405, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101230405 + }, + { + "id": 1708, + "nodeId": 2130505, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101230505 + }, + { + "id": 1709, + "nodeId": 2130605, + "nodeType": 2, + "nodeTypeName": "儒家试炼精英关", + "param": 101230605 + }, + { + "id": 1710, + "nodeId": 2210105, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104210105 + }, + { + "id": 1711, + "nodeId": 2210205, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104210205 + }, + { + "id": 1712, + "nodeId": 2210305, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104210305 + }, + { + "id": 1713, + "nodeId": 2210405, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104210405 + }, + { + "id": 1714, + "nodeId": 2210505, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104210505 + }, + { + "id": 1715, + "nodeId": 2210605, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104210605 + }, + { + "id": 1716, + "nodeId": 2220105, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104220105 + }, + { + "id": 1717, + "nodeId": 2220205, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104220205 + }, + { + "id": 1718, + "nodeId": 2220305, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104220305 + }, + { + "id": 1719, + "nodeId": 2220405, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104220405 + }, + { + "id": 1720, + "nodeId": 2220505, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104220505 + }, + { + "id": 1721, + "nodeId": 2220605, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104220605 + }, + { + "id": 1722, + "nodeId": 2230105, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104230105 + }, + { + "id": 1723, + "nodeId": 2230205, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104230205 + }, + { + "id": 1724, + "nodeId": 2230305, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104230305 + }, + { + "id": 1725, + "nodeId": 2230405, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104230405 + }, + { + "id": 1726, + "nodeId": 2230505, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104230505 + }, + { + "id": 1727, + "nodeId": 2230605, + "nodeType": 2, + "nodeTypeName": "道家试炼精英关", + "param": 104230605 + }, + { + "id": 1728, + "nodeId": 2310105, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109210105 + }, + { + "id": 1729, + "nodeId": 2310205, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109210205 + }, + { + "id": 1730, + "nodeId": 2310305, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109210305 + }, + { + "id": 1731, + "nodeId": 2310405, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109210405 + }, + { + "id": 1732, + "nodeId": 2310505, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109210505 + }, + { + "id": 1733, + "nodeId": 2310605, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109210605 + }, + { + "id": 1734, + "nodeId": 2310705, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109210705 + }, + { + "id": 1735, + "nodeId": 2320105, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109220105 + }, + { + "id": 1736, + "nodeId": 2320205, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109220205 + }, + { + "id": 1737, + "nodeId": 2320305, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109220305 + }, + { + "id": 1738, + "nodeId": 2320405, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109220405 + }, + { + "id": 1739, + "nodeId": 2320505, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109220505 + }, + { + "id": 1740, + "nodeId": 2320605, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109220605 + }, + { + "id": 1741, + "nodeId": 2320705, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109220705 + }, + { + "id": 1742, + "nodeId": 2330105, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109230105 + }, + { + "id": 1743, + "nodeId": 2330205, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109230205 + }, + { + "id": 1744, + "nodeId": 2330305, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109230305 + }, + { + "id": 1745, + "nodeId": 2330405, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109230405 + }, + { + "id": 1746, + "nodeId": 2330505, + "nodeType": 2, + "nodeTypeName": "墨家试炼精英关", + "param": 109230405 + }, + { + "id": 1747, + "nodeId": 2410105, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106210105 + }, + { + "id": 1748, + "nodeId": 2410205, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106210205 + }, + { + "id": 1749, + "nodeId": 2410305, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106210305 + }, + { + "id": 1750, + "nodeId": 2410405, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106210405 + }, + { + "id": 1751, + "nodeId": 2410505, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106210505 + }, + { + "id": 1752, + "nodeId": 2410605, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106210605 + }, + { + "id": 1753, + "nodeId": 2420105, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106220105 + }, + { + "id": 1754, + "nodeId": 2420205, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106220205 + }, + { + "id": 1755, + "nodeId": 2420305, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106220305 + }, + { + "id": 1756, + "nodeId": 2420405, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106220405 + }, + { + "id": 1757, + "nodeId": 2420505, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106220505 + }, + { + "id": 1758, + "nodeId": 2420605, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106220605 + }, + { + "id": 1759, + "nodeId": 2430105, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106230105 + }, + { + "id": 1760, + "nodeId": 2430205, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106230205 + }, + { + "id": 1761, + "nodeId": 2430305, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106230305 + }, + { + "id": 1762, + "nodeId": 2430405, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106230405 + }, + { + "id": 1763, + "nodeId": 2430505, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106230505 + }, + { + "id": 1764, + "nodeId": 2430605, + "nodeType": 2, + "nodeTypeName": "法家试炼精英关", + "param": 106230605 + }, + { + "id": 1765, + "nodeId": 2510105, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110210105 + }, + { + "id": 1766, + "nodeId": 2510205, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110210205 + }, + { + "id": 1767, + "nodeId": 2510305, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110210305 + }, + { + "id": 1768, + "nodeId": 2510405, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110210405 + }, + { + "id": 1769, + "nodeId": 2510505, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110210505 + }, + { + "id": 1770, + "nodeId": 2510605, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110210605 + }, + { + "id": 1771, + "nodeId": 2510705, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110210705 + }, + { + "id": 1772, + "nodeId": 2520105, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110220105 + }, + { + "id": 1773, + "nodeId": 2520205, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110220205 + }, + { + "id": 1774, + "nodeId": 2520305, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110220305 + }, + { + "id": 1775, + "nodeId": 2520405, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110220405 + }, + { + "id": 1776, + "nodeId": 2520505, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110220505 + }, + { + "id": 1777, + "nodeId": 2520605, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110220605 + }, + { + "id": 1778, + "nodeId": 2520705, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110220705 + }, + { + "id": 1779, + "nodeId": 2530105, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110230105 + }, + { + "id": 1780, + "nodeId": 2530205, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110230205 + }, + { + "id": 1781, + "nodeId": 2530305, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110230305 + }, + { + "id": 1782, + "nodeId": 2530405, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110230405 + }, + { + "id": 1783, + "nodeId": 2530505, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110230505 + }, + { + "id": 1784, + "nodeId": 2530605, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110230605 + }, + { + "id": 1785, + "nodeId": 2530705, + "nodeType": 2, + "nodeTypeName": "医家试炼精英关", + "param": 110230705 + }, + { + "id": 1786, + "nodeId": 2610105, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103210105 + }, + { + "id": 1787, + "nodeId": 2610205, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103210205 + }, + { + "id": 1788, + "nodeId": 2610305, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103210305 + }, + { + "id": 1789, + "nodeId": 2610405, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103210405 + }, + { + "id": 1790, + "nodeId": 2610505, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103210505 + }, + { + "id": 1791, + "nodeId": 2620105, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103220105 + }, + { + "id": 1792, + "nodeId": 2620205, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103220205 + }, + { + "id": 1793, + "nodeId": 2620305, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103220305 + }, + { + "id": 1794, + "nodeId": 2620405, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103220405 + }, + { + "id": 1795, + "nodeId": 2620505, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103220505 + }, + { + "id": 1796, + "nodeId": 2630105, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103230105 + }, + { + "id": 1797, + "nodeId": 2630205, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103230205 + }, + { + "id": 1798, + "nodeId": 2630305, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103230305 + }, + { + "id": 1799, + "nodeId": 2630405, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103230405 + }, + { + "id": 1800, + "nodeId": 2630505, + "nodeType": 2, + "nodeTypeName": "兵家试炼精英关", + "param": 103230505 + }, + { + "id": 1801, + "nodeId": 2710105, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102210105 + }, + { + "id": 1802, + "nodeId": 2710205, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102210205 + }, + { + "id": 1803, + "nodeId": 2710305, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102210305 + }, + { + "id": 1804, + "nodeId": 2710405, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102210405 + }, + { + "id": 1805, + "nodeId": 2710505, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102210505 + }, + { + "id": 1806, + "nodeId": 2720105, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102220105 + }, + { + "id": 1807, + "nodeId": 2720205, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102220205 + }, + { + "id": 1808, + "nodeId": 2720305, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102220305 + }, + { + "id": 1809, + "nodeId": 2720405, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102220405 + }, + { + "id": 1810, + "nodeId": 2720505, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102220505 + }, + { + "id": 1811, + "nodeId": 2730105, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102230105 + }, + { + "id": 1812, + "nodeId": 2730205, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102230205 + }, + { + "id": 1813, + "nodeId": 2730305, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102230305 + }, + { + "id": 1814, + "nodeId": 2730405, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102230405 + }, + { + "id": 1815, + "nodeId": 2730505, + "nodeType": 2, + "nodeTypeName": "阴阳家试炼精英关", + "param": 102230505 + }, + { + "id": 1816, + "nodeId": 2810105, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107210105 + }, + { + "id": 1817, + "nodeId": 2810205, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107210205 + }, + { + "id": 1818, + "nodeId": 2810305, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107210305 + }, + { + "id": 1819, + "nodeId": 2810405, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107210405 + }, + { + "id": 1820, + "nodeId": 2810505, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107210505 + }, + { + "id": 1821, + "nodeId": 2820105, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107220105 + }, + { + "id": 1822, + "nodeId": 2820205, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107220205 + }, + { + "id": 1823, + "nodeId": 2820305, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107220305 + }, + { + "id": 1824, + "nodeId": 2820405, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107220405 + }, + { + "id": 1825, + "nodeId": 2820505, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107220505 + }, + { + "id": 1826, + "nodeId": 2830105, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107230105 + }, + { + "id": 1827, + "nodeId": 2830205, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107230205 + }, + { + "id": 1828, + "nodeId": 2830305, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107230305 + }, + { + "id": 1829, + "nodeId": 2830405, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107230405 + }, + { + "id": 1830, + "nodeId": 2830505, + "nodeType": 2, + "nodeTypeName": "纵横家试炼精英关", + "param": 107230505 + }, + { + "id": 1831, + "nodeId": 7110105, + "nodeType": 7, + "nodeTypeName": "儒家试炼boss", + "param": 101310105 + }, + { + "id": 1832, + "nodeId": 7210105, + "nodeType": 7, + "nodeTypeName": "道家试炼boss", + "param": 104310105 + }, + { + "id": 1833, + "nodeId": 7330505, + "nodeType": 7, + "nodeTypeName": "墨家试炼boss", + "param": 109230505 + }, + { + "id": 1834, + "nodeId": 7410105, + "nodeType": 7, + "nodeTypeName": "法家试炼boss", + "param": 106310105 + }, + { + "id": 1835, + "nodeId": 7510105, + "nodeType": 7, + "nodeTypeName": "医家试炼boss", + "param": 110310105 + }, + { + "id": 1836, + "nodeId": 7610105, + "nodeType": 7, + "nodeTypeName": "兵家试炼boss", + "param": 103310105 + }, + { + "id": 1837, + "nodeId": 7710105, + "nodeType": 7, + "nodeTypeName": "阴阳家试炼boss", + "param": 102310105 + }, + { + "id": 1838, + "nodeId": 7810105, + "nodeType": 7, + "nodeTypeName": "纵横家试炼boss", + "param": 107310105 + }, + { + "id": 1839, + "nodeId": 3110105, + "nodeType": 3, + "nodeTypeName": "挑战点", + "param": 0 + }, + { + "id": 1840, + "nodeId": 3210105, + "nodeType": 3, + "nodeTypeName": "挑战点", + "param": 0 + }, + { + "id": 1841, + "nodeId": 3310105, + "nodeType": 3, + "nodeTypeName": "挑战点", + "param": 0 + }, + { + "id": 1842, + "nodeId": 3410105, + "nodeType": 3, + "nodeTypeName": "挑战点", + "param": 0 + }, + { + "id": 1843, + "nodeId": 3510105, + "nodeType": 3, + "nodeTypeName": "挑战点", + "param": 0 + }, + { + "id": 1844, + "nodeId": 3610105, + "nodeType": 3, + "nodeTypeName": "挑战点", + "param": 0 + }, + { + "id": 1845, + "nodeId": 3710105, + "nodeType": 3, + "nodeTypeName": "挑战点", + "param": 0 + }, + { + "id": 1846, + "nodeId": 3810105, + "nodeType": 3, + "nodeTypeName": "挑战点", + "param": 0 + }, + { + "id": 1847, + "nodeId": 4110105, + "nodeType": 4, + "nodeTypeName": "商店", + "param": 0 + }, + { + "id": 1848, + "nodeId": 4210105, + "nodeType": 4, + "nodeTypeName": "商店", + "param": 0 + }, + { + "id": 1849, + "nodeId": 4310105, + "nodeType": 4, + "nodeTypeName": "商店", + "param": 0 + }, + { + "id": 1850, + "nodeId": 4410105, + "nodeType": 4, + "nodeTypeName": "商店", + "param": 0 + }, + { + "id": 1851, + "nodeId": 4510105, + "nodeType": 4, + "nodeTypeName": "商店", + "param": 0 + }, + { + "id": 1852, + "nodeId": 4610105, + "nodeType": 4, + "nodeTypeName": "商店", + "param": 0 + }, + { + "id": 1853, + "nodeId": 4710105, + "nodeType": 4, + "nodeTypeName": "商店", + "param": 0 + }, + { + "id": 1854, + "nodeId": 4810105, + "nodeType": 4, + "nodeTypeName": "商店", + "param": 0 + }, + { + "id": 1855, + "nodeId": 5110105, + "nodeType": 5, + "nodeTypeName": "休整点", + "param": 0 + }, + { + "id": 1856, + "nodeId": 5210105, + "nodeType": 5, + "nodeTypeName": "休整点", + "param": 0 + }, + { + "id": 1857, + "nodeId": 5310105, + "nodeType": 5, + "nodeTypeName": "休整点", + "param": 0 + }, + { + "id": 1858, + "nodeId": 5410105, + "nodeType": 5, + "nodeTypeName": "休整点", + "param": 0 + }, + { + "id": 1859, + "nodeId": 5510105, + "nodeType": 5, + "nodeTypeName": "休整点", + "param": 0 + }, + { + "id": 1860, + "nodeId": 5610105, + "nodeType": 5, + "nodeTypeName": "休整点", + "param": 0 + }, + { + "id": 1861, + "nodeId": 5710105, + "nodeType": 5, + "nodeTypeName": "休整点", + "param": 0 + }, + { + "id": 1862, + "nodeId": 5810105, + "nodeType": 5, + "nodeTypeName": "休整点", + "param": 0 + }, + { + "id": 1863, + "nodeId": 6110105, + "nodeType": 6, + "nodeTypeName": "问号点", + "param": 1 + }, + { + "id": 1864, + "nodeId": 6210105, + "nodeType": 6, + "nodeTypeName": "问号点", + "param": 1 + }, + { + "id": 1865, + "nodeId": 6310105, + "nodeType": 6, + "nodeTypeName": "问号点", + "param": 1 + }, + { + "id": 1866, + "nodeId": 6410105, + "nodeType": 6, + "nodeTypeName": "问号点", + "param": 1 + }, + { + "id": 1867, + "nodeId": 6510105, + "nodeType": 6, + "nodeTypeName": "问号点", + "param": 1 + }, + { + "id": 1868, + "nodeId": 6610105, + "nodeType": 6, + "nodeTypeName": "问号点", + "param": 1 + }, + { + "id": 1869, + "nodeId": 6710105, + "nodeType": 6, + "nodeTypeName": "问号点", + "param": 1 + }, + { + "id": 1870, + "nodeId": 6810105, + "nodeType": 6, + "nodeTypeName": "问号点", + "param": 1 + } +] \ No newline at end of file diff --git a/shared/resource/jsons/dic_rougeNodeType.json b/shared/resource/jsons/dic_rougeNodeType.json new file mode 100644 index 000000000..eca2e81cb --- /dev/null +++ b/shared/resource/jsons/dic_rougeNodeType.json @@ -0,0 +1,58 @@ +[ + { + "id": 1, + "nodeType": 1, + "name": "ORDINARY", + "string": "普通关", + "iconName": "putongguan" + }, + { + "id": 2, + "nodeType": 2, + "name": "ELITE", + "string": "精英关", + "iconName": "jingyingguan" + }, + { + "id": 3, + "nodeType": 3, + "name": "CHALLENGE", + "string": "挑战关", + "iconName": "tiaozhandian" + }, + { + "id": 4, + "nodeType": 4, + "name": "SHOP", + "string": "试炼商店", + "iconName": "shilianshangdian" + }, + { + "id": 5, + "nodeType": 5, + "name": "REST_POINT", + "string": "休整点", + "iconName": "xiuzhengdian" + }, + { + "id": 6, + "nodeType": 6, + "name": "QUEST_POINT", + "string": "问号点", + "iconName": "wenhaodian" + }, + { + "id": 7, + "nodeType": 7, + "name": "BOSS", + "string": "boss关", + "iconName": "BOSS" + }, + { + "id": 8, + "nodeType": 8, + "name": "EVENT", + "string": "事件", + "iconName": "&" + } +] \ No newline at end of file diff --git a/shared/resource/jsons/dic_rougeOption.json b/shared/resource/jsons/dic_rougeOption.json new file mode 100644 index 000000000..ded1d47af --- /dev/null +++ b/shared/resource/jsons/dic_rougeOption.json @@ -0,0 +1,218 @@ +[ + { + "id": 1, + "randomEventId": 1, + "optionGroup": 1, + "title": "名字是七个字1", + "content": "阿巴阿巴", + "index": 1, + "text": 0, + "afterGroup": 2, + "holyCardPlan": "&", + "collectReward": "31002&50" + }, + { + "id": 2, + "randomEventId": 1, + "optionGroup": 1, + "title": "名字是七个字1", + "content": "阿巴阿巴", + "index": 2, + "text": 0, + "afterGroup": 3, + "holyCardPlan": "&", + "collectReward": "31002&50" + }, + { + "id": 3, + "randomEventId": 1, + "optionGroup": 1, + "title": "名字是七个字1", + "content": "阿巴阿巴", + "index": 3, + "text": 0, + "afterGroup": 2, + "holyCardPlan": "&", + "collectReward": "31002&50" + }, + { + "id": 4, + "randomEventId": 1, + "optionGroup": 2, + "title": "名字是七个字2", + "content": "阿巴阿巴", + "index": 1, + "text": 0, + "afterGroup": 4, + "holyCardPlan": "&", + "collectReward": "31002&100" + }, + { + "id": 5, + "randomEventId": 1, + "optionGroup": 2, + "title": "名字是七个字2", + "content": "阿巴阿巴", + "index": 2, + "text": 0, + "afterGroup": 4, + "holyCardPlan": "&", + "collectReward": "31002&100" + }, + { + "id": 6, + "randomEventId": 1, + "optionGroup": 2, + "title": "名字是七个字2", + "content": "阿巴阿巴", + "index": 3, + "text": 0, + "afterGroup": 4, + "holyCardPlan": "&", + "collectReward": "31002&100" + }, + { + "id": 7, + "randomEventId": 1, + "optionGroup": 3, + "title": "名字是七个字3", + "content": "阿巴阿巴", + "index": 1, + "text": 0, + "afterGroup": 4, + "holyCardPlan": "&", + "collectReward": "31002&200" + }, + { + "id": 8, + "randomEventId": 1, + "optionGroup": 3, + "title": "名字是七个字3", + "content": "阿巴阿巴", + "index": 2, + "text": 0, + "afterGroup": 4, + "holyCardPlan": "&", + "collectReward": "31002&200" + }, + { + "id": 9, + "randomEventId": 1, + "optionGroup": 3, + "title": "名字是七个字3", + "content": "阿巴阿巴", + "index": 3, + "text": 0, + "afterGroup": 4, + "holyCardPlan": "&", + "collectReward": "31002&200" + }, + { + "id": 10, + "randomEventId": 1, + "optionGroup": 4, + "title": "名字是七个字4", + "content": "阿巴阿巴", + "index": 1, + "text": 0, + "afterGroup": 5, + "holyCardPlan": "&", + "collectReward": "31002&300" + }, + { + "id": 11, + "randomEventId": 1, + "optionGroup": 4, + "title": "名字是七个字4", + "content": "阿巴阿巴", + "index": 2, + "text": 0, + "afterGroup": 0, + "holyCardPlan": 1, + "collectReward": "31002&300" + }, + { + "id": 12, + "randomEventId": 1, + "optionGroup": 4, + "title": "名字是七个字4", + "content": "阿巴阿巴", + "index": 3, + "text": 0, + "afterGroup": 0, + "holyCardPlan": 1, + "collectReward": "31002&300" + }, + { + "id": 13, + "randomEventId": 1, + "optionGroup": 5, + "title": "名字是七个字5", + "content": "阿巴阿巴", + "index": 1, + "text": 0, + "afterGroup": 0, + "holyCardPlan": 2, + "collectReward": "31002&500" + }, + { + "id": 14, + "randomEventId": 1, + "optionGroup": 5, + "title": "名字是七个字5", + "content": "阿巴阿巴", + "index": 2, + "text": 0, + "afterGroup": 0, + "holyCardPlan": 2, + "collectReward": "31002&500" + }, + { + "id": 15, + "randomEventId": 1, + "optionGroup": 5, + "title": "名字是七个字5", + "content": "阿巴阿巴", + "index": 3, + "text": 0, + "afterGroup": 0, + "holyCardPlan": 2, + "collectReward": "31002&500" + }, + { + "id": 16, + "randomEventId": 2, + "optionGroup": 1, + "title": "名字是七个字1", + "content": "阿巴阿巴", + "index": 1, + "text": 0, + "afterGroup": 0, + "holyCardPlan": 1, + "collectReward": "31002&50" + }, + { + "id": 17, + "randomEventId": 2, + "optionGroup": 1, + "title": "名字是七个字1", + "content": "阿巴阿巴", + "index": 2, + "text": 0, + "afterGroup": 0, + "holyCardPlan": 1, + "collectReward": "31002&50" + }, + { + "id": 18, + "randomEventId": 2, + "optionGroup": 1, + "title": "名字是七个字1", + "content": "阿巴阿巴", + "index": 3, + "text": 0, + "afterGroup": 0, + "holyCardPlan": 1, + "collectReward": "31002&50" + } +] \ No newline at end of file diff --git a/shared/resource/jsons/dic_rougeOptionGroup.json b/shared/resource/jsons/dic_rougeOptionGroup.json new file mode 100644 index 000000000..82564115f --- /dev/null +++ b/shared/resource/jsons/dic_rougeOptionGroup.json @@ -0,0 +1,50 @@ +[ + { + "id": 1, + "optionGroup": 1, + "title": "梦境", + "content": 0, + "imageName": "tu_luori", + "collectReward": "31002&50" + }, + { + "id": 2, + "optionGroup": 2, + "title": "虚构历史", + "content": 0, + "imageName": "tu_luori", + "collectReward": "31002&100" + }, + { + "id": 3, + "optionGroup": 3, + "title": "名字是七个字3", + "content": "阿巴阿巴", + "imageName": "tu_milin", + "collectReward": "31002&150" + }, + { + "id": 4, + "optionGroup": 4, + "title": "名字是七个字4", + "content": "阿巴阿巴", + "imageName": "tu_pubu", + "collectReward": "31002&200" + }, + { + "id": 5, + "optionGroup": 5, + "title": "名字是七个字5", + "content": "阿巴阿巴", + "imageName": "tu_pubu", + "collectReward": "31002&250" + }, + { + "id": 6, + "optionGroup": 6, + "title": "名字是七个字6", + "content": "阿巴阿巴", + "imageName": "tu_shamo", + "collectReward": "31002&300" + } +] \ No newline at end of file diff --git a/shared/resource/jsons/dic_rougeOptionPlan.json b/shared/resource/jsons/dic_rougeOptionPlan.json new file mode 100644 index 000000000..ea01e4544 --- /dev/null +++ b/shared/resource/jsons/dic_rougeOptionPlan.json @@ -0,0 +1,14 @@ +[ + { + "id": 1, + "planId": 1, + "randomEventId": 1, + "weight": 1 + }, + { + "id": 2, + "planId": 1, + "randomEventId": 2, + "weight": 1 + } +] \ No newline at end of file diff --git a/shared/resource/jsons/dic_rougePassiveCard.json b/shared/resource/jsons/dic_rougePassiveCard.json new file mode 100644 index 000000000..46a8a90fa --- /dev/null +++ b/shared/resource/jsons/dic_rougePassiveCard.json @@ -0,0 +1,3746 @@ +[ + { + "id": 11311, + "group": 131, + "lv": 1, + "quality": 3, + "authorType": 1, + "seid": 3011101311, + "passiveLabel": 1, + "holyLabel": 1, + "strengthConsume": 50, + "price": 30, + "getLimit": 1 + }, + { + "id": 11321, + "group": 132, + "lv": 1, + "quality": 3, + "authorType": 1, + "seid": 3011102311, + "passiveLabel": 1, + "holyLabel": 1, + "strengthConsume": 50, + "price": 30, + "getLimit": 1 + }, + { + "id": 11331, + "group": 133, + "lv": 1, + "quality": 3, + "authorType": 1, + "seid": 3011103311, + "passiveLabel": 1, + "holyLabel": 1, + "strengthConsume": 50, + "price": 30, + "getLimit": 2 + }, + { + "id": 11341, + "group": 134, + "lv": 1, + "quality": 3, + "authorType": 1, + "seid": 3011104311, + "passiveLabel": 1, + "holyLabel": 1, + "strengthConsume": 50, + "price": 30, + "getLimit": 2 + }, + { + "id": 11312, + "group": 131, + "lv": 2, + "quality": 3, + "authorType": 1, + "seid": 3011201311, + "passiveLabel": 1, + "holyLabel": 1, + "strengthConsume": 0, + "price": 30, + "getLimit": 1 + }, + { + "id": 11322, + "group": 132, + "lv": 2, + "quality": 3, + "authorType": 1, + "seid": 3011202311, + "passiveLabel": 1, + "holyLabel": 1, + "strengthConsume": 0, + "price": 30, + "getLimit": 1 + }, + { + "id": 11332, + "group": 133, + "lv": 2, + "quality": 3, + "authorType": 1, + "seid": 3011203311, + "passiveLabel": 1, + "holyLabel": 1, + "strengthConsume": 0, + "price": 30, + "getLimit": 2 + }, + { + "id": 11342, + "group": 134, + "lv": 2, + "quality": 3, + "authorType": 1, + "seid": 3011204311, + "passiveLabel": 1, + "holyLabel": 1, + "strengthConsume": 0, + "price": 30, + "getLimit": 2 + }, + { + "id": 11211, + "group": 121, + "lv": 1, + "quality": 2, + "authorType": 1, + "seid": 3012101311, + "passiveLabel": 1, + "holyLabel": 1, + "strengthConsume": 30, + "price": 20, + "getLimit": 1 + }, + { + "id": 11221, + "group": 122, + "lv": 1, + "quality": 2, + "authorType": 1, + "seid": 3012102311, + "passiveLabel": 1, + "holyLabel": 1, + "strengthConsume": 30, + "price": 20, + "getLimit": 1 + }, + { + "id": 11231, + "group": 123, + "lv": 1, + "quality": 2, + "authorType": 1, + "seid": 3012103311, + "passiveLabel": 1, + "holyLabel": 1, + "strengthConsume": 30, + "price": 20, + "getLimit": 2 + }, + { + "id": 11241, + "group": 124, + "lv": 1, + "quality": 2, + "authorType": 1, + "seid": 3012104311, + "passiveLabel": 1, + "holyLabel": 1, + "strengthConsume": 30, + "price": 20, + "getLimit": 2 + }, + { + "id": 11251, + "group": 125, + "lv": 1, + "quality": 2, + "authorType": 1, + "seid": 3012105311, + "passiveLabel": 1, + "holyLabel": 1, + "strengthConsume": 30, + "price": 20, + "getLimit": 1 + }, + { + "id": 11261, + "group": 126, + "lv": 1, + "quality": 2, + "authorType": 1, + "seid": 3012106311, + "passiveLabel": 1, + "holyLabel": 1, + "strengthConsume": 30, + "price": 20, + "getLimit": 1 + }, + { + "id": 11212, + "group": 121, + "lv": 2, + "quality": 2, + "authorType": 1, + "seid": 3012201311, + "passiveLabel": 1, + "holyLabel": 1, + "strengthConsume": 0, + "price": 20, + "getLimit": 2 + }, + { + "id": 11222, + "group": 122, + "lv": 2, + "quality": 2, + "authorType": 1, + "seid": 3012202311, + "passiveLabel": 1, + "holyLabel": 1, + "strengthConsume": 0, + "price": 20, + "getLimit": 2 + }, + { + "id": 11232, + "group": 123, + "lv": 2, + "quality": 2, + "authorType": 1, + "seid": 3012203311, + "passiveLabel": 1, + "holyLabel": 1, + "strengthConsume": 0, + "price": 20, + "getLimit": 1 + }, + { + "id": 11242, + "group": 124, + "lv": 2, + "quality": 2, + "authorType": 1, + "seid": 3012204311, + "passiveLabel": 1, + "holyLabel": 1, + "strengthConsume": 0, + "price": 20, + "getLimit": 1 + }, + { + "id": 11252, + "group": 125, + "lv": 2, + "quality": 2, + "authorType": 1, + "seid": 3012205311, + "passiveLabel": 1, + "holyLabel": 1, + "strengthConsume": 0, + "price": 20, + "getLimit": 2 + }, + { + "id": 11262, + "group": 126, + "lv": 2, + "quality": 2, + "authorType": 1, + "seid": 3012206311, + "passiveLabel": 1, + "holyLabel": 1, + "strengthConsume": 0, + "price": 20, + "getLimit": 2 + }, + { + "id": 11111, + "group": 111, + "lv": 1, + "quality": 1, + "authorType": 1, + "seid": 3013101311, + "passiveLabel": 1, + "holyLabel": 1, + "strengthConsume": 10, + "price": 10, + "getLimit": 1 + }, + { + "id": 11121, + "group": 112, + "lv": 1, + "quality": 1, + "authorType": 1, + "seid": 3013102311, + "passiveLabel": 1, + "holyLabel": 1, + "strengthConsume": 10, + "price": 10, + "getLimit": 1 + }, + { + "id": 11131, + "group": 113, + "lv": 1, + "quality": 1, + "authorType": 1, + "seid": 3013103311, + "passiveLabel": 1, + "holyLabel": 1, + "strengthConsume": 10, + "price": 10, + "getLimit": 2 + }, + { + "id": 11141, + "group": 114, + "lv": 1, + "quality": 1, + "authorType": 1, + "seid": 3013104311, + "passiveLabel": 1, + "holyLabel": 1, + "strengthConsume": 10, + "price": 10, + "getLimit": 2 + }, + { + "id": 11151, + "group": 115, + "lv": 1, + "quality": 1, + "authorType": 1, + "seid": 3013105311, + "passiveLabel": 1, + "holyLabel": 1, + "strengthConsume": 10, + "price": 10, + "getLimit": 1 + }, + { + "id": 11161, + "group": 116, + "lv": 1, + "quality": 1, + "authorType": 1, + "seid": 3013106311, + "passiveLabel": 1, + "holyLabel": 1, + "strengthConsume": 10, + "price": 10, + "getLimit": 1 + }, + { + "id": 11171, + "group": 117, + "lv": 1, + "quality": 1, + "authorType": 1, + "seid": 3013107311, + "passiveLabel": 1, + "holyLabel": 1, + "strengthConsume": 10, + "price": 10, + "getLimit": 2 + }, + { + "id": 11181, + "group": 118, + "lv": 1, + "quality": 1, + "authorType": 1, + "seid": 3013108311, + "passiveLabel": 1, + "holyLabel": 1, + "strengthConsume": 10, + "price": 10, + "getLimit": 2 + }, + { + "id": 11112, + "group": 111, + "lv": 2, + "quality": 1, + "authorType": 1, + "seid": 3013201311, + "passiveLabel": 1, + "holyLabel": 1, + "strengthConsume": 0, + "price": 10, + "getLimit": 1 + }, + { + "id": 11122, + "group": 112, + "lv": 2, + "quality": 1, + "authorType": 1, + "seid": 3013202311, + "passiveLabel": 1, + "holyLabel": 1, + "strengthConsume": 0, + "price": 10, + "getLimit": 1 + }, + { + "id": 11132, + "group": 113, + "lv": 2, + "quality": 1, + "authorType": 1, + "seid": 3013203311, + "passiveLabel": 1, + "holyLabel": 1, + "strengthConsume": 0, + "price": 10, + "getLimit": 2 + }, + { + "id": 11142, + "group": 114, + "lv": 2, + "quality": 1, + "authorType": 1, + "seid": 3013204311, + "passiveLabel": 1, + "holyLabel": 1, + "strengthConsume": 0, + "price": 10, + "getLimit": 2 + }, + { + "id": 11152, + "group": 115, + "lv": 2, + "quality": 1, + "authorType": 1, + "seid": 3013205311, + "passiveLabel": 1, + "holyLabel": 1, + "strengthConsume": 0, + "price": 10, + "getLimit": 1 + }, + { + "id": 11162, + "group": 116, + "lv": 2, + "quality": 1, + "authorType": 1, + "seid": 3013206311, + "passiveLabel": 1, + "holyLabel": 1, + "strengthConsume": 0, + "price": 10, + "getLimit": 1 + }, + { + "id": 11172, + "group": 117, + "lv": 2, + "quality": 1, + "authorType": 1, + "seid": 3013207311, + "passiveLabel": 1, + "holyLabel": 1, + "strengthConsume": 0, + "price": 10, + "getLimit": 2 + }, + { + "id": 11182, + "group": 118, + "lv": 2, + "quality": 1, + "authorType": 1, + "seid": 3013208311, + "passiveLabel": 1, + "holyLabel": 1, + "strengthConsume": 0, + "price": 10, + "getLimit": 2 + }, + { + "id": 12311, + "group": 231, + "lv": 1, + "quality": 3, + "authorType": 7, + "seid": 3021101311, + "passiveLabel": 7, + "holyLabel": 7, + "strengthConsume": 50, + "price": 30, + "getLimit": 1 + }, + { + "id": 12321, + "group": 232, + "lv": 1, + "quality": 3, + "authorType": 7, + "seid": 3021102311, + "passiveLabel": 7, + "holyLabel": 7, + "strengthConsume": 50, + "price": 30, + "getLimit": 1 + }, + { + "id": 12331, + "group": 233, + "lv": 1, + "quality": 3, + "authorType": 7, + "seid": 3021103311, + "passiveLabel": 7, + "holyLabel": 7, + "strengthConsume": 50, + "price": 30, + "getLimit": 2 + }, + { + "id": 12341, + "group": 234, + "lv": 1, + "quality": 3, + "authorType": 7, + "seid": 3021104311, + "passiveLabel": 7, + "holyLabel": 7, + "strengthConsume": 50, + "price": 30, + "getLimit": 2 + }, + { + "id": 12312, + "group": 231, + "lv": 2, + "quality": 3, + "authorType": 7, + "seid": 3021201311, + "passiveLabel": 7, + "holyLabel": 7, + "strengthConsume": 0, + "price": 30, + "getLimit": 1 + }, + { + "id": 12322, + "group": 232, + "lv": 2, + "quality": 3, + "authorType": 7, + "seid": 3021202311, + "passiveLabel": 7, + "holyLabel": 7, + "strengthConsume": 0, + "price": 30, + "getLimit": 1 + }, + { + "id": 12332, + "group": 233, + "lv": 2, + "quality": 3, + "authorType": 7, + "seid": 3021203311, + "passiveLabel": 7, + "holyLabel": 7, + "strengthConsume": 0, + "price": 30, + "getLimit": 2 + }, + { + "id": 12342, + "group": 234, + "lv": 2, + "quality": 3, + "authorType": 7, + "seid": 3021204311, + "passiveLabel": 7, + "holyLabel": 7, + "strengthConsume": 0, + "price": 30, + "getLimit": 2 + }, + { + "id": 12211, + "group": 221, + "lv": 1, + "quality": 2, + "authorType": 7, + "seid": 3022101311, + "passiveLabel": 7, + "holyLabel": 7, + "strengthConsume": 30, + "price": 20, + "getLimit": 1 + }, + { + "id": 12221, + "group": 222, + "lv": 1, + "quality": 2, + "authorType": 7, + "seid": 3022102311, + "passiveLabel": 7, + "holyLabel": 7, + "strengthConsume": 30, + "price": 20, + "getLimit": 1 + }, + { + "id": 12231, + "group": 223, + "lv": 1, + "quality": 2, + "authorType": 7, + "seid": 3022103311, + "passiveLabel": 7, + "holyLabel": 7, + "strengthConsume": 30, + "price": 20, + "getLimit": 2 + }, + { + "id": 12241, + "group": 224, + "lv": 1, + "quality": 2, + "authorType": 7, + "seid": 3022104311, + "passiveLabel": 7, + "holyLabel": 7, + "strengthConsume": 30, + "price": 20, + "getLimit": 2 + }, + { + "id": 12251, + "group": 225, + "lv": 1, + "quality": 2, + "authorType": 7, + "seid": 3022105311, + "passiveLabel": 7, + "holyLabel": 7, + "strengthConsume": 30, + "price": 20, + "getLimit": 1 + }, + { + "id": 12261, + "group": 226, + "lv": 1, + "quality": 2, + "authorType": 7, + "seid": 3022106311, + "passiveLabel": 7, + "holyLabel": 7, + "strengthConsume": 30, + "price": 20, + "getLimit": 1 + }, + { + "id": 12212, + "group": 221, + "lv": 2, + "quality": 2, + "authorType": 7, + "seid": 3022201311, + "passiveLabel": 7, + "holyLabel": 7, + "strengthConsume": 0, + "price": 20, + "getLimit": 2 + }, + { + "id": 12222, + "group": 222, + "lv": 2, + "quality": 2, + "authorType": 7, + "seid": 3022202311, + "passiveLabel": 7, + "holyLabel": 7, + "strengthConsume": 0, + "price": 20, + "getLimit": 2 + }, + { + "id": 12232, + "group": 223, + "lv": 2, + "quality": 2, + "authorType": 7, + "seid": 3022203311, + "passiveLabel": 7, + "holyLabel": 7, + "strengthConsume": 0, + "price": 20, + "getLimit": 1 + }, + { + "id": 12242, + "group": 224, + "lv": 2, + "quality": 2, + "authorType": 7, + "seid": 3022204311, + "passiveLabel": 7, + "holyLabel": 7, + "strengthConsume": 0, + "price": 20, + "getLimit": 1 + }, + { + "id": 12252, + "group": 225, + "lv": 2, + "quality": 2, + "authorType": 7, + "seid": 3022205311, + "passiveLabel": 7, + "holyLabel": 7, + "strengthConsume": 0, + "price": 20, + "getLimit": 2 + }, + { + "id": 12262, + "group": 226, + "lv": 2, + "quality": 2, + "authorType": 7, + "seid": 3022206311, + "passiveLabel": 7, + "holyLabel": 7, + "strengthConsume": 0, + "price": 20, + "getLimit": 2 + }, + { + "id": 12111, + "group": 211, + "lv": 1, + "quality": 1, + "authorType": 7, + "seid": 3023101311, + "passiveLabel": 7, + "holyLabel": 7, + "strengthConsume": 10, + "price": 10, + "getLimit": 1 + }, + { + "id": 12121, + "group": 212, + "lv": 1, + "quality": 1, + "authorType": 7, + "seid": 3023102311, + "passiveLabel": 7, + "holyLabel": 7, + "strengthConsume": 10, + "price": 10, + "getLimit": 1 + }, + { + "id": 12131, + "group": 213, + "lv": 1, + "quality": 1, + "authorType": 7, + "seid": 3023103311, + "passiveLabel": 7, + "holyLabel": 7, + "strengthConsume": 10, + "price": 10, + "getLimit": 2 + }, + { + "id": 12141, + "group": 214, + "lv": 1, + "quality": 1, + "authorType": 7, + "seid": 3023104311, + "passiveLabel": 7, + "holyLabel": 7, + "strengthConsume": 10, + "price": 10, + "getLimit": 2 + }, + { + "id": 12151, + "group": 215, + "lv": 1, + "quality": 1, + "authorType": 7, + "seid": 3023105311, + "passiveLabel": 7, + "holyLabel": 7, + "strengthConsume": 10, + "price": 10, + "getLimit": 1 + }, + { + "id": 12161, + "group": 216, + "lv": 1, + "quality": 1, + "authorType": 7, + "seid": 3023106311, + "passiveLabel": 7, + "holyLabel": 7, + "strengthConsume": 10, + "price": 10, + "getLimit": 1 + }, + { + "id": 12171, + "group": 217, + "lv": 1, + "quality": 1, + "authorType": 7, + "seid": 3023107311, + "passiveLabel": 7, + "holyLabel": 7, + "strengthConsume": 10, + "price": 10, + "getLimit": 2 + }, + { + "id": 12181, + "group": 218, + "lv": 1, + "quality": 1, + "authorType": 7, + "seid": 3023108311, + "passiveLabel": 7, + "holyLabel": 7, + "strengthConsume": 10, + "price": 10, + "getLimit": 2 + }, + { + "id": 12112, + "group": 211, + "lv": 2, + "quality": 1, + "authorType": 7, + "seid": 3023201311, + "passiveLabel": 7, + "holyLabel": 7, + "strengthConsume": 0, + "price": 10, + "getLimit": 1 + }, + { + "id": 12122, + "group": 212, + "lv": 2, + "quality": 1, + "authorType": 7, + "seid": 3023202311, + "passiveLabel": 7, + "holyLabel": 7, + "strengthConsume": 0, + "price": 10, + "getLimit": 1 + }, + { + "id": 12132, + "group": 213, + "lv": 2, + "quality": 1, + "authorType": 7, + "seid": 3023203311, + "passiveLabel": 7, + "holyLabel": 7, + "strengthConsume": 0, + "price": 10, + "getLimit": 2 + }, + { + "id": 12142, + "group": 214, + "lv": 2, + "quality": 1, + "authorType": 7, + "seid": 3023204311, + "passiveLabel": 7, + "holyLabel": 7, + "strengthConsume": 0, + "price": 10, + "getLimit": 2 + }, + { + "id": 12152, + "group": 215, + "lv": 2, + "quality": 1, + "authorType": 7, + "seid": 3023205311, + "passiveLabel": 7, + "holyLabel": 7, + "strengthConsume": 0, + "price": 10, + "getLimit": 1 + }, + { + "id": 12162, + "group": 216, + "lv": 2, + "quality": 1, + "authorType": 7, + "seid": 3023206311, + "passiveLabel": 7, + "holyLabel": 7, + "strengthConsume": 0, + "price": 10, + "getLimit": 1 + }, + { + "id": 12172, + "group": 217, + "lv": 2, + "quality": 1, + "authorType": 7, + "seid": 3023207311, + "passiveLabel": 7, + "holyLabel": 7, + "strengthConsume": 0, + "price": 10, + "getLimit": 2 + }, + { + "id": 12182, + "group": 218, + "lv": 2, + "quality": 1, + "authorType": 7, + "seid": 3023208311, + "passiveLabel": 7, + "holyLabel": 7, + "strengthConsume": 0, + "price": 10, + "getLimit": 2 + }, + { + "id": 13311, + "group": 331, + "lv": 1, + "quality": 3, + "authorType": 6, + "seid": 3031101311, + "passiveLabel": 6, + "holyLabel": 6, + "strengthConsume": 50, + "price": 30, + "getLimit": 1 + }, + { + "id": 13321, + "group": 332, + "lv": 1, + "quality": 3, + "authorType": 6, + "seid": 3031102311, + "passiveLabel": 6, + "holyLabel": 6, + "strengthConsume": 50, + "price": 30, + "getLimit": 1 + }, + { + "id": 13331, + "group": 333, + "lv": 1, + "quality": 3, + "authorType": 6, + "seid": 3031103311, + "passiveLabel": 6, + "holyLabel": 6, + "strengthConsume": 50, + "price": 30, + "getLimit": 2 + }, + { + "id": 13341, + "group": 334, + "lv": 1, + "quality": 3, + "authorType": 6, + "seid": 3031104311, + "passiveLabel": 6, + "holyLabel": 6, + "strengthConsume": 50, + "price": 30, + "getLimit": 2 + }, + { + "id": 13312, + "group": 331, + "lv": 2, + "quality": 3, + "authorType": 6, + "seid": 3031201311, + "passiveLabel": 6, + "holyLabel": 6, + "strengthConsume": 0, + "price": 30, + "getLimit": 1 + }, + { + "id": 13322, + "group": 332, + "lv": 2, + "quality": 3, + "authorType": 6, + "seid": 3031202311, + "passiveLabel": 6, + "holyLabel": 6, + "strengthConsume": 0, + "price": 30, + "getLimit": 1 + }, + { + "id": 13332, + "group": 333, + "lv": 2, + "quality": 3, + "authorType": 6, + "seid": 3031203311, + "passiveLabel": 6, + "holyLabel": 6, + "strengthConsume": 0, + "price": 30, + "getLimit": 2 + }, + { + "id": 13342, + "group": 334, + "lv": 2, + "quality": 3, + "authorType": 6, + "seid": 3031204311, + "passiveLabel": 6, + "holyLabel": 6, + "strengthConsume": 0, + "price": 30, + "getLimit": 2 + }, + { + "id": 13211, + "group": 321, + "lv": 1, + "quality": 2, + "authorType": 6, + "seid": 3032101311, + "passiveLabel": 6, + "holyLabel": 6, + "strengthConsume": 30, + "price": 20, + "getLimit": 1 + }, + { + "id": 13221, + "group": 322, + "lv": 1, + "quality": 2, + "authorType": 6, + "seid": 3032102311, + "passiveLabel": 6, + "holyLabel": 6, + "strengthConsume": 30, + "price": 20, + "getLimit": 1 + }, + { + "id": 13231, + "group": 323, + "lv": 1, + "quality": 2, + "authorType": 6, + "seid": 3032103311, + "passiveLabel": 6, + "holyLabel": 6, + "strengthConsume": 30, + "price": 20, + "getLimit": 2 + }, + { + "id": 13241, + "group": 324, + "lv": 1, + "quality": 2, + "authorType": 6, + "seid": 3032104311, + "passiveLabel": 6, + "holyLabel": 6, + "strengthConsume": 30, + "price": 20, + "getLimit": 2 + }, + { + "id": 13251, + "group": 325, + "lv": 1, + "quality": 2, + "authorType": 6, + "seid": 3032105311, + "passiveLabel": 6, + "holyLabel": 6, + "strengthConsume": 30, + "price": 20, + "getLimit": 1 + }, + { + "id": 13261, + "group": 326, + "lv": 1, + "quality": 2, + "authorType": 6, + "seid": 3032106311, + "passiveLabel": 6, + "holyLabel": 6, + "strengthConsume": 30, + "price": 20, + "getLimit": 1 + }, + { + "id": 13212, + "group": 321, + "lv": 2, + "quality": 2, + "authorType": 6, + "seid": 3032201311, + "passiveLabel": 6, + "holyLabel": 6, + "strengthConsume": 0, + "price": 20, + "getLimit": 2 + }, + { + "id": 13222, + "group": 322, + "lv": 2, + "quality": 2, + "authorType": 6, + "seid": 3032202311, + "passiveLabel": 6, + "holyLabel": 6, + "strengthConsume": 0, + "price": 20, + "getLimit": 2 + }, + { + "id": 13232, + "group": 323, + "lv": 2, + "quality": 2, + "authorType": 6, + "seid": 3032203311, + "passiveLabel": 6, + "holyLabel": 6, + "strengthConsume": 0, + "price": 20, + "getLimit": 1 + }, + { + "id": 13242, + "group": 324, + "lv": 2, + "quality": 2, + "authorType": 6, + "seid": 3032204311, + "passiveLabel": 6, + "holyLabel": 6, + "strengthConsume": 0, + "price": 20, + "getLimit": 1 + }, + { + "id": 13252, + "group": 325, + "lv": 2, + "quality": 2, + "authorType": 6, + "seid": 3032205311, + "passiveLabel": 6, + "holyLabel": 6, + "strengthConsume": 0, + "price": 20, + "getLimit": 2 + }, + { + "id": 13262, + "group": 326, + "lv": 2, + "quality": 2, + "authorType": 6, + "seid": 3032206311, + "passiveLabel": 6, + "holyLabel": 6, + "strengthConsume": 0, + "price": 20, + "getLimit": 2 + }, + { + "id": 13111, + "group": 311, + "lv": 1, + "quality": 1, + "authorType": 6, + "seid": 3033101311, + "passiveLabel": 6, + "holyLabel": 6, + "strengthConsume": 10, + "price": 10, + "getLimit": 1 + }, + { + "id": 13121, + "group": 312, + "lv": 1, + "quality": 1, + "authorType": 6, + "seid": 3033102311, + "passiveLabel": 6, + "holyLabel": 6, + "strengthConsume": 10, + "price": 10, + "getLimit": 1 + }, + { + "id": 13131, + "group": 313, + "lv": 1, + "quality": 1, + "authorType": 6, + "seid": 3033103311, + "passiveLabel": 6, + "holyLabel": 6, + "strengthConsume": 10, + "price": 10, + "getLimit": 2 + }, + { + "id": 13141, + "group": 314, + "lv": 1, + "quality": 1, + "authorType": 6, + "seid": 3033104311, + "passiveLabel": 6, + "holyLabel": 6, + "strengthConsume": 10, + "price": 10, + "getLimit": 2 + }, + { + "id": 13151, + "group": 315, + "lv": 1, + "quality": 1, + "authorType": 6, + "seid": 3033105311, + "passiveLabel": 6, + "holyLabel": 6, + "strengthConsume": 10, + "price": 10, + "getLimit": 1 + }, + { + "id": 13161, + "group": 316, + "lv": 1, + "quality": 1, + "authorType": 6, + "seid": 3033106311, + "passiveLabel": 6, + "holyLabel": 6, + "strengthConsume": 10, + "price": 10, + "getLimit": 1 + }, + { + "id": 13171, + "group": 317, + "lv": 1, + "quality": 1, + "authorType": 6, + "seid": 3033107311, + "passiveLabel": 6, + "holyLabel": 6, + "strengthConsume": 10, + "price": 10, + "getLimit": 2 + }, + { + "id": 13181, + "group": 318, + "lv": 1, + "quality": 1, + "authorType": 6, + "seid": 3033108311, + "passiveLabel": 6, + "holyLabel": 6, + "strengthConsume": 10, + "price": 10, + "getLimit": 2 + }, + { + "id": 13112, + "group": 311, + "lv": 2, + "quality": 1, + "authorType": 6, + "seid": 3033201311, + "passiveLabel": 6, + "holyLabel": 6, + "strengthConsume": 0, + "price": 10, + "getLimit": 1 + }, + { + "id": 13122, + "group": 312, + "lv": 2, + "quality": 1, + "authorType": 6, + "seid": 3033202311, + "passiveLabel": 6, + "holyLabel": 6, + "strengthConsume": 0, + "price": 10, + "getLimit": 1 + }, + { + "id": 13132, + "group": 313, + "lv": 2, + "quality": 1, + "authorType": 6, + "seid": 3033203311, + "passiveLabel": 6, + "holyLabel": 6, + "strengthConsume": 0, + "price": 10, + "getLimit": 2 + }, + { + "id": 13142, + "group": 314, + "lv": 2, + "quality": 1, + "authorType": 6, + "seid": 3033204311, + "passiveLabel": 6, + "holyLabel": 6, + "strengthConsume": 0, + "price": 10, + "getLimit": 2 + }, + { + "id": 13152, + "group": 315, + "lv": 2, + "quality": 1, + "authorType": 6, + "seid": 3033205311, + "passiveLabel": 6, + "holyLabel": 6, + "strengthConsume": 0, + "price": 10, + "getLimit": 1 + }, + { + "id": 13162, + "group": 316, + "lv": 2, + "quality": 1, + "authorType": 6, + "seid": 3033206311, + "passiveLabel": 6, + "holyLabel": 6, + "strengthConsume": 0, + "price": 10, + "getLimit": 1 + }, + { + "id": 13172, + "group": 317, + "lv": 2, + "quality": 1, + "authorType": 6, + "seid": 3033207311, + "passiveLabel": 6, + "holyLabel": 6, + "strengthConsume": 0, + "price": 10, + "getLimit": 2 + }, + { + "id": 13182, + "group": 318, + "lv": 2, + "quality": 1, + "authorType": 6, + "seid": 3033208311, + "passiveLabel": 6, + "holyLabel": 6, + "strengthConsume": 0, + "price": 10, + "getLimit": 2 + }, + { + "id": 14311, + "group": 431, + "lv": 1, + "quality": 3, + "authorType": 2, + "seid": 3041101311, + "passiveLabel": 2, + "holyLabel": 2, + "strengthConsume": 50, + "price": 30, + "getLimit": 1 + }, + { + "id": 14321, + "group": 432, + "lv": 1, + "quality": 3, + "authorType": 2, + "seid": 3041102311, + "passiveLabel": 2, + "holyLabel": 2, + "strengthConsume": 50, + "price": 30, + "getLimit": 1 + }, + { + "id": 14331, + "group": 433, + "lv": 1, + "quality": 3, + "authorType": 2, + "seid": 3041103311, + "passiveLabel": 2, + "holyLabel": 2, + "strengthConsume": 50, + "price": 30, + "getLimit": 2 + }, + { + "id": 14341, + "group": 434, + "lv": 1, + "quality": 3, + "authorType": 2, + "seid": 3041104311, + "passiveLabel": 2, + "holyLabel": 2, + "strengthConsume": 50, + "price": 30, + "getLimit": 2 + }, + { + "id": 14312, + "group": 431, + "lv": 2, + "quality": 3, + "authorType": 2, + "seid": 3041201311, + "passiveLabel": 2, + "holyLabel": 2, + "strengthConsume": 0, + "price": 30, + "getLimit": 1 + }, + { + "id": 14322, + "group": 432, + "lv": 2, + "quality": 3, + "authorType": 2, + "seid": 3041202311, + "passiveLabel": 2, + "holyLabel": 2, + "strengthConsume": 0, + "price": 30, + "getLimit": 1 + }, + { + "id": 14332, + "group": 433, + "lv": 2, + "quality": 3, + "authorType": 2, + "seid": 3041203311, + "passiveLabel": 2, + "holyLabel": 2, + "strengthConsume": 0, + "price": 30, + "getLimit": 2 + }, + { + "id": 14342, + "group": 434, + "lv": 2, + "quality": 3, + "authorType": 2, + "seid": 3041204311, + "passiveLabel": 2, + "holyLabel": 2, + "strengthConsume": 0, + "price": 30, + "getLimit": 2 + }, + { + "id": 14211, + "group": 421, + "lv": 1, + "quality": 2, + "authorType": 2, + "seid": 3042101311, + "passiveLabel": 2, + "holyLabel": 2, + "strengthConsume": 30, + "price": 20, + "getLimit": 1 + }, + { + "id": 14221, + "group": 422, + "lv": 1, + "quality": 2, + "authorType": 2, + "seid": 3042102311, + "passiveLabel": 2, + "holyLabel": 2, + "strengthConsume": 30, + "price": 20, + "getLimit": 1 + }, + { + "id": 14231, + "group": 423, + "lv": 1, + "quality": 2, + "authorType": 2, + "seid": 3042103311, + "passiveLabel": 2, + "holyLabel": 2, + "strengthConsume": 30, + "price": 20, + "getLimit": 2 + }, + { + "id": 14241, + "group": 424, + "lv": 1, + "quality": 2, + "authorType": 2, + "seid": 3042104311, + "passiveLabel": 2, + "holyLabel": 2, + "strengthConsume": 30, + "price": 20, + "getLimit": 2 + }, + { + "id": 14251, + "group": 425, + "lv": 1, + "quality": 2, + "authorType": 2, + "seid": 3042105311, + "passiveLabel": 2, + "holyLabel": 2, + "strengthConsume": 30, + "price": 20, + "getLimit": 1 + }, + { + "id": 14261, + "group": 426, + "lv": 1, + "quality": 2, + "authorType": 2, + "seid": 3042106311, + "passiveLabel": 2, + "holyLabel": 2, + "strengthConsume": 30, + "price": 20, + "getLimit": 1 + }, + { + "id": 14212, + "group": 421, + "lv": 2, + "quality": 2, + "authorType": 2, + "seid": 3042201311, + "passiveLabel": 2, + "holyLabel": 2, + "strengthConsume": 0, + "price": 20, + "getLimit": 2 + }, + { + "id": 14222, + "group": 422, + "lv": 2, + "quality": 2, + "authorType": 2, + "seid": 3042202311, + "passiveLabel": 2, + "holyLabel": 2, + "strengthConsume": 0, + "price": 20, + "getLimit": 2 + }, + { + "id": 14232, + "group": 423, + "lv": 2, + "quality": 2, + "authorType": 2, + "seid": 3042203311, + "passiveLabel": 2, + "holyLabel": 2, + "strengthConsume": 0, + "price": 20, + "getLimit": 1 + }, + { + "id": 14242, + "group": 424, + "lv": 2, + "quality": 2, + "authorType": 2, + "seid": 3042204311, + "passiveLabel": 2, + "holyLabel": 2, + "strengthConsume": 0, + "price": 20, + "getLimit": 1 + }, + { + "id": 14252, + "group": 425, + "lv": 2, + "quality": 2, + "authorType": 2, + "seid": 3042205311, + "passiveLabel": 2, + "holyLabel": 2, + "strengthConsume": 0, + "price": 20, + "getLimit": 2 + }, + { + "id": 14262, + "group": 426, + "lv": 2, + "quality": 2, + "authorType": 2, + "seid": 3042206311, + "passiveLabel": 2, + "holyLabel": 2, + "strengthConsume": 0, + "price": 20, + "getLimit": 2 + }, + { + "id": 14111, + "group": 411, + "lv": 1, + "quality": 1, + "authorType": 2, + "seid": 3043101311, + "passiveLabel": 2, + "holyLabel": 2, + "strengthConsume": 10, + "price": 10, + "getLimit": 1 + }, + { + "id": 14121, + "group": 412, + "lv": 1, + "quality": 1, + "authorType": 2, + "seid": 3043102311, + "passiveLabel": 2, + "holyLabel": 2, + "strengthConsume": 10, + "price": 10, + "getLimit": 1 + }, + { + "id": 14131, + "group": 413, + "lv": 1, + "quality": 1, + "authorType": 2, + "seid": 3043103311, + "passiveLabel": 2, + "holyLabel": 2, + "strengthConsume": 10, + "price": 10, + "getLimit": 2 + }, + { + "id": 14141, + "group": 414, + "lv": 1, + "quality": 1, + "authorType": 2, + "seid": 3043104311, + "passiveLabel": 2, + "holyLabel": 2, + "strengthConsume": 10, + "price": 10, + "getLimit": 2 + }, + { + "id": 14151, + "group": 415, + "lv": 1, + "quality": 1, + "authorType": 2, + "seid": 3043105311, + "passiveLabel": 2, + "holyLabel": 2, + "strengthConsume": 10, + "price": 10, + "getLimit": 1 + }, + { + "id": 14161, + "group": 416, + "lv": 1, + "quality": 1, + "authorType": 2, + "seid": 3043106311, + "passiveLabel": 2, + "holyLabel": 2, + "strengthConsume": 10, + "price": 10, + "getLimit": 1 + }, + { + "id": 14171, + "group": 417, + "lv": 1, + "quality": 1, + "authorType": 2, + "seid": 3043107311, + "passiveLabel": 2, + "holyLabel": 2, + "strengthConsume": 10, + "price": 10, + "getLimit": 2 + }, + { + "id": 14181, + "group": 418, + "lv": 1, + "quality": 1, + "authorType": 2, + "seid": 3043108311, + "passiveLabel": 2, + "holyLabel": 2, + "strengthConsume": 10, + "price": 10, + "getLimit": 2 + }, + { + "id": 14112, + "group": 411, + "lv": 2, + "quality": 1, + "authorType": 2, + "seid": 3043201311, + "passiveLabel": 2, + "holyLabel": 2, + "strengthConsume": 0, + "price": 10, + "getLimit": 1 + }, + { + "id": 14122, + "group": 412, + "lv": 2, + "quality": 1, + "authorType": 2, + "seid": 3043202311, + "passiveLabel": 2, + "holyLabel": 2, + "strengthConsume": 0, + "price": 10, + "getLimit": 1 + }, + { + "id": 14132, + "group": 413, + "lv": 2, + "quality": 1, + "authorType": 2, + "seid": 3043203311, + "passiveLabel": 2, + "holyLabel": 2, + "strengthConsume": 0, + "price": 10, + "getLimit": 2 + }, + { + "id": 14142, + "group": 414, + "lv": 2, + "quality": 1, + "authorType": 2, + "seid": 3043204311, + "passiveLabel": 2, + "holyLabel": 2, + "strengthConsume": 0, + "price": 10, + "getLimit": 2 + }, + { + "id": 14152, + "group": 415, + "lv": 2, + "quality": 1, + "authorType": 2, + "seid": 3043205311, + "passiveLabel": 2, + "holyLabel": 2, + "strengthConsume": 0, + "price": 10, + "getLimit": 1 + }, + { + "id": 14162, + "group": 416, + "lv": 2, + "quality": 1, + "authorType": 2, + "seid": 3043206311, + "passiveLabel": 2, + "holyLabel": 2, + "strengthConsume": 0, + "price": 10, + "getLimit": 1 + }, + { + "id": 14172, + "group": 417, + "lv": 2, + "quality": 1, + "authorType": 2, + "seid": 3043207311, + "passiveLabel": 2, + "holyLabel": 2, + "strengthConsume": 0, + "price": 10, + "getLimit": 2 + }, + { + "id": 14182, + "group": 418, + "lv": 2, + "quality": 1, + "authorType": 2, + "seid": 3043208311, + "passiveLabel": 2, + "holyLabel": 2, + "strengthConsume": 0, + "price": 10, + "getLimit": 2 + }, + { + "id": 15311, + "group": 631, + "lv": 1, + "quality": 3, + "authorType": 4, + "seid": 3061101311, + "passiveLabel": 4, + "holyLabel": 4, + "strengthConsume": 50, + "price": 30, + "getLimit": 1 + }, + { + "id": 15321, + "group": 632, + "lv": 1, + "quality": 3, + "authorType": 4, + "seid": 3061102311, + "passiveLabel": 4, + "holyLabel": 4, + "strengthConsume": 50, + "price": 30, + "getLimit": 1 + }, + { + "id": 15331, + "group": 633, + "lv": 1, + "quality": 3, + "authorType": 4, + "seid": 3061103311, + "passiveLabel": 4, + "holyLabel": 4, + "strengthConsume": 50, + "price": 30, + "getLimit": 2 + }, + { + "id": 15341, + "group": 634, + "lv": 1, + "quality": 3, + "authorType": 4, + "seid": 3061104311, + "passiveLabel": 4, + "holyLabel": 4, + "strengthConsume": 50, + "price": 30, + "getLimit": 2 + }, + { + "id": 15312, + "group": 631, + "lv": 2, + "quality": 3, + "authorType": 4, + "seid": 3061201311, + "passiveLabel": 4, + "holyLabel": 4, + "strengthConsume": 0, + "price": 30, + "getLimit": 1 + }, + { + "id": 15322, + "group": 632, + "lv": 2, + "quality": 3, + "authorType": 4, + "seid": 3061202311, + "passiveLabel": 4, + "holyLabel": 4, + "strengthConsume": 0, + "price": 30, + "getLimit": 1 + }, + { + "id": 15332, + "group": 633, + "lv": 2, + "quality": 3, + "authorType": 4, + "seid": 3061203311, + "passiveLabel": 4, + "holyLabel": 4, + "strengthConsume": 0, + "price": 30, + "getLimit": 2 + }, + { + "id": 15342, + "group": 634, + "lv": 2, + "quality": 3, + "authorType": 4, + "seid": 3061204311, + "passiveLabel": 4, + "holyLabel": 4, + "strengthConsume": 0, + "price": 30, + "getLimit": 2 + }, + { + "id": 15211, + "group": 621, + "lv": 1, + "quality": 2, + "authorType": 4, + "seid": 3062101311, + "passiveLabel": 4, + "holyLabel": 4, + "strengthConsume": 30, + "price": 20, + "getLimit": 1 + }, + { + "id": 15221, + "group": 622, + "lv": 1, + "quality": 2, + "authorType": 4, + "seid": 3062102311, + "passiveLabel": 4, + "holyLabel": 4, + "strengthConsume": 30, + "price": 20, + "getLimit": 1 + }, + { + "id": 15231, + "group": 623, + "lv": 1, + "quality": 2, + "authorType": 4, + "seid": 3062103311, + "passiveLabel": 4, + "holyLabel": 4, + "strengthConsume": 30, + "price": 20, + "getLimit": 2 + }, + { + "id": 15241, + "group": 624, + "lv": 1, + "quality": 2, + "authorType": 4, + "seid": 3062104311, + "passiveLabel": 4, + "holyLabel": 4, + "strengthConsume": 30, + "price": 20, + "getLimit": 2 + }, + { + "id": 15251, + "group": 625, + "lv": 1, + "quality": 2, + "authorType": 4, + "seid": 3062105311, + "passiveLabel": 4, + "holyLabel": 4, + "strengthConsume": 30, + "price": 20, + "getLimit": 1 + }, + { + "id": 15261, + "group": 626, + "lv": 1, + "quality": 2, + "authorType": 4, + "seid": 3062106311, + "passiveLabel": 4, + "holyLabel": 4, + "strengthConsume": 30, + "price": 20, + "getLimit": 1 + }, + { + "id": 15212, + "group": 621, + "lv": 2, + "quality": 2, + "authorType": 4, + "seid": 3062201311, + "passiveLabel": 4, + "holyLabel": 4, + "strengthConsume": 0, + "price": 20, + "getLimit": 2 + }, + { + "id": 15222, + "group": 622, + "lv": 2, + "quality": 2, + "authorType": 4, + "seid": 3062202311, + "passiveLabel": 4, + "holyLabel": 4, + "strengthConsume": 0, + "price": 20, + "getLimit": 2 + }, + { + "id": 15232, + "group": 623, + "lv": 2, + "quality": 2, + "authorType": 4, + "seid": 3062203311, + "passiveLabel": 4, + "holyLabel": 4, + "strengthConsume": 0, + "price": 20, + "getLimit": 1 + }, + { + "id": 15242, + "group": 624, + "lv": 2, + "quality": 2, + "authorType": 4, + "seid": 3062204311, + "passiveLabel": 4, + "holyLabel": 4, + "strengthConsume": 0, + "price": 20, + "getLimit": 1 + }, + { + "id": 15252, + "group": 625, + "lv": 2, + "quality": 2, + "authorType": 4, + "seid": 3062205311, + "passiveLabel": 4, + "holyLabel": 4, + "strengthConsume": 0, + "price": 20, + "getLimit": 2 + }, + { + "id": 15262, + "group": 626, + "lv": 2, + "quality": 2, + "authorType": 4, + "seid": 3062206311, + "passiveLabel": 4, + "holyLabel": 4, + "strengthConsume": 0, + "price": 20, + "getLimit": 2 + }, + { + "id": 15111, + "group": 611, + "lv": 1, + "quality": 1, + "authorType": 4, + "seid": 3063101311, + "passiveLabel": 4, + "holyLabel": 4, + "strengthConsume": 10, + "price": 10, + "getLimit": 1 + }, + { + "id": 15121, + "group": 612, + "lv": 1, + "quality": 1, + "authorType": 4, + "seid": 3063102311, + "passiveLabel": 4, + "holyLabel": 4, + "strengthConsume": 10, + "price": 10, + "getLimit": 1 + }, + { + "id": 15131, + "group": 613, + "lv": 1, + "quality": 1, + "authorType": 4, + "seid": 3063103311, + "passiveLabel": 4, + "holyLabel": 4, + "strengthConsume": 10, + "price": 10, + "getLimit": 2 + }, + { + "id": 15141, + "group": 614, + "lv": 1, + "quality": 1, + "authorType": 4, + "seid": 3063104311, + "passiveLabel": 4, + "holyLabel": 4, + "strengthConsume": 10, + "price": 10, + "getLimit": 2 + }, + { + "id": 15151, + "group": 615, + "lv": 1, + "quality": 1, + "authorType": 4, + "seid": 3063105311, + "passiveLabel": 4, + "holyLabel": 4, + "strengthConsume": 10, + "price": 10, + "getLimit": 1 + }, + { + "id": 15161, + "group": 616, + "lv": 1, + "quality": 1, + "authorType": 4, + "seid": 3063106311, + "passiveLabel": 4, + "holyLabel": 4, + "strengthConsume": 10, + "price": 10, + "getLimit": 1 + }, + { + "id": 15171, + "group": 617, + "lv": 1, + "quality": 1, + "authorType": 4, + "seid": 3063107311, + "passiveLabel": 4, + "holyLabel": 4, + "strengthConsume": 10, + "price": 10, + "getLimit": 2 + }, + { + "id": 15181, + "group": 618, + "lv": 1, + "quality": 1, + "authorType": 4, + "seid": 3063108311, + "passiveLabel": 4, + "holyLabel": 4, + "strengthConsume": 10, + "price": 10, + "getLimit": 2 + }, + { + "id": 15112, + "group": 611, + "lv": 2, + "quality": 1, + "authorType": 4, + "seid": 3063201311, + "passiveLabel": 4, + "holyLabel": 4, + "strengthConsume": 0, + "price": 10, + "getLimit": 1 + }, + { + "id": 15122, + "group": 612, + "lv": 2, + "quality": 1, + "authorType": 4, + "seid": 3063202311, + "passiveLabel": 4, + "holyLabel": 4, + "strengthConsume": 0, + "price": 10, + "getLimit": 1 + }, + { + "id": 15132, + "group": 613, + "lv": 2, + "quality": 1, + "authorType": 4, + "seid": 3063203311, + "passiveLabel": 4, + "holyLabel": 4, + "strengthConsume": 0, + "price": 10, + "getLimit": 2 + }, + { + "id": 15142, + "group": 614, + "lv": 2, + "quality": 1, + "authorType": 4, + "seid": 3063204311, + "passiveLabel": 4, + "holyLabel": 4, + "strengthConsume": 0, + "price": 10, + "getLimit": 2 + }, + { + "id": 15152, + "group": 615, + "lv": 2, + "quality": 1, + "authorType": 4, + "seid": 3063205311, + "passiveLabel": 4, + "holyLabel": 4, + "strengthConsume": 0, + "price": 10, + "getLimit": 1 + }, + { + "id": 15162, + "group": 616, + "lv": 2, + "quality": 1, + "authorType": 4, + "seid": 3063206311, + "passiveLabel": 4, + "holyLabel": 4, + "strengthConsume": 0, + "price": 10, + "getLimit": 1 + }, + { + "id": 15172, + "group": 617, + "lv": 2, + "quality": 1, + "authorType": 4, + "seid": 3063207311, + "passiveLabel": 4, + "holyLabel": 4, + "strengthConsume": 0, + "price": 10, + "getLimit": 2 + }, + { + "id": 15182, + "group": 618, + "lv": 2, + "quality": 1, + "authorType": 4, + "seid": 3063208311, + "passiveLabel": 4, + "holyLabel": 4, + "strengthConsume": 0, + "price": 10, + "getLimit": 2 + }, + { + "id": 16311, + "group": 731, + "lv": 1, + "quality": 3, + "authorType": 8, + "seid": 3071101311, + "passiveLabel": 8, + "holyLabel": 8, + "strengthConsume": 50, + "price": 30, + "getLimit": 1 + }, + { + "id": 16321, + "group": 732, + "lv": 1, + "quality": 3, + "authorType": 8, + "seid": 3071102311, + "passiveLabel": 8, + "holyLabel": 8, + "strengthConsume": 50, + "price": 30, + "getLimit": 1 + }, + { + "id": 16331, + "group": 733, + "lv": 1, + "quality": 3, + "authorType": 8, + "seid": 3071103311, + "passiveLabel": 8, + "holyLabel": 8, + "strengthConsume": 50, + "price": 30, + "getLimit": 2 + }, + { + "id": 16341, + "group": 734, + "lv": 1, + "quality": 3, + "authorType": 8, + "seid": 3071104311, + "passiveLabel": 8, + "holyLabel": 8, + "strengthConsume": 50, + "price": 30, + "getLimit": 2 + }, + { + "id": 16312, + "group": 731, + "lv": 2, + "quality": 3, + "authorType": 8, + "seid": 3071201311, + "passiveLabel": 8, + "holyLabel": 8, + "strengthConsume": 0, + "price": 30, + "getLimit": 1 + }, + { + "id": 16322, + "group": 732, + "lv": 2, + "quality": 3, + "authorType": 8, + "seid": 3071202311, + "passiveLabel": 8, + "holyLabel": 8, + "strengthConsume": 0, + "price": 30, + "getLimit": 1 + }, + { + "id": 16332, + "group": 733, + "lv": 2, + "quality": 3, + "authorType": 8, + "seid": 3071203311, + "passiveLabel": 8, + "holyLabel": 8, + "strengthConsume": 0, + "price": 30, + "getLimit": 2 + }, + { + "id": 16342, + "group": 734, + "lv": 2, + "quality": 3, + "authorType": 8, + "seid": 3071204311, + "passiveLabel": 8, + "holyLabel": 8, + "strengthConsume": 0, + "price": 30, + "getLimit": 2 + }, + { + "id": 16211, + "group": 721, + "lv": 1, + "quality": 2, + "authorType": 8, + "seid": 3072101311, + "passiveLabel": 8, + "holyLabel": 8, + "strengthConsume": 30, + "price": 20, + "getLimit": 1 + }, + { + "id": 16221, + "group": 722, + "lv": 1, + "quality": 2, + "authorType": 8, + "seid": 3072102311, + "passiveLabel": 8, + "holyLabel": 8, + "strengthConsume": 30, + "price": 20, + "getLimit": 1 + }, + { + "id": 16231, + "group": 723, + "lv": 1, + "quality": 2, + "authorType": 8, + "seid": 3072103311, + "passiveLabel": 8, + "holyLabel": 8, + "strengthConsume": 30, + "price": 20, + "getLimit": 2 + }, + { + "id": 16241, + "group": 724, + "lv": 1, + "quality": 2, + "authorType": 8, + "seid": 3072104311, + "passiveLabel": 8, + "holyLabel": 8, + "strengthConsume": 30, + "price": 20, + "getLimit": 2 + }, + { + "id": 16251, + "group": 725, + "lv": 1, + "quality": 2, + "authorType": 8, + "seid": 3072105311, + "passiveLabel": 8, + "holyLabel": 8, + "strengthConsume": 30, + "price": 20, + "getLimit": 1 + }, + { + "id": 16261, + "group": 726, + "lv": 1, + "quality": 2, + "authorType": 8, + "seid": 3072106311, + "passiveLabel": 8, + "holyLabel": 8, + "strengthConsume": 30, + "price": 20, + "getLimit": 1 + }, + { + "id": 16212, + "group": 721, + "lv": 2, + "quality": 2, + "authorType": 8, + "seid": 3072201311, + "passiveLabel": 8, + "holyLabel": 8, + "strengthConsume": 0, + "price": 20, + "getLimit": 2 + }, + { + "id": 16222, + "group": 722, + "lv": 2, + "quality": 2, + "authorType": 8, + "seid": 3072202311, + "passiveLabel": 8, + "holyLabel": 8, + "strengthConsume": 0, + "price": 20, + "getLimit": 2 + }, + { + "id": 16232, + "group": 723, + "lv": 2, + "quality": 2, + "authorType": 8, + "seid": 3072203311, + "passiveLabel": 8, + "holyLabel": 8, + "strengthConsume": 0, + "price": 20, + "getLimit": 1 + }, + { + "id": 16242, + "group": 724, + "lv": 2, + "quality": 2, + "authorType": 8, + "seid": 3072204311, + "passiveLabel": 8, + "holyLabel": 8, + "strengthConsume": 0, + "price": 20, + "getLimit": 1 + }, + { + "id": 16252, + "group": 725, + "lv": 2, + "quality": 2, + "authorType": 8, + "seid": 3072205311, + "passiveLabel": 8, + "holyLabel": 8, + "strengthConsume": 0, + "price": 20, + "getLimit": 2 + }, + { + "id": 16262, + "group": 726, + "lv": 2, + "quality": 2, + "authorType": 8, + "seid": 3072206311, + "passiveLabel": 8, + "holyLabel": 8, + "strengthConsume": 0, + "price": 20, + "getLimit": 2 + }, + { + "id": 16111, + "group": 711, + "lv": 1, + "quality": 1, + "authorType": 8, + "seid": 3073101311, + "passiveLabel": 8, + "holyLabel": 8, + "strengthConsume": 10, + "price": 10, + "getLimit": 1 + }, + { + "id": 16121, + "group": 712, + "lv": 1, + "quality": 1, + "authorType": 8, + "seid": 3073102311, + "passiveLabel": 8, + "holyLabel": 8, + "strengthConsume": 10, + "price": 10, + "getLimit": 1 + }, + { + "id": 16131, + "group": 713, + "lv": 1, + "quality": 1, + "authorType": 8, + "seid": 3073103311, + "passiveLabel": 8, + "holyLabel": 8, + "strengthConsume": 10, + "price": 10, + "getLimit": 2 + }, + { + "id": 16141, + "group": 714, + "lv": 1, + "quality": 1, + "authorType": 8, + "seid": 3073104311, + "passiveLabel": 8, + "holyLabel": 8, + "strengthConsume": 10, + "price": 10, + "getLimit": 2 + }, + { + "id": 16151, + "group": 715, + "lv": 1, + "quality": 1, + "authorType": 8, + "seid": 3073105311, + "passiveLabel": 8, + "holyLabel": 8, + "strengthConsume": 10, + "price": 10, + "getLimit": 1 + }, + { + "id": 16161, + "group": 716, + "lv": 1, + "quality": 1, + "authorType": 8, + "seid": 3073106311, + "passiveLabel": 8, + "holyLabel": 8, + "strengthConsume": 10, + "price": 10, + "getLimit": 1 + }, + { + "id": 16171, + "group": 717, + "lv": 1, + "quality": 1, + "authorType": 8, + "seid": 3073107311, + "passiveLabel": 8, + "holyLabel": 8, + "strengthConsume": 10, + "price": 10, + "getLimit": 2 + }, + { + "id": 16181, + "group": 718, + "lv": 1, + "quality": 1, + "authorType": 8, + "seid": 3073108311, + "passiveLabel": 8, + "holyLabel": 8, + "strengthConsume": 10, + "price": 10, + "getLimit": 2 + }, + { + "id": 16112, + "group": 711, + "lv": 2, + "quality": 1, + "authorType": 8, + "seid": 3073201311, + "passiveLabel": 8, + "holyLabel": 8, + "strengthConsume": 0, + "price": 10, + "getLimit": 1 + }, + { + "id": 16122, + "group": 712, + "lv": 2, + "quality": 1, + "authorType": 8, + "seid": 3073202311, + "passiveLabel": 8, + "holyLabel": 8, + "strengthConsume": 0, + "price": 10, + "getLimit": 1 + }, + { + "id": 16132, + "group": 713, + "lv": 2, + "quality": 1, + "authorType": 8, + "seid": 3073203311, + "passiveLabel": 8, + "holyLabel": 8, + "strengthConsume": 0, + "price": 10, + "getLimit": 2 + }, + { + "id": 16142, + "group": 714, + "lv": 2, + "quality": 1, + "authorType": 8, + "seid": 3073204311, + "passiveLabel": 8, + "holyLabel": 8, + "strengthConsume": 0, + "price": 10, + "getLimit": 2 + }, + { + "id": 16152, + "group": 715, + "lv": 2, + "quality": 1, + "authorType": 8, + "seid": 3073205311, + "passiveLabel": 8, + "holyLabel": 8, + "strengthConsume": 0, + "price": 10, + "getLimit": 1 + }, + { + "id": 16162, + "group": 716, + "lv": 2, + "quality": 1, + "authorType": 8, + "seid": 3073206311, + "passiveLabel": 8, + "holyLabel": 8, + "strengthConsume": 0, + "price": 10, + "getLimit": 1 + }, + { + "id": 16172, + "group": 717, + "lv": 2, + "quality": 1, + "authorType": 8, + "seid": 3073207311, + "passiveLabel": 8, + "holyLabel": 8, + "strengthConsume": 0, + "price": 10, + "getLimit": 2 + }, + { + "id": 16182, + "group": 718, + "lv": 2, + "quality": 1, + "authorType": 8, + "seid": 3073208311, + "passiveLabel": 8, + "holyLabel": 8, + "strengthConsume": 0, + "price": 10, + "getLimit": 2 + }, + { + "id": 17311, + "group": 931, + "lv": 1, + "quality": 3, + "authorType": 3, + "seid": 3091101311, + "passiveLabel": 3, + "holyLabel": 3, + "strengthConsume": 50, + "price": 30, + "getLimit": 1 + }, + { + "id": 17321, + "group": 932, + "lv": 1, + "quality": 3, + "authorType": 3, + "seid": 3091102311, + "passiveLabel": 3, + "holyLabel": 3, + "strengthConsume": 50, + "price": 30, + "getLimit": 1 + }, + { + "id": 17331, + "group": 933, + "lv": 1, + "quality": 3, + "authorType": 3, + "seid": 3091103311, + "passiveLabel": 3, + "holyLabel": 3, + "strengthConsume": 50, + "price": 30, + "getLimit": 2 + }, + { + "id": 17341, + "group": 934, + "lv": 1, + "quality": 3, + "authorType": 3, + "seid": 3091104311, + "passiveLabel": 3, + "holyLabel": 3, + "strengthConsume": 50, + "price": 30, + "getLimit": 2 + }, + { + "id": 17312, + "group": 931, + "lv": 2, + "quality": 3, + "authorType": 3, + "seid": 3091201311, + "passiveLabel": 3, + "holyLabel": 3, + "strengthConsume": 0, + "price": 30, + "getLimit": 1 + }, + { + "id": 17322, + "group": 932, + "lv": 2, + "quality": 3, + "authorType": 3, + "seid": 3091202311, + "passiveLabel": 3, + "holyLabel": 3, + "strengthConsume": 0, + "price": 30, + "getLimit": 1 + }, + { + "id": 17332, + "group": 933, + "lv": 2, + "quality": 3, + "authorType": 3, + "seid": 3091203311, + "passiveLabel": 3, + "holyLabel": 3, + "strengthConsume": 0, + "price": 30, + "getLimit": 2 + }, + { + "id": 17342, + "group": 934, + "lv": 2, + "quality": 3, + "authorType": 3, + "seid": 3091204311, + "passiveLabel": 3, + "holyLabel": 3, + "strengthConsume": 0, + "price": 30, + "getLimit": 2 + }, + { + "id": 17211, + "group": 921, + "lv": 1, + "quality": 2, + "authorType": 3, + "seid": 3092101311, + "passiveLabel": 3, + "holyLabel": 3, + "strengthConsume": 30, + "price": 20, + "getLimit": 1 + }, + { + "id": 17221, + "group": 922, + "lv": 1, + "quality": 2, + "authorType": 3, + "seid": 3092102311, + "passiveLabel": 3, + "holyLabel": 3, + "strengthConsume": 30, + "price": 20, + "getLimit": 1 + }, + { + "id": 17231, + "group": 923, + "lv": 1, + "quality": 2, + "authorType": 3, + "seid": 3092103311, + "passiveLabel": 3, + "holyLabel": 3, + "strengthConsume": 30, + "price": 20, + "getLimit": 2 + }, + { + "id": 17241, + "group": 924, + "lv": 1, + "quality": 2, + "authorType": 3, + "seid": 3092104311, + "passiveLabel": 3, + "holyLabel": 3, + "strengthConsume": 30, + "price": 20, + "getLimit": 2 + }, + { + "id": 17251, + "group": 925, + "lv": 1, + "quality": 2, + "authorType": 3, + "seid": 3092105311, + "passiveLabel": 3, + "holyLabel": 3, + "strengthConsume": 30, + "price": 20, + "getLimit": 1 + }, + { + "id": 17261, + "group": 926, + "lv": 1, + "quality": 2, + "authorType": 3, + "seid": 3092106311, + "passiveLabel": 3, + "holyLabel": 3, + "strengthConsume": 30, + "price": 20, + "getLimit": 1 + }, + { + "id": 17212, + "group": 921, + "lv": 2, + "quality": 2, + "authorType": 3, + "seid": 3092201311, + "passiveLabel": 3, + "holyLabel": 3, + "strengthConsume": 0, + "price": 20, + "getLimit": 2 + }, + { + "id": 17222, + "group": 922, + "lv": 2, + "quality": 2, + "authorType": 3, + "seid": 3092202311, + "passiveLabel": 3, + "holyLabel": 3, + "strengthConsume": 0, + "price": 20, + "getLimit": 2 + }, + { + "id": 17232, + "group": 923, + "lv": 2, + "quality": 2, + "authorType": 3, + "seid": 3092203311, + "passiveLabel": 3, + "holyLabel": 3, + "strengthConsume": 0, + "price": 20, + "getLimit": 1 + }, + { + "id": 17242, + "group": 924, + "lv": 2, + "quality": 2, + "authorType": 3, + "seid": 3092204311, + "passiveLabel": 3, + "holyLabel": 3, + "strengthConsume": 0, + "price": 20, + "getLimit": 1 + }, + { + "id": 17252, + "group": 925, + "lv": 2, + "quality": 2, + "authorType": 3, + "seid": 3092205311, + "passiveLabel": 3, + "holyLabel": 3, + "strengthConsume": 0, + "price": 20, + "getLimit": 2 + }, + { + "id": 17262, + "group": 926, + "lv": 2, + "quality": 2, + "authorType": 3, + "seid": 3092206311, + "passiveLabel": 3, + "holyLabel": 3, + "strengthConsume": 0, + "price": 20, + "getLimit": 2 + }, + { + "id": 17111, + "group": 911, + "lv": 1, + "quality": 1, + "authorType": 3, + "seid": 3093101311, + "passiveLabel": 3, + "holyLabel": 3, + "strengthConsume": 10, + "price": 10, + "getLimit": 1 + }, + { + "id": 17121, + "group": 912, + "lv": 1, + "quality": 1, + "authorType": 3, + "seid": 3093102311, + "passiveLabel": 3, + "holyLabel": 3, + "strengthConsume": 10, + "price": 10, + "getLimit": 1 + }, + { + "id": 17131, + "group": 913, + "lv": 1, + "quality": 1, + "authorType": 3, + "seid": 3093103311, + "passiveLabel": 3, + "holyLabel": 3, + "strengthConsume": 10, + "price": 10, + "getLimit": 2 + }, + { + "id": 17141, + "group": 914, + "lv": 1, + "quality": 1, + "authorType": 3, + "seid": 3093104311, + "passiveLabel": 3, + "holyLabel": 3, + "strengthConsume": 10, + "price": 10, + "getLimit": 2 + }, + { + "id": 17151, + "group": 915, + "lv": 1, + "quality": 1, + "authorType": 3, + "seid": 3093105311, + "passiveLabel": 3, + "holyLabel": 3, + "strengthConsume": 10, + "price": 10, + "getLimit": 1 + }, + { + "id": 17161, + "group": 916, + "lv": 1, + "quality": 1, + "authorType": 3, + "seid": 3093106311, + "passiveLabel": 3, + "holyLabel": 3, + "strengthConsume": 10, + "price": 10, + "getLimit": 1 + }, + { + "id": 17171, + "group": 917, + "lv": 1, + "quality": 1, + "authorType": 3, + "seid": 3093107311, + "passiveLabel": 3, + "holyLabel": 3, + "strengthConsume": 10, + "price": 10, + "getLimit": 2 + }, + { + "id": 17181, + "group": 918, + "lv": 1, + "quality": 1, + "authorType": 3, + "seid": 3093108311, + "passiveLabel": 3, + "holyLabel": 3, + "strengthConsume": 10, + "price": 10, + "getLimit": 2 + }, + { + "id": 17112, + "group": 911, + "lv": 2, + "quality": 1, + "authorType": 3, + "seid": 3093201311, + "passiveLabel": 3, + "holyLabel": 3, + "strengthConsume": 0, + "price": 10, + "getLimit": 1 + }, + { + "id": 17122, + "group": 912, + "lv": 2, + "quality": 1, + "authorType": 3, + "seid": 3093202311, + "passiveLabel": 3, + "holyLabel": 3, + "strengthConsume": 0, + "price": 10, + "getLimit": 1 + }, + { + "id": 17132, + "group": 913, + "lv": 2, + "quality": 1, + "authorType": 3, + "seid": 3093203311, + "passiveLabel": 3, + "holyLabel": 3, + "strengthConsume": 0, + "price": 10, + "getLimit": 2 + }, + { + "id": 17172, + "group": 914, + "lv": 2, + "quality": 1, + "authorType": 3, + "seid": 3093204311, + "passiveLabel": 3, + "holyLabel": 3, + "strengthConsume": 0, + "price": 10, + "getLimit": 2 + }, + { + "id": 17152, + "group": 915, + "lv": 2, + "quality": 1, + "authorType": 3, + "seid": 3093205311, + "passiveLabel": 3, + "holyLabel": 3, + "strengthConsume": 0, + "price": 10, + "getLimit": 1 + }, + { + "id": 17162, + "group": 916, + "lv": 2, + "quality": 1, + "authorType": 3, + "seid": 3093206311, + "passiveLabel": 3, + "holyLabel": 3, + "strengthConsume": 0, + "price": 10, + "getLimit": 1 + }, + { + "id": 17172, + "group": 917, + "lv": 2, + "quality": 1, + "authorType": 3, + "seid": 3093207311, + "passiveLabel": 3, + "holyLabel": 3, + "strengthConsume": 0, + "price": 10, + "getLimit": 2 + }, + { + "id": 17182, + "group": 918, + "lv": 2, + "quality": 1, + "authorType": 3, + "seid": 3093208311, + "passiveLabel": 3, + "holyLabel": 3, + "strengthConsume": 0, + "price": 10, + "getLimit": 2 + }, + { + "id": 18311, + "group": 1031, + "lv": 1, + "quality": 3, + "authorType": 5, + "seid": 3091101311, + "passiveLabel": 5, + "holyLabel": 5, + "strengthConsume": 50, + "price": 30, + "getLimit": 1 + }, + { + "id": 18321, + "group": 1032, + "lv": 1, + "quality": 3, + "authorType": 5, + "seid": 3091102311, + "passiveLabel": 5, + "holyLabel": 5, + "strengthConsume": 50, + "price": 30, + "getLimit": 1 + }, + { + "id": 18331, + "group": 1033, + "lv": 1, + "quality": 3, + "authorType": 5, + "seid": 3091103311, + "passiveLabel": 5, + "holyLabel": 5, + "strengthConsume": 50, + "price": 30, + "getLimit": 2 + }, + { + "id": 18341, + "group": 1034, + "lv": 1, + "quality": 3, + "authorType": 5, + "seid": 3091104311, + "passiveLabel": 5, + "holyLabel": 5, + "strengthConsume": 50, + "price": 30, + "getLimit": 2 + }, + { + "id": 18312, + "group": 1031, + "lv": 2, + "quality": 3, + "authorType": 5, + "seid": 3091201311, + "passiveLabel": 5, + "holyLabel": 5, + "strengthConsume": 0, + "price": 30, + "getLimit": 1 + }, + { + "id": 18322, + "group": 1032, + "lv": 2, + "quality": 3, + "authorType": 5, + "seid": 3091202311, + "passiveLabel": 5, + "holyLabel": 5, + "strengthConsume": 0, + "price": 30, + "getLimit": 1 + }, + { + "id": 18332, + "group": 1033, + "lv": 2, + "quality": 3, + "authorType": 5, + "seid": 3091203311, + "passiveLabel": 5, + "holyLabel": 5, + "strengthConsume": 0, + "price": 30, + "getLimit": 2 + }, + { + "id": 18342, + "group": 1034, + "lv": 2, + "quality": 3, + "authorType": 5, + "seid": 3091204311, + "passiveLabel": 5, + "holyLabel": 5, + "strengthConsume": 0, + "price": 30, + "getLimit": 2 + }, + { + "id": 18211, + "group": 1021, + "lv": 1, + "quality": 2, + "authorType": 5, + "seid": 3092101311, + "passiveLabel": 5, + "holyLabel": 5, + "strengthConsume": 30, + "price": 20, + "getLimit": 1 + }, + { + "id": 18221, + "group": 1022, + "lv": 1, + "quality": 2, + "authorType": 5, + "seid": 3092102311, + "passiveLabel": 5, + "holyLabel": 5, + "strengthConsume": 30, + "price": 20, + "getLimit": 1 + }, + { + "id": 18231, + "group": 1023, + "lv": 1, + "quality": 2, + "authorType": 5, + "seid": 3092103311, + "passiveLabel": 5, + "holyLabel": 5, + "strengthConsume": 30, + "price": 20, + "getLimit": 2 + }, + { + "id": 18241, + "group": 1024, + "lv": 1, + "quality": 2, + "authorType": 5, + "seid": 3092104311, + "passiveLabel": 5, + "holyLabel": 5, + "strengthConsume": 30, + "price": 20, + "getLimit": 2 + }, + { + "id": 18251, + "group": 1025, + "lv": 1, + "quality": 2, + "authorType": 5, + "seid": 3092105311, + "passiveLabel": 5, + "holyLabel": 5, + "strengthConsume": 30, + "price": 20, + "getLimit": 1 + }, + { + "id": 18261, + "group": 1026, + "lv": 1, + "quality": 2, + "authorType": 5, + "seid": 3092106311, + "passiveLabel": 5, + "holyLabel": 5, + "strengthConsume": 30, + "price": 20, + "getLimit": 1 + }, + { + "id": 18212, + "group": 1021, + "lv": 2, + "quality": 2, + "authorType": 5, + "seid": 3092201311, + "passiveLabel": 5, + "holyLabel": 5, + "strengthConsume": 0, + "price": 20, + "getLimit": 2 + }, + { + "id": 18222, + "group": 1022, + "lv": 2, + "quality": 2, + "authorType": 5, + "seid": 3092202311, + "passiveLabel": 5, + "holyLabel": 5, + "strengthConsume": 0, + "price": 20, + "getLimit": 2 + }, + { + "id": 18232, + "group": 1023, + "lv": 2, + "quality": 2, + "authorType": 5, + "seid": 3092203311, + "passiveLabel": 5, + "holyLabel": 5, + "strengthConsume": 0, + "price": 20, + "getLimit": 1 + }, + { + "id": 18242, + "group": 1024, + "lv": 2, + "quality": 2, + "authorType": 5, + "seid": 3092204311, + "passiveLabel": 5, + "holyLabel": 5, + "strengthConsume": 0, + "price": 20, + "getLimit": 1 + }, + { + "id": 18252, + "group": 1025, + "lv": 2, + "quality": 2, + "authorType": 5, + "seid": 3092205311, + "passiveLabel": 5, + "holyLabel": 5, + "strengthConsume": 0, + "price": 20, + "getLimit": 2 + }, + { + "id": 18262, + "group": 1026, + "lv": 2, + "quality": 2, + "authorType": 5, + "seid": 3092206311, + "passiveLabel": 5, + "holyLabel": 5, + "strengthConsume": 0, + "price": 20, + "getLimit": 2 + }, + { + "id": 18111, + "group": 1011, + "lv": 1, + "quality": 1, + "authorType": 5, + "seid": 3093101311, + "passiveLabel": 5, + "holyLabel": 5, + "strengthConsume": 10, + "price": 10, + "getLimit": 1 + }, + { + "id": 18121, + "group": 1012, + "lv": 1, + "quality": 1, + "authorType": 5, + "seid": 3093102311, + "passiveLabel": 5, + "holyLabel": 5, + "strengthConsume": 10, + "price": 10, + "getLimit": 1 + }, + { + "id": 18131, + "group": 1013, + "lv": 1, + "quality": 1, + "authorType": 5, + "seid": 3093103311, + "passiveLabel": 5, + "holyLabel": 5, + "strengthConsume": 10, + "price": 10, + "getLimit": 2 + }, + { + "id": 18141, + "group": 1014, + "lv": 1, + "quality": 1, + "authorType": 5, + "seid": 3093104311, + "passiveLabel": 5, + "holyLabel": 5, + "strengthConsume": 10, + "price": 10, + "getLimit": 2 + }, + { + "id": 18151, + "group": 1015, + "lv": 1, + "quality": 1, + "authorType": 5, + "seid": 3093105311, + "passiveLabel": 5, + "holyLabel": 5, + "strengthConsume": 10, + "price": 10, + "getLimit": 1 + }, + { + "id": 18161, + "group": 1016, + "lv": 1, + "quality": 1, + "authorType": 5, + "seid": 3093106311, + "passiveLabel": 5, + "holyLabel": 5, + "strengthConsume": 10, + "price": 10, + "getLimit": 1 + }, + { + "id": 18171, + "group": 1017, + "lv": 1, + "quality": 1, + "authorType": 5, + "seid": 3093107311, + "passiveLabel": 5, + "holyLabel": 5, + "strengthConsume": 10, + "price": 10, + "getLimit": 2 + }, + { + "id": 18181, + "group": 1018, + "lv": 1, + "quality": 1, + "authorType": 5, + "seid": 3093108311, + "passiveLabel": 5, + "holyLabel": 5, + "strengthConsume": 10, + "price": 10, + "getLimit": 2 + }, + { + "id": 18112, + "group": 1011, + "lv": 2, + "quality": 1, + "authorType": 5, + "seid": 3093201311, + "passiveLabel": 5, + "holyLabel": 5, + "strengthConsume": 0, + "price": 10, + "getLimit": 1 + }, + { + "id": 18122, + "group": 1012, + "lv": 2, + "quality": 1, + "authorType": 5, + "seid": 3093202311, + "passiveLabel": 5, + "holyLabel": 5, + "strengthConsume": 0, + "price": 10, + "getLimit": 1 + }, + { + "id": 18132, + "group": 1013, + "lv": 2, + "quality": 1, + "authorType": 5, + "seid": 3093203311, + "passiveLabel": 5, + "holyLabel": 5, + "strengthConsume": 0, + "price": 10, + "getLimit": 2 + }, + { + "id": 18142, + "group": 1014, + "lv": 2, + "quality": 1, + "authorType": 5, + "seid": 3093204311, + "passiveLabel": 5, + "holyLabel": 5, + "strengthConsume": 0, + "price": 10, + "getLimit": 2 + }, + { + "id": 18152, + "group": 1015, + "lv": 2, + "quality": 1, + "authorType": 5, + "seid": 3093205311, + "passiveLabel": 5, + "holyLabel": 5, + "strengthConsume": 0, + "price": 10, + "getLimit": 1 + }, + { + "id": 18162, + "group": 1016, + "lv": 2, + "quality": 1, + "authorType": 5, + "seid": 3093206311, + "passiveLabel": 5, + "holyLabel": 5, + "strengthConsume": 0, + "price": 10, + "getLimit": 1 + }, + { + "id": 18172, + "group": 1017, + "lv": 2, + "quality": 1, + "authorType": 5, + "seid": 3093207311, + "passiveLabel": 5, + "holyLabel": 5, + "strengthConsume": 0, + "price": 10, + "getLimit": 2 + }, + { + "id": 18182, + "group": 1018, + "lv": 2, + "quality": 1, + "authorType": 5, + "seid": 3093208311, + "passiveLabel": 5, + "holyLabel": 5, + "strengthConsume": 0, + "price": 10, + "getLimit": 2 + } +] \ No newline at end of file diff --git a/shared/resource/jsons/dic_rougePassiveCollect.json b/shared/resource/jsons/dic_rougePassiveCollect.json new file mode 100644 index 000000000..0586d9d7b --- /dev/null +++ b/shared/resource/jsons/dic_rougePassiveCollect.json @@ -0,0 +1,68 @@ +[ + { + "id": 1, + "num": 5, + "content": "收集5张", + "reward": "31002&50|31001&100" + }, + { + "id": 2, + "num": 6, + "content": "收集6张", + "reward": "31002&50|31001&100" + }, + { + "id": 3, + "num": 10, + "content": "收集10张", + "reward": "31002&50|31001&200" + }, + { + "id": 4, + "num": 12, + "content": "收集12张", + "reward": "31002&50|31001&300" + }, + { + "id": 5, + "num": 14, + "content": "收集14张", + "reward": "31002&50|31001&400" + }, + { + "id": 6, + "num": 16, + "content": "收集16张", + "reward": "31002&50|31001&500" + }, + { + "id": 7, + "num": 18, + "content": "收集18张", + "reward": "31002&50|31001&600" + }, + { + "id": 8, + "num": 20, + "content": "收集20张", + "reward": "31002&50|31001&700" + }, + { + "id": 9, + "num": 22, + "content": "收集22张", + "reward": "31002&50|31001&800" + }, + { + "id": 10, + "num": 24, + "content": "收集24张", + "reward": "31002&50|31001&900" + }, + { + "id": 11, + "num": 26, + "content": "收集26张", + "reward": "31002&50|31001&1000" + } +] \ No newline at end of file diff --git a/shared/resource/jsons/dic_rougePassive_cardPlan.json b/shared/resource/jsons/dic_rougePassive_cardPlan.json new file mode 100644 index 000000000..8c4bf876e --- /dev/null +++ b/shared/resource/jsons/dic_rougePassive_cardPlan.json @@ -0,0 +1,1658 @@ +[ + { + "id": 1, + "planId": 1, + "cardId": 11311, + "weight": 1 + }, + { + "id": 2, + "planId": 1, + "cardId": 11321, + "weight": 1 + }, + { + "id": 3, + "planId": 1, + "cardId": 11331, + "weight": 1 + }, + { + "id": 4, + "planId": 1, + "cardId": 11341, + "weight": 1 + }, + { + "id": 5, + "planId": 1, + "cardId": 11312, + "weight": 1 + }, + { + "id": 6, + "planId": 1, + "cardId": 11322, + "weight": 1 + }, + { + "id": 7, + "planId": 1, + "cardId": 11332, + "weight": 1 + }, + { + "id": 8, + "planId": 1, + "cardId": 11342, + "weight": 1 + }, + { + "id": 9, + "planId": 1, + "cardId": 11211, + "weight": 1 + }, + { + "id": 10, + "planId": 1, + "cardId": 11221, + "weight": 1 + }, + { + "id": 11, + "planId": 1, + "cardId": 11231, + "weight": 1 + }, + { + "id": 12, + "planId": 1, + "cardId": 11241, + "weight": 1 + }, + { + "id": 13, + "planId": 1, + "cardId": 11251, + "weight": 1 + }, + { + "id": 14, + "planId": 1, + "cardId": 11261, + "weight": 1 + }, + { + "id": 15, + "planId": 1, + "cardId": 11212, + "weight": 1 + }, + { + "id": 16, + "planId": 1, + "cardId": 11222, + "weight": 1 + }, + { + "id": 17, + "planId": 1, + "cardId": 11232, + "weight": 1 + }, + { + "id": 18, + "planId": 1, + "cardId": 11242, + "weight": 1 + }, + { + "id": 19, + "planId": 1, + "cardId": 11252, + "weight": 1 + }, + { + "id": 20, + "planId": 1, + "cardId": 11262, + "weight": 1 + }, + { + "id": 21, + "planId": 1, + "cardId": 11111, + "weight": 1 + }, + { + "id": 22, + "planId": 1, + "cardId": 11121, + "weight": 1 + }, + { + "id": 23, + "planId": 1, + "cardId": 11131, + "weight": 1 + }, + { + "id": 24, + "planId": 1, + "cardId": 11141, + "weight": 1 + }, + { + "id": 25, + "planId": 1, + "cardId": 11151, + "weight": 1 + }, + { + "id": 26, + "planId": 1, + "cardId": 11161, + "weight": 1 + }, + { + "id": 27, + "planId": 1, + "cardId": 11171, + "weight": 1 + }, + { + "id": 28, + "planId": 1, + "cardId": 11181, + "weight": 1 + }, + { + "id": 29, + "planId": 1, + "cardId": 11112, + "weight": 1 + }, + { + "id": 30, + "planId": 1, + "cardId": 11122, + "weight": 1 + }, + { + "id": 31, + "planId": 1, + "cardId": 11132, + "weight": 1 + }, + { + "id": 32, + "planId": 1, + "cardId": 11142, + "weight": 1 + }, + { + "id": 33, + "planId": 1, + "cardId": 11152, + "weight": 1 + }, + { + "id": 34, + "planId": 1, + "cardId": 11162, + "weight": 1 + }, + { + "id": 35, + "planId": 1, + "cardId": 11172, + "weight": 1 + }, + { + "id": 36, + "planId": 1, + "cardId": 11182, + "weight": 1 + }, + { + "id": 37, + "planId": 1, + "cardId": 13311, + "weight": 1 + }, + { + "id": 38, + "planId": 1, + "cardId": 13321, + "weight": 1 + }, + { + "id": 39, + "planId": 1, + "cardId": 13331, + "weight": 1 + }, + { + "id": 40, + "planId": 1, + "cardId": 13341, + "weight": 1 + }, + { + "id": 41, + "planId": 1, + "cardId": 13312, + "weight": 1 + }, + { + "id": 42, + "planId": 1, + "cardId": 13322, + "weight": 1 + }, + { + "id": 43, + "planId": 1, + "cardId": 13332, + "weight": 1 + }, + { + "id": 44, + "planId": 1, + "cardId": 13342, + "weight": 1 + }, + { + "id": 45, + "planId": 1, + "cardId": 13211, + "weight": 1 + }, + { + "id": 46, + "planId": 1, + "cardId": 13221, + "weight": 1 + }, + { + "id": 47, + "planId": 1, + "cardId": 13231, + "weight": 1 + }, + { + "id": 48, + "planId": 1, + "cardId": 13241, + "weight": 1 + }, + { + "id": 49, + "planId": 1, + "cardId": 13251, + "weight": 1 + }, + { + "id": 50, + "planId": 1, + "cardId": 13261, + "weight": 1 + }, + { + "id": 51, + "planId": 1, + "cardId": 13212, + "weight": 1 + }, + { + "id": 52, + "planId": 1, + "cardId": 13222, + "weight": 1 + }, + { + "id": 53, + "planId": 1, + "cardId": 13232, + "weight": 1 + }, + { + "id": 54, + "planId": 1, + "cardId": 13242, + "weight": 1 + }, + { + "id": 55, + "planId": 1, + "cardId": 13252, + "weight": 1 + }, + { + "id": 56, + "planId": 1, + "cardId": 13262, + "weight": 1 + }, + { + "id": 57, + "planId": 1, + "cardId": 13111, + "weight": 1 + }, + { + "id": 58, + "planId": 1, + "cardId": 13121, + "weight": 1 + }, + { + "id": 59, + "planId": 1, + "cardId": 13131, + "weight": 1 + }, + { + "id": 60, + "planId": 1, + "cardId": 13141, + "weight": 1 + }, + { + "id": 61, + "planId": 1, + "cardId": 13151, + "weight": 1 + }, + { + "id": 62, + "planId": 1, + "cardId": 13161, + "weight": 1 + }, + { + "id": 63, + "planId": 1, + "cardId": 13171, + "weight": 1 + }, + { + "id": 64, + "planId": 1, + "cardId": 13181, + "weight": 1 + }, + { + "id": 65, + "planId": 1, + "cardId": 13112, + "weight": 1 + }, + { + "id": 66, + "planId": 1, + "cardId": 13122, + "weight": 1 + }, + { + "id": 67, + "planId": 1, + "cardId": 13132, + "weight": 1 + }, + { + "id": 68, + "planId": 1, + "cardId": 13142, + "weight": 1 + }, + { + "id": 69, + "planId": 1, + "cardId": 13152, + "weight": 1 + }, + { + "id": 70, + "planId": 1, + "cardId": 13162, + "weight": 1 + }, + { + "id": 71, + "planId": 1, + "cardId": 13172, + "weight": 1 + }, + { + "id": 72, + "planId": 1, + "cardId": 13182, + "weight": 1 + }, + { + "id": 73, + "planId": 1, + "cardId": 14311, + "weight": 1 + }, + { + "id": 74, + "planId": 1, + "cardId": 14321, + "weight": 1 + }, + { + "id": 75, + "planId": 1, + "cardId": 14331, + "weight": 1 + }, + { + "id": 76, + "planId": 1, + "cardId": 14341, + "weight": 1 + }, + { + "id": 77, + "planId": 1, + "cardId": 14312, + "weight": 1 + }, + { + "id": 78, + "planId": 1, + "cardId": 14322, + "weight": 1 + }, + { + "id": 79, + "planId": 1, + "cardId": 14332, + "weight": 1 + }, + { + "id": 80, + "planId": 1, + "cardId": 14342, + "weight": 1 + }, + { + "id": 81, + "planId": 1, + "cardId": 14211, + "weight": 1 + }, + { + "id": 82, + "planId": 1, + "cardId": 14221, + "weight": 1 + }, + { + "id": 83, + "planId": 1, + "cardId": 14231, + "weight": 1 + }, + { + "id": 84, + "planId": 1, + "cardId": 14241, + "weight": 1 + }, + { + "id": 85, + "planId": 1, + "cardId": 14251, + "weight": 1 + }, + { + "id": 86, + "planId": 1, + "cardId": 14261, + "weight": 1 + }, + { + "id": 87, + "planId": 1, + "cardId": 14212, + "weight": 1 + }, + { + "id": 88, + "planId": 1, + "cardId": 14222, + "weight": 1 + }, + { + "id": 89, + "planId": 1, + "cardId": 14232, + "weight": 1 + }, + { + "id": 90, + "planId": 1, + "cardId": 14242, + "weight": 1 + }, + { + "id": 91, + "planId": 1, + "cardId": 14252, + "weight": 1 + }, + { + "id": 92, + "planId": 1, + "cardId": 14262, + "weight": 1 + }, + { + "id": 93, + "planId": 1, + "cardId": 14111, + "weight": 1 + }, + { + "id": 94, + "planId": 1, + "cardId": 14121, + "weight": 1 + }, + { + "id": 95, + "planId": 1, + "cardId": 14131, + "weight": 1 + }, + { + "id": 96, + "planId": 1, + "cardId": 14141, + "weight": 1 + }, + { + "id": 97, + "planId": 1, + "cardId": 14151, + "weight": 1 + }, + { + "id": 98, + "planId": 1, + "cardId": 14161, + "weight": 1 + }, + { + "id": 99, + "planId": 1, + "cardId": 14171, + "weight": 1 + }, + { + "id": 100, + "planId": 1, + "cardId": 14181, + "weight": 1 + }, + { + "id": 101, + "planId": 1, + "cardId": 14112, + "weight": 1 + }, + { + "id": 102, + "planId": 1, + "cardId": 14122, + "weight": 1 + }, + { + "id": 103, + "planId": 1, + "cardId": 14132, + "weight": 1 + }, + { + "id": 104, + "planId": 1, + "cardId": 14142, + "weight": 1 + }, + { + "id": 105, + "planId": 1, + "cardId": 14152, + "weight": 1 + }, + { + "id": 106, + "planId": 1, + "cardId": 14162, + "weight": 1 + }, + { + "id": 107, + "planId": 1, + "cardId": 14172, + "weight": 1 + }, + { + "id": 108, + "planId": 1, + "cardId": 14182, + "weight": 1 + }, + { + "id": 109, + "planId": 2, + "cardId": 13122, + "weight": 1 + }, + { + "id": 110, + "planId": 2, + "cardId": 13132, + "weight": 1 + }, + { + "id": 111, + "planId": 2, + "cardId": 13142, + "weight": 1 + }, + { + "id": 112, + "planId": 2, + "cardId": 13152, + "weight": 1 + }, + { + "id": 113, + "planId": 2, + "cardId": 13162, + "weight": 1 + }, + { + "id": 114, + "planId": 2, + "cardId": 13172, + "weight": 1 + }, + { + "id": 115, + "planId": 2, + "cardId": 13182, + "weight": 1 + }, + { + "id": 116, + "planId": 2, + "cardId": 14311, + "weight": 1 + }, + { + "id": 117, + "planId": 2, + "cardId": 14321, + "weight": 1 + }, + { + "id": 118, + "planId": 2, + "cardId": 14331, + "weight": 1 + }, + { + "id": 119, + "planId": 2, + "cardId": 14341, + "weight": 1 + }, + { + "id": 120, + "planId": 2, + "cardId": 14312, + "weight": 1 + }, + { + "id": 121, + "planId": 2, + "cardId": 14322, + "weight": 1 + }, + { + "id": 122, + "planId": 2, + "cardId": 14332, + "weight": 1 + }, + { + "id": 123, + "planId": 2, + "cardId": 14342, + "weight": 1 + }, + { + "id": 124, + "planId": 2, + "cardId": 14211, + "weight": 1 + }, + { + "id": 125, + "planId": 2, + "cardId": 14221, + "weight": 1 + }, + { + "id": 126, + "planId": 2, + "cardId": 14231, + "weight": 1 + }, + { + "id": 127, + "planId": 2, + "cardId": 14241, + "weight": 1 + }, + { + "id": 128, + "planId": 2, + "cardId": 14251, + "weight": 1 + }, + { + "id": 129, + "planId": 2, + "cardId": 14261, + "weight": 1 + }, + { + "id": 130, + "planId": 2, + "cardId": 14212, + "weight": 1 + }, + { + "id": 131, + "planId": 2, + "cardId": 14222, + "weight": 1 + }, + { + "id": 132, + "planId": 2, + "cardId": 14232, + "weight": 1 + }, + { + "id": 133, + "planId": 2, + "cardId": 14242, + "weight": 1 + }, + { + "id": 134, + "planId": 2, + "cardId": 14252, + "weight": 1 + }, + { + "id": 135, + "planId": 2, + "cardId": 14262, + "weight": 1 + }, + { + "id": 136, + "planId": 2, + "cardId": 14111, + "weight": 1 + }, + { + "id": 137, + "planId": 2, + "cardId": 14121, + "weight": 1 + }, + { + "id": 138, + "planId": 2, + "cardId": 14131, + "weight": 1 + }, + { + "id": 139, + "planId": 2, + "cardId": 14141, + "weight": 1 + }, + { + "id": 140, + "planId": 2, + "cardId": 14151, + "weight": 1 + }, + { + "id": 141, + "planId": 2, + "cardId": 14161, + "weight": 1 + }, + { + "id": 142, + "planId": 2, + "cardId": 14171, + "weight": 1 + }, + { + "id": 143, + "planId": 2, + "cardId": 14181, + "weight": 1 + }, + { + "id": 144, + "planId": 2, + "cardId": 14112, + "weight": 1 + }, + { + "id": 145, + "planId": 2, + "cardId": 14122, + "weight": 1 + }, + { + "id": 146, + "planId": 2, + "cardId": 14132, + "weight": 1 + }, + { + "id": 147, + "planId": 2, + "cardId": 14142, + "weight": 1 + }, + { + "id": 148, + "planId": 2, + "cardId": 14152, + "weight": 1 + }, + { + "id": 149, + "planId": 2, + "cardId": 14162, + "weight": 1 + }, + { + "id": 150, + "planId": 2, + "cardId": 14172, + "weight": 1 + }, + { + "id": 151, + "planId": 2, + "cardId": 14182, + "weight": 1 + }, + { + "id": 152, + "planId": 2, + "cardId": 11311, + "weight": 1 + }, + { + "id": 153, + "planId": 2, + "cardId": 11321, + "weight": 1 + }, + { + "id": 154, + "planId": 2, + "cardId": 11331, + "weight": 1 + }, + { + "id": 155, + "planId": 2, + "cardId": 11341, + "weight": 1 + }, + { + "id": 156, + "planId": 2, + "cardId": 11312, + "weight": 1 + }, + { + "id": 157, + "planId": 2, + "cardId": 11322, + "weight": 1 + }, + { + "id": 158, + "planId": 2, + "cardId": 11332, + "weight": 1 + }, + { + "id": 159, + "planId": 2, + "cardId": 11342, + "weight": 1 + }, + { + "id": 160, + "planId": 2, + "cardId": 11211, + "weight": 1 + }, + { + "id": 161, + "planId": 2, + "cardId": 11221, + "weight": 1 + }, + { + "id": 162, + "planId": 2, + "cardId": 11231, + "weight": 1 + }, + { + "id": 163, + "planId": 2, + "cardId": 11241, + "weight": 1 + }, + { + "id": 164, + "planId": 2, + "cardId": 11251, + "weight": 1 + }, + { + "id": 165, + "planId": 2, + "cardId": 11261, + "weight": 1 + }, + { + "id": 166, + "planId": 2, + "cardId": 11212, + "weight": 1 + }, + { + "id": 167, + "planId": 2, + "cardId": 11222, + "weight": 1 + }, + { + "id": 168, + "planId": 2, + "cardId": 11232, + "weight": 1 + }, + { + "id": 169, + "planId": 2, + "cardId": 11242, + "weight": 1 + }, + { + "id": 170, + "planId": 2, + "cardId": 11252, + "weight": 1 + }, + { + "id": 171, + "planId": 2, + "cardId": 11262, + "weight": 1 + }, + { + "id": 172, + "planId": 2, + "cardId": 11111, + "weight": 1 + }, + { + "id": 173, + "planId": 2, + "cardId": 11121, + "weight": 1 + }, + { + "id": 174, + "planId": 2, + "cardId": 11131, + "weight": 1 + }, + { + "id": 175, + "planId": 2, + "cardId": 11141, + "weight": 1 + }, + { + "id": 176, + "planId": 2, + "cardId": 11151, + "weight": 1 + }, + { + "id": 177, + "planId": 2, + "cardId": 11161, + "weight": 1 + }, + { + "id": 178, + "planId": 2, + "cardId": 11171, + "weight": 1 + }, + { + "id": 179, + "planId": 2, + "cardId": 11181, + "weight": 1 + }, + { + "id": 180, + "planId": 2, + "cardId": 11112, + "weight": 1 + }, + { + "id": 181, + "planId": 2, + "cardId": 11122, + "weight": 1 + }, + { + "id": 182, + "planId": 2, + "cardId": 11132, + "weight": 1 + }, + { + "id": 183, + "planId": 3, + "cardId": 11142, + "weight": 1 + }, + { + "id": 184, + "planId": 3, + "cardId": 11152, + "weight": 1 + }, + { + "id": 185, + "planId": 3, + "cardId": 11162, + "weight": 1 + }, + { + "id": 186, + "planId": 3, + "cardId": 11172, + "weight": 1 + }, + { + "id": 187, + "planId": 3, + "cardId": 11182, + "weight": 1 + }, + { + "id": 188, + "planId": 3, + "cardId": 13311, + "weight": 1 + }, + { + "id": 189, + "planId": 3, + "cardId": 11311, + "weight": 1 + }, + { + "id": 190, + "planId": 3, + "cardId": 11321, + "weight": 1 + }, + { + "id": 191, + "planId": 3, + "cardId": 11331, + "weight": 1 + }, + { + "id": 192, + "planId": 3, + "cardId": 11341, + "weight": 1 + }, + { + "id": 193, + "planId": 3, + "cardId": 11312, + "weight": 1 + }, + { + "id": 194, + "planId": 3, + "cardId": 11322, + "weight": 1 + }, + { + "id": 195, + "planId": 3, + "cardId": 11332, + "weight": 1 + }, + { + "id": 196, + "planId": 3, + "cardId": 11342, + "weight": 1 + }, + { + "id": 197, + "planId": 3, + "cardId": 11211, + "weight": 1 + }, + { + "id": 198, + "planId": 3, + "cardId": 11221, + "weight": 1 + }, + { + "id": 199, + "planId": 3, + "cardId": 11231, + "weight": 1 + }, + { + "id": 200, + "planId": 3, + "cardId": 11241, + "weight": 1 + }, + { + "id": 201, + "planId": 3, + "cardId": 11251, + "weight": 1 + }, + { + "id": 202, + "planId": 3, + "cardId": 11261, + "weight": 1 + }, + { + "id": 203, + "planId": 3, + "cardId": 11212, + "weight": 1 + }, + { + "id": 204, + "planId": 3, + "cardId": 11222, + "weight": 1 + }, + { + "id": 205, + "planId": 3, + "cardId": 11232, + "weight": 1 + }, + { + "id": 206, + "planId": 3, + "cardId": 11242, + "weight": 1 + }, + { + "id": 207, + "planId": 4, + "cardId": 11252, + "weight": 1 + }, + { + "id": 208, + "planId": 4, + "cardId": 11262, + "weight": 1 + }, + { + "id": 209, + "planId": 4, + "cardId": 11111, + "weight": 1 + }, + { + "id": 210, + "planId": 4, + "cardId": 11121, + "weight": 1 + }, + { + "id": 211, + "planId": 4, + "cardId": 11131, + "weight": 1 + }, + { + "id": 212, + "planId": 4, + "cardId": 11141, + "weight": 1 + }, + { + "id": 213, + "planId": 4, + "cardId": 11151, + "weight": 1 + }, + { + "id": 214, + "planId": 4, + "cardId": 11161, + "weight": 1 + }, + { + "id": 215, + "planId": 4, + "cardId": 11171, + "weight": 1 + }, + { + "id": 216, + "planId": 4, + "cardId": 11181, + "weight": 1 + }, + { + "id": 217, + "planId": 4, + "cardId": 11112, + "weight": 1 + }, + { + "id": 218, + "planId": 4, + "cardId": 11122, + "weight": 1 + }, + { + "id": 219, + "planId": 4, + "cardId": 11132, + "weight": 1 + }, + { + "id": 220, + "planId": 4, + "cardId": 11142, + "weight": 1 + }, + { + "id": 221, + "planId": 4, + "cardId": 11152, + "weight": 1 + }, + { + "id": 222, + "planId": 4, + "cardId": 11162, + "weight": 1 + }, + { + "id": 223, + "planId": 4, + "cardId": 11172, + "weight": 1 + }, + { + "id": 224, + "planId": 4, + "cardId": 11182, + "weight": 1 + }, + { + "id": 225, + "planId": 4, + "cardId": 13311, + "weight": 1 + }, + { + "id": 226, + "planId": 4, + "cardId": 11311, + "weight": 1 + }, + { + "id": 227, + "planId": 4, + "cardId": 11321, + "weight": 1 + }, + { + "id": 228, + "planId": 4, + "cardId": 11331, + "weight": 1 + }, + { + "id": 229, + "planId": 4, + "cardId": 11341, + "weight": 1 + }, + { + "id": 230, + "planId": 4, + "cardId": 11312, + "weight": 1 + }, + { + "id": 231, + "planId": 4, + "cardId": 11322, + "weight": 1 + }, + { + "id": 232, + "planId": 4, + "cardId": 11332, + "weight": 1 + }, + { + "id": 233, + "planId": 4, + "cardId": 11342, + "weight": 1 + }, + { + "id": 234, + "planId": 4, + "cardId": 11211, + "weight": 1 + }, + { + "id": 235, + "planId": 4, + "cardId": 11221, + "weight": 1 + }, + { + "id": 236, + "planId": 4, + "cardId": 11231, + "weight": 1 + }, + { + "id": 237, + "planId": 4, + "cardId": 11241, + "weight": 1 + }, + { + "id": 238, + "planId": 4, + "cardId": 11251, + "weight": 1 + }, + { + "id": 239, + "planId": 4, + "cardId": 11261, + "weight": 1 + }, + { + "id": 240, + "planId": 4, + "cardId": 11212, + "weight": 1 + }, + { + "id": 241, + "planId": 4, + "cardId": 11222, + "weight": 1 + }, + { + "id": 242, + "planId": 4, + "cardId": 11232, + "weight": 1 + }, + { + "id": 243, + "planId": 4, + "cardId": 11242, + "weight": 1 + }, + { + "id": 244, + "planId": 4, + "cardId": 11252, + "weight": 1 + }, + { + "id": 245, + "planId": 4, + "cardId": 11262, + "weight": 1 + }, + { + "id": 246, + "planId": 4, + "cardId": 11111, + "weight": 1 + }, + { + "id": 247, + "planId": 4, + "cardId": 11121, + "weight": 1 + }, + { + "id": 248, + "planId": 4, + "cardId": 11131, + "weight": 1 + }, + { + "id": 249, + "planId": 4, + "cardId": 11141, + "weight": 1 + }, + { + "id": 250, + "planId": 4, + "cardId": 11151, + "weight": 1 + }, + { + "id": 251, + "planId": 4, + "cardId": 11161, + "weight": 1 + }, + { + "id": 252, + "planId": 4, + "cardId": 11171, + "weight": 1 + }, + { + "id": 253, + "planId": 4, + "cardId": 11181, + "weight": 1 + }, + { + "id": 254, + "planId": 4, + "cardId": 11112, + "weight": 1 + }, + { + "id": 255, + "planId": 4, + "cardId": 11122, + "weight": 1 + }, + { + "id": 256, + "planId": 4, + "cardId": 11132, + "weight": 1 + }, + { + "id": 257, + "planId": 4, + "cardId": 11142, + "weight": 1 + }, + { + "id": 258, + "planId": 4, + "cardId": 11152, + "weight": 1 + }, + { + "id": 259, + "planId": 4, + "cardId": 11162, + "weight": 1 + }, + { + "id": 260, + "planId": 4, + "cardId": 11172, + "weight": 1 + }, + { + "id": 261, + "planId": 4, + "cardId": 11182, + "weight": 1 + }, + { + "id": 262, + "planId": 4, + "cardId": 13311, + "weight": 1 + }, + { + "id": 263, + "planId": 4, + "cardId": 11311, + "weight": 1 + }, + { + "id": 264, + "planId": 4, + "cardId": 11321, + "weight": 1 + }, + { + "id": 265, + "planId": 4, + "cardId": 11331, + "weight": 1 + }, + { + "id": 266, + "planId": 4, + "cardId": 11341, + "weight": 1 + }, + { + "id": 267, + "planId": 4, + "cardId": 11312, + "weight": 1 + }, + { + "id": 268, + "planId": 4, + "cardId": 11322, + "weight": 1 + }, + { + "id": 269, + "planId": 4, + "cardId": 11332, + "weight": 1 + }, + { + "id": 270, + "planId": 4, + "cardId": 11342, + "weight": 1 + }, + { + "id": 271, + "planId": 4, + "cardId": 11211, + "weight": 1 + }, + { + "id": 272, + "planId": 4, + "cardId": 11221, + "weight": 1 + }, + { + "id": 273, + "planId": 4, + "cardId": 11231, + "weight": 1 + }, + { + "id": 274, + "planId": 4, + "cardId": 11241, + "weight": 1 + }, + { + "id": 275, + "planId": 4, + "cardId": 11251, + "weight": 1 + }, + { + "id": 276, + "planId": 4, + "cardId": 11261, + "weight": 1 + } +] \ No newline at end of file diff --git a/shared/resource/jsons/dic_rougeQuestionMarkPlan.json b/shared/resource/jsons/dic_rougeQuestionMarkPlan.json new file mode 100644 index 000000000..c2b50f623 --- /dev/null +++ b/shared/resource/jsons/dic_rougeQuestionMarkPlan.json @@ -0,0 +1,56 @@ +[ + { + "id": 1, + "questionMarkPlanId": 1, + "questionMarkIndex": 1, + "nodeType": 1, + "name": "普通关", + "param": 101110101, + "weight": 1 + }, + { + "id": 2, + "questionMarkPlanId": 1, + "questionMarkIndex": 1, + "nodeType": 1, + "name": "普通关", + "param": 101110201, + "weight": 1 + }, + { + "id": 3, + "questionMarkPlanId": 1, + "questionMarkIndex": 2, + "nodeType": 2, + "name": "精英关", + "param": 101110301, + "weight": 1 + }, + { + "id": 4, + "questionMarkPlanId": 1, + "questionMarkIndex": 2, + "nodeType": 2, + "name": "精英关", + "param": 101110401, + "weight": 1 + }, + { + "id": 5, + "questionMarkPlanId": 1, + "questionMarkIndex": 3, + "nodeType": 4, + "name": "商店", + "param": 0, + "weight": 2 + }, + { + "id": 6, + "questionMarkPlanId": 1, + "questionMarkIndex": 4, + "nodeType": 8, + "name": "随机事件", + "param": 0, + "weight": 2 + } +] \ No newline at end of file diff --git a/shared/resource/jsons/dic_rougeRandomEventPlan.json b/shared/resource/jsons/dic_rougeRandomEventPlan.json new file mode 100644 index 000000000..ea01e4544 --- /dev/null +++ b/shared/resource/jsons/dic_rougeRandomEventPlan.json @@ -0,0 +1,14 @@ +[ + { + "id": 1, + "planId": 1, + "randomEventId": 1, + "weight": 1 + }, + { + "id": 2, + "planId": 1, + "randomEventId": 2, + "weight": 1 + } +] \ No newline at end of file diff --git a/shared/resource/jsons/dic_rougeScoreReward.json b/shared/resource/jsons/dic_rougeScoreReward.json new file mode 100644 index 000000000..4ad1f3c50 --- /dev/null +++ b/shared/resource/jsons/dic_rougeScoreReward.json @@ -0,0 +1,44 @@ +[ + { + "id": 1, + "index": 1, + "score": 10, + "reward": "31002&50" + }, + { + "id": 2, + "index": 2, + "score": 20, + "reward": "31002&60" + }, + { + "id": 3, + "index": 3, + "score": 30, + "reward": "31002&70" + }, + { + "id": 4, + "index": 4, + "score": 40, + "reward": "31002&80" + }, + { + "id": 5, + "index": 5, + "score": 50, + "reward": "31002&90" + }, + { + "id": 6, + "index": 6, + "score": 60, + "reward": "31002&100" + }, + { + "id": 7, + "index": 7, + "score": 70, + "reward": "31002&110" + } +] \ No newline at end of file diff --git a/shared/resource/jsons/dic_rougeShopPlan.json b/shared/resource/jsons/dic_rougeShopPlan.json new file mode 100644 index 000000000..feb9df5ea --- /dev/null +++ b/shared/resource/jsons/dic_rougeShopPlan.json @@ -0,0 +1,5242 @@ +[ + { + "id": 1, + "planId": 10101, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 2, + "planId": 10102, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 3, + "planId": 10103, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 4, + "planId": 10104, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 5, + "planId": 10105, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 6, + "planId": 20101, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 7, + "planId": 20102, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 8, + "planId": 20103, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 9, + "planId": 20104, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 10, + "planId": 20105, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 11, + "planId": 20106, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 12, + "planId": 20107, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 13, + "planId": 20108, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 14, + "planId": 20109, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 15, + "planId": 20110, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 16, + "planId": 30101, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 17, + "planId": 30102, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 18, + "planId": 30103, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 19, + "planId": 30104, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 20, + "planId": 30105, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 21, + "planId": 30106, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 22, + "planId": 30107, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 23, + "planId": 30108, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 24, + "planId": 30109, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 25, + "planId": 30110, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 26, + "planId": 30111, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 27, + "planId": 30112, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 28, + "planId": 30113, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 29, + "planId": 30114, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 30, + "planId": 30115, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 31, + "planId": 30201, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 32, + "planId": 30202, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 33, + "planId": 30203, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 34, + "planId": 30204, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 35, + "planId": 30205, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 36, + "planId": 30206, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 37, + "planId": 30207, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 38, + "planId": 30208, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 39, + "planId": 30209, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 40, + "planId": 30210, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 41, + "planId": 30211, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 42, + "planId": 30212, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 43, + "planId": 30213, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 44, + "planId": 30214, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 45, + "planId": 30215, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 46, + "planId": 30301, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 47, + "planId": 30302, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 48, + "planId": 30303, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 49, + "planId": 30304, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 50, + "planId": 30305, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 51, + "planId": 30306, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 52, + "planId": 30307, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 53, + "planId": 30308, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 54, + "planId": 30309, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 55, + "planId": 30310, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 56, + "planId": 30311, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 57, + "planId": 30312, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 58, + "planId": 30313, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 59, + "planId": 30314, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 60, + "planId": 30315, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 61, + "planId": 30401, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 62, + "planId": 30402, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 63, + "planId": 30403, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 64, + "planId": 30404, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 65, + "planId": 30405, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 66, + "planId": 30406, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 67, + "planId": 30407, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 68, + "planId": 30408, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 69, + "planId": 30409, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 70, + "planId": 30410, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 71, + "planId": 30411, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 72, + "planId": 30412, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 73, + "planId": 30413, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 74, + "planId": 30414, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 75, + "planId": 30415, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 76, + "planId": 30501, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 77, + "planId": 30502, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 78, + "planId": 30503, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 79, + "planId": 30504, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 80, + "planId": 30505, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 81, + "planId": 30506, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 82, + "planId": 30507, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 83, + "planId": 30508, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 84, + "planId": 30509, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 85, + "planId": 30510, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 86, + "planId": 30511, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 87, + "planId": 30512, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 88, + "planId": 30513, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 89, + "planId": 30514, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 90, + "planId": 30515, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 91, + "planId": 30516, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 92, + "planId": 30517, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 93, + "planId": 30518, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 94, + "planId": 30519, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 95, + "planId": 30520, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 96, + "planId": 40101, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 97, + "planId": 40102, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 98, + "planId": 40103, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 99, + "planId": 40104, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 100, + "planId": 40105, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 101, + "planId": 40106, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 102, + "planId": 40107, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 103, + "planId": 40108, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 104, + "planId": 40109, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 105, + "planId": 40110, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 106, + "planId": 40111, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 107, + "planId": 40112, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 108, + "planId": 40113, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 109, + "planId": 40114, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 110, + "planId": 40115, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 111, + "planId": 40201, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 112, + "planId": 40202, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 113, + "planId": 40203, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 114, + "planId": 40204, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 115, + "planId": 40205, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 116, + "planId": 40206, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 117, + "planId": 40207, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 118, + "planId": 40208, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 119, + "planId": 40209, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 120, + "planId": 40210, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 121, + "planId": 40211, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 122, + "planId": 40212, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 123, + "planId": 40213, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 124, + "planId": 40214, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 125, + "planId": 40215, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 126, + "planId": 40301, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 127, + "planId": 40302, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 128, + "planId": 40303, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 129, + "planId": 40304, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 130, + "planId": 40305, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 131, + "planId": 40306, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 132, + "planId": 40307, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 133, + "planId": 40308, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 134, + "planId": 40309, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 135, + "planId": 40310, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 136, + "planId": 40311, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 137, + "planId": 40312, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 138, + "planId": 40313, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 139, + "planId": 40314, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 140, + "planId": 40315, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 141, + "planId": 40401, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 142, + "planId": 40402, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 143, + "planId": 40403, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 144, + "planId": 40404, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 145, + "planId": 40405, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 146, + "planId": 40406, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 147, + "planId": 40407, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 148, + "planId": 40408, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 149, + "planId": 40409, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 150, + "planId": 40410, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 151, + "planId": 40411, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 152, + "planId": 40412, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 153, + "planId": 40413, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 154, + "planId": 40414, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 155, + "planId": 40415, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 156, + "planId": 40501, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 157, + "planId": 40502, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 158, + "planId": 40503, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 159, + "planId": 40504, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 160, + "planId": 40505, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 161, + "planId": 40506, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 162, + "planId": 40507, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 163, + "planId": 40508, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 164, + "planId": 40509, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 165, + "planId": 40510, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 166, + "planId": 40511, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 167, + "planId": 40512, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 168, + "planId": 40513, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 169, + "planId": 40514, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 170, + "planId": 40515, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 171, + "planId": 40516, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 172, + "planId": 40517, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 173, + "planId": 40518, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 174, + "planId": 40519, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 175, + "planId": 40520, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 176, + "planId": 50101, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 177, + "planId": 50102, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 178, + "planId": 50103, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 179, + "planId": 50104, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 180, + "planId": 50105, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 181, + "planId": 50106, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 182, + "planId": 50107, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 183, + "planId": 50108, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 184, + "planId": 50109, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 185, + "planId": 50110, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 186, + "planId": 50111, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 187, + "planId": 50112, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 188, + "planId": 50113, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 189, + "planId": 50114, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 190, + "planId": 50115, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 191, + "planId": 50201, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 192, + "planId": 50202, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 193, + "planId": 50203, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 194, + "planId": 50204, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 195, + "planId": 50205, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 196, + "planId": 50206, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 197, + "planId": 50207, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 198, + "planId": 50208, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 199, + "planId": 50209, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 200, + "planId": 50210, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 201, + "planId": 50211, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 202, + "planId": 50212, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 203, + "planId": 50213, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 204, + "planId": 50214, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 205, + "planId": 50215, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 206, + "planId": 50301, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 207, + "planId": 50302, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 208, + "planId": 50303, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 209, + "planId": 50304, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 210, + "planId": 50305, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 211, + "planId": 50306, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 212, + "planId": 50307, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 213, + "planId": 50308, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 214, + "planId": 50309, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 215, + "planId": 50310, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 216, + "planId": 50311, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 217, + "planId": 50312, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 218, + "planId": 50313, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 219, + "planId": 50314, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 220, + "planId": 50315, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 221, + "planId": 50401, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 222, + "planId": 50402, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 223, + "planId": 50403, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 224, + "planId": 50404, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 225, + "planId": 50405, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 226, + "planId": 50406, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 227, + "planId": 50407, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 228, + "planId": 50408, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 229, + "planId": 50409, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 230, + "planId": 50410, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 231, + "planId": 50411, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 232, + "planId": 50412, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 233, + "planId": 50413, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 234, + "planId": 50414, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 235, + "planId": 50415, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 236, + "planId": 50501, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 237, + "planId": 50502, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 238, + "planId": 50503, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 239, + "planId": 50504, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 240, + "planId": 50505, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 241, + "planId": 50506, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 242, + "planId": 50507, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 243, + "planId": 50508, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 244, + "planId": 50509, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 245, + "planId": 50510, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 246, + "planId": 50511, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 247, + "planId": 50512, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 248, + "planId": 50513, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 249, + "planId": 50514, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 250, + "planId": 50515, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 251, + "planId": 50516, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 252, + "planId": 50517, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 253, + "planId": 50518, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 254, + "planId": 50519, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 255, + "planId": 50520, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 256, + "planId": 60101, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 257, + "planId": 60102, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 258, + "planId": 60103, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 259, + "planId": 60104, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 260, + "planId": 60105, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 261, + "planId": 60106, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 262, + "planId": 60107, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 263, + "planId": 60108, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 264, + "planId": 60109, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 265, + "planId": 60110, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 266, + "planId": 60111, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 267, + "planId": 60112, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 268, + "planId": 60113, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 269, + "planId": 60114, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 270, + "planId": 60115, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 271, + "planId": 60201, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 272, + "planId": 60202, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 273, + "planId": 60203, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 274, + "planId": 60204, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 275, + "planId": 60205, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 276, + "planId": 60206, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 277, + "planId": 60207, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 278, + "planId": 60208, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 279, + "planId": 60209, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 280, + "planId": 60210, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 281, + "planId": 60211, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 282, + "planId": 60212, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 283, + "planId": 60213, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 284, + "planId": 60214, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 285, + "planId": 60215, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 286, + "planId": 60301, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 287, + "planId": 60302, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 288, + "planId": 60303, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 289, + "planId": 60304, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 290, + "planId": 60305, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 291, + "planId": 60306, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 292, + "planId": 60307, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 293, + "planId": 60308, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 294, + "planId": 60309, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 295, + "planId": 60310, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 296, + "planId": 60311, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 297, + "planId": 60312, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 298, + "planId": 60313, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 299, + "planId": 60314, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 300, + "planId": 60315, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 301, + "planId": 60401, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 302, + "planId": 60402, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 303, + "planId": 60403, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 304, + "planId": 60404, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 305, + "planId": 60405, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 306, + "planId": 60406, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 307, + "planId": 60407, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 308, + "planId": 60408, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 309, + "planId": 60409, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 310, + "planId": 60410, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 311, + "planId": 60411, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 312, + "planId": 60412, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 313, + "planId": 60413, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 314, + "planId": 60414, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 315, + "planId": 60415, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 316, + "planId": 60501, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 317, + "planId": 60502, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 318, + "planId": 60503, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 319, + "planId": 60504, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 320, + "planId": 60505, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 321, + "planId": 60506, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 322, + "planId": 60507, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 323, + "planId": 60508, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 324, + "planId": 60509, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 325, + "planId": 60510, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 326, + "planId": 60511, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 327, + "planId": 60512, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 328, + "planId": 60513, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 329, + "planId": 60514, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 330, + "planId": 60515, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 331, + "planId": 60516, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 332, + "planId": 60517, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 333, + "planId": 60518, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 334, + "planId": 60519, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 335, + "planId": 60520, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 336, + "planId": 70101, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 337, + "planId": 70102, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 338, + "planId": 70103, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 339, + "planId": 70104, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 340, + "planId": 70105, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 341, + "planId": 70106, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 342, + "planId": 70107, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 343, + "planId": 70108, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 344, + "planId": 70109, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 345, + "planId": 70110, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 346, + "planId": 70111, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 347, + "planId": 70112, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 348, + "planId": 70113, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 349, + "planId": 70114, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 350, + "planId": 70115, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 351, + "planId": 70201, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 352, + "planId": 70202, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 353, + "planId": 70203, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 354, + "planId": 70204, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 355, + "planId": 70205, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 356, + "planId": 70206, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 357, + "planId": 70207, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 358, + "planId": 70208, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 359, + "planId": 70209, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 360, + "planId": 70210, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 361, + "planId": 70211, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 362, + "planId": 70212, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 363, + "planId": 70213, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 364, + "planId": 70214, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 365, + "planId": 70215, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 366, + "planId": 70301, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 367, + "planId": 70302, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 368, + "planId": 70303, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 369, + "planId": 70304, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 370, + "planId": 70305, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 371, + "planId": 70306, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 372, + "planId": 70307, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 373, + "planId": 70308, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 374, + "planId": 70309, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 375, + "planId": 70310, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 376, + "planId": 70311, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 377, + "planId": 70312, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 378, + "planId": 70313, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 379, + "planId": 70314, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 380, + "planId": 70315, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 381, + "planId": 70401, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 382, + "planId": 70402, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 383, + "planId": 70403, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 384, + "planId": 70404, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 385, + "planId": 70405, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 386, + "planId": 70406, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 387, + "planId": 70407, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 388, + "planId": 70408, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 389, + "planId": 70409, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 390, + "planId": 70410, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 391, + "planId": 70411, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 392, + "planId": 70412, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 393, + "planId": 70413, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 394, + "planId": 70414, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 395, + "planId": 70415, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 396, + "planId": 70501, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 397, + "planId": 70502, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 398, + "planId": 70503, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 399, + "planId": 70504, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 400, + "planId": 70505, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 401, + "planId": 70506, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 402, + "planId": 70507, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 403, + "planId": 70508, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 404, + "planId": 70509, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 405, + "planId": 70510, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 406, + "planId": 70511, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 407, + "planId": 70512, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 408, + "planId": 70513, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 409, + "planId": 70514, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 410, + "planId": 70515, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 411, + "planId": 70516, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 412, + "planId": 70517, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 413, + "planId": 70518, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 414, + "planId": 70519, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 415, + "planId": 70520, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 416, + "planId": 80101, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 417, + "planId": 80102, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 418, + "planId": 80103, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 419, + "planId": 80104, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 420, + "planId": 80105, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 421, + "planId": 80106, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 422, + "planId": 80107, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 423, + "planId": 80108, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 424, + "planId": 80109, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 425, + "planId": 80110, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 426, + "planId": 80111, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 427, + "planId": 80112, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 428, + "planId": 80113, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 429, + "planId": 80114, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 430, + "planId": 80115, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 431, + "planId": 80201, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 432, + "planId": 80202, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 433, + "planId": 80203, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 434, + "planId": 80204, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 435, + "planId": 80205, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 436, + "planId": 80206, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 437, + "planId": 80207, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 438, + "planId": 80208, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 439, + "planId": 80209, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 440, + "planId": 80210, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 441, + "planId": 80211, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 442, + "planId": 80212, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 443, + "planId": 80213, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 444, + "planId": 80214, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 445, + "planId": 80215, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 446, + "planId": 80301, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 447, + "planId": 80302, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 448, + "planId": 80303, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 449, + "planId": 80304, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 450, + "planId": 80305, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 451, + "planId": 80306, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 452, + "planId": 80307, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 453, + "planId": 80308, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 454, + "planId": 80309, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 455, + "planId": 80310, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 456, + "planId": 80311, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 457, + "planId": 80312, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 458, + "planId": 80313, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 459, + "planId": 80314, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 460, + "planId": 80315, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 461, + "planId": 80401, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 462, + "planId": 80402, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 463, + "planId": 80403, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 464, + "planId": 80404, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 465, + "planId": 80405, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 466, + "planId": 80406, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 467, + "planId": 80407, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 468, + "planId": 80408, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 469, + "planId": 80409, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 470, + "planId": 80410, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 471, + "planId": 80411, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 472, + "planId": 80412, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 473, + "planId": 80413, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 474, + "planId": 80414, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 475, + "planId": 80415, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 476, + "planId": 80501, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 477, + "planId": 80502, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 478, + "planId": 80503, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 479, + "planId": 80504, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 480, + "planId": 80505, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 481, + "planId": 80506, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 482, + "planId": 80507, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 483, + "planId": 80508, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 484, + "planId": 80509, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 485, + "planId": 80510, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 486, + "planId": 80511, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 487, + "planId": 80512, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 488, + "planId": 80513, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 489, + "planId": 80514, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 490, + "planId": 80515, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 491, + "planId": 80516, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 492, + "planId": 80517, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 493, + "planId": 80518, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 494, + "planId": 80519, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 495, + "planId": 80520, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 496, + "planId": 90101, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 497, + "planId": 90102, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 498, + "planId": 90103, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 499, + "planId": 90104, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 500, + "planId": 90105, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 501, + "planId": 90106, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 502, + "planId": 90107, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 503, + "planId": 90108, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 504, + "planId": 90109, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 505, + "planId": 90110, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 506, + "planId": 90111, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 507, + "planId": 90112, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 508, + "planId": 90113, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 509, + "planId": 90114, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 510, + "planId": 90115, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 511, + "planId": 90201, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 512, + "planId": 90202, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 513, + "planId": 90203, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 514, + "planId": 90204, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 515, + "planId": 90205, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 516, + "planId": 90206, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 517, + "planId": 90207, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 518, + "planId": 90208, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 519, + "planId": 90209, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 520, + "planId": 90210, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 521, + "planId": 90211, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 522, + "planId": 90212, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 523, + "planId": 90213, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 524, + "planId": 90214, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 525, + "planId": 90215, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 526, + "planId": 90301, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 527, + "planId": 90302, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 528, + "planId": 90303, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 529, + "planId": 90304, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 530, + "planId": 90305, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 531, + "planId": 90306, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 532, + "planId": 90307, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 533, + "planId": 90308, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 534, + "planId": 90309, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 535, + "planId": 90310, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 536, + "planId": 90311, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 537, + "planId": 90312, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 538, + "planId": 90313, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 539, + "planId": 90314, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 540, + "planId": 90315, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 541, + "planId": 90401, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 542, + "planId": 90402, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 543, + "planId": 90403, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 544, + "planId": 90404, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 545, + "planId": 90405, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 546, + "planId": 90406, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 547, + "planId": 90407, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 548, + "planId": 90408, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 549, + "planId": 90409, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 550, + "planId": 90410, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 551, + "planId": 90411, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 552, + "planId": 90412, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 553, + "planId": 90413, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 554, + "planId": 90414, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 555, + "planId": 90415, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 556, + "planId": 90501, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 557, + "planId": 90502, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 558, + "planId": 90503, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 559, + "planId": 90504, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 560, + "planId": 90505, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 561, + "planId": 90506, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 562, + "planId": 90507, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 563, + "planId": 90508, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 564, + "planId": 90509, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 565, + "planId": 90510, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 566, + "planId": 90511, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 567, + "planId": 90512, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 568, + "planId": 90513, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 569, + "planId": 90514, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 570, + "planId": 90515, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 571, + "planId": 90516, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 572, + "planId": 90517, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 573, + "planId": 90518, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 574, + "planId": 90519, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 575, + "planId": 90520, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 576, + "planId": 100101, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 577, + "planId": 100102, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 578, + "planId": 100103, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 579, + "planId": 100104, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 580, + "planId": 100105, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 581, + "planId": 100106, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 582, + "planId": 100107, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 583, + "planId": 100108, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 584, + "planId": 100109, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 585, + "planId": 100110, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 586, + "planId": 100111, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 587, + "planId": 100112, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 588, + "planId": 100113, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 589, + "planId": 100114, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 590, + "planId": 100115, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 591, + "planId": 100201, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 592, + "planId": 100202, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 593, + "planId": 100203, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 594, + "planId": 100204, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 595, + "planId": 100205, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 596, + "planId": 100206, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 597, + "planId": 100207, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 598, + "planId": 100208, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 599, + "planId": 100209, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 600, + "planId": 100210, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 601, + "planId": 100211, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 602, + "planId": 100212, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 603, + "planId": 100213, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 604, + "planId": 100214, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 605, + "planId": 100215, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 606, + "planId": 100301, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 607, + "planId": 100302, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 608, + "planId": 100303, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 609, + "planId": 100304, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 610, + "planId": 100305, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 611, + "planId": 100306, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 612, + "planId": 100307, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 613, + "planId": 100308, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 614, + "planId": 100309, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 615, + "planId": 100310, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 616, + "planId": 100311, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 617, + "planId": 100312, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 618, + "planId": 100313, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 619, + "planId": 100314, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 620, + "planId": 100315, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 621, + "planId": 100401, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 622, + "planId": 100402, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 623, + "planId": 100403, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 624, + "planId": 100404, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 625, + "planId": 100405, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 626, + "planId": 100406, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 627, + "planId": 100407, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 628, + "planId": 100408, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 629, + "planId": 100409, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 630, + "planId": 100410, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 631, + "planId": 100411, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 632, + "planId": 100412, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 633, + "planId": 100413, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 634, + "planId": 100414, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 635, + "planId": 100415, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 636, + "planId": 100501, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 637, + "planId": 100502, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 638, + "planId": 100503, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 639, + "planId": 100504, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 640, + "planId": 100505, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 641, + "planId": 100506, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 642, + "planId": 100507, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 643, + "planId": 100508, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 644, + "planId": 100509, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 645, + "planId": 100510, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 646, + "planId": 100511, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 647, + "planId": 100512, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 648, + "planId": 100513, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 649, + "planId": 100514, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 650, + "planId": 100515, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 651, + "planId": 100516, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 652, + "planId": 100517, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + }, + { + "id": 653, + "planId": 100518, + "passivecardPlanId": 2, + "passiveCardRandomNum": 8, + "holyCardPlanId": 2, + "holyCardRandomNum": 4 + }, + { + "id": 654, + "planId": 100519, + "passivecardPlanId": 3, + "passiveCardRandomNum": 8, + "holyCardPlanId": 3, + "holyCardRandomNum": 4 + }, + { + "id": 655, + "planId": 100520, + "passivecardPlanId": 1, + "passiveCardRandomNum": 8, + "holyCardPlanId": 1, + "holyCardRandomNum": 4 + } +] \ No newline at end of file diff --git a/shared/resource/jsons/dic_rougeSkillCard.json b/shared/resource/jsons/dic_rougeSkillCard.json new file mode 100644 index 000000000..1d6bc3b23 --- /dev/null +++ b/shared/resource/jsons/dic_rougeSkillCard.json @@ -0,0 +1,434 @@ +[ + { + "id": 3011001, + "name": "1怒气1", + "quality": 3, + "skillType": 1, + "authorType": 1, + "skillId": 70211, + "collectReward": "31002&50" + }, + { + "id": 3011002, + "name": "1怒气2", + "quality": 3, + "skillType": 1, + "authorType": 1, + "skillId": 70212, + "collectReward": "31002&50" + }, + { + "id": 3011003, + "name": "1怒气3", + "quality": 3, + "skillType": 1, + "authorType": 1, + "skillId": 80111, + "collectReward": "31002&50" + }, + { + "id": 3012001, + "name": "1回合1", + "quality": 3, + "skillType": 2, + "authorType": 1, + "skillId": 80112, + "collectReward": "31002&50" + }, + { + "id": 3012002, + "name": "1回合2", + "quality": 3, + "skillType": 2, + "authorType": 1, + "skillId": 80121, + "collectReward": "31002&50" + }, + { + "id": 3012003, + "name": "1回合3", + "quality": 3, + "skillType": 2, + "authorType": 1, + "skillId": 80121, + "collectReward": "31002&50" + }, + { + "id": 3021001, + "name": "2怒气1", + "quality": 3, + "skillType": 1, + "authorType": 2, + "skillId": 70211, + "collectReward": "31002&50" + }, + { + "id": 3021002, + "name": "2怒气2", + "quality": 3, + "skillType": 1, + "authorType": 2, + "skillId": 70212, + "collectReward": "31002&50" + }, + { + "id": 3021003, + "name": "2怒气3", + "quality": 3, + "skillType": 1, + "authorType": 2, + "skillId": 80111, + "collectReward": "31002&50" + }, + { + "id": 3022001, + "name": "2回合1", + "quality": 3, + "skillType": 2, + "authorType": 2, + "skillId": 80112, + "collectReward": "31002&50" + }, + { + "id": 3022002, + "name": "2回合2", + "quality": 3, + "skillType": 2, + "authorType": 2, + "skillId": 80121, + "collectReward": "31002&50" + }, + { + "id": 3022003, + "name": "2回合3", + "quality": 3, + "skillType": 2, + "authorType": 2, + "skillId": 80122, + "collectReward": "31002&50" + }, + { + "id": 3031001, + "name": "3怒气1", + "quality": 3, + "skillType": 1, + "authorType": 3, + "skillId": 100111, + "collectReward": "31002&50" + }, + { + "id": 3031002, + "name": "3怒气2", + "quality": 3, + "skillType": 1, + "authorType": 3, + "skillId": 100112, + "collectReward": "31002&50" + }, + { + "id": 3031003, + "name": "3怒气3", + "quality": 3, + "skillType": 1, + "authorType": 3, + "skillId": 100121, + "collectReward": "31002&50" + }, + { + "id": 3032001, + "name": "3回合1", + "quality": 3, + "skillType": 2, + "authorType": 3, + "skillId": 100122, + "collectReward": "31002&50" + }, + { + "id": 3032002, + "name": "3回合2", + "quality": 3, + "skillType": 2, + "authorType": 3, + "skillId": 110111, + "collectReward": "31002&50" + }, + { + "id": 3032003, + "name": "3回合3", + "quality": 3, + "skillType": 2, + "authorType": 3, + "skillId": 110112, + "collectReward": "31002&50" + }, + { + "id": 3041001, + "name": "4怒气1", + "quality": 3, + "skillType": 1, + "authorType": 4, + "skillId": 110121, + "collectReward": "31002&50" + }, + { + "id": 3041002, + "name": "4怒气2", + "quality": 3, + "skillType": 1, + "authorType": 4, + "skillId": 110122, + "collectReward": "31002&50" + }, + { + "id": 3041003, + "name": "4怒气3", + "quality": 3, + "skillType": 1, + "authorType": 4, + "skillId": 120111, + "collectReward": "31002&50" + }, + { + "id": 3042001, + "name": "4回合1", + "quality": 3, + "skillType": 2, + "authorType": 4, + "skillId": 120112, + "collectReward": "31002&50" + }, + { + "id": 3042002, + "name": "4回合2", + "quality": 3, + "skillType": 2, + "authorType": 4, + "skillId": 120121, + "collectReward": "31002&50" + }, + { + "id": 3042003, + "name": "4回合3", + "quality": 3, + "skillType": 2, + "authorType": 4, + "skillId": 120122, + "collectReward": "31002&50" + }, + { + "id": 3051001, + "name": "5怒气1", + "quality": 3, + "skillType": 1, + "authorType": 5, + "skillId": 130111, + "collectReward": "31002&50" + }, + { + "id": 3051002, + "name": "5怒气2", + "quality": 3, + "skillType": 1, + "authorType": 5, + "skillId": 130112, + "collectReward": "31002&50" + }, + { + "id": 3051003, + "name": "5怒气3", + "quality": 3, + "skillType": 1, + "authorType": 5, + "skillId": 130121, + "collectReward": "31002&50" + }, + { + "id": 3051004, + "name": "5回合1", + "quality": 3, + "skillType": 2, + "authorType": 5, + "skillId": 130122, + "collectReward": "31002&50" + }, + { + "id": 3051005, + "name": "5回合2", + "quality": 3, + "skillType": 2, + "authorType": 5, + "skillId": 140111, + "collectReward": "31002&50" + }, + { + "id": 3051006, + "name": "5回合3", + "quality": 3, + "skillType": 2, + "authorType": 5, + "skillId": 140112, + "collectReward": "31002&50" + }, + { + "id": 3061001, + "name": "6怒气1", + "quality": 3, + "skillType": 1, + "authorType": 6, + "skillId": 140121, + "collectReward": "31002&50" + }, + { + "id": 3061002, + "name": "6怒气2", + "quality": 3, + "skillType": 1, + "authorType": 6, + "skillId": 140122, + "collectReward": "31002&50" + }, + { + "id": 3061003, + "name": "6怒气3", + "quality": 3, + "skillType": 1, + "authorType": 6, + "skillId": 150111, + "collectReward": "31002&50" + }, + { + "id": 3062001, + "name": "6回合1", + "quality": 3, + "skillType": 2, + "authorType": 6, + "skillId": 150112, + "collectReward": "31002&50" + }, + { + "id": 3062002, + "name": "6回合2", + "quality": 3, + "skillType": 2, + "authorType": 6, + "skillId": 150113, + "collectReward": "31002&50" + }, + { + "id": 3062003, + "name": "6回合3", + "quality": 3, + "skillType": 2, + "authorType": 6, + "skillId": 150114, + "collectReward": "31002&50" + }, + { + "id": 3071001, + "name": "7怒气1", + "quality": 3, + "skillType": 1, + "authorType": 7, + "skillId": 150121, + "collectReward": "31002&50" + }, + { + "id": 3071002, + "name": "7怒气2", + "quality": 3, + "skillType": 1, + "authorType": 7, + "skillId": 150122, + "collectReward": "31002&50" + }, + { + "id": 3071003, + "name": "7怒气3", + "quality": 3, + "skillType": 1, + "authorType": 7, + "skillId": 160111, + "collectReward": "31002&50" + }, + { + "id": 3072001, + "name": "7回合1", + "quality": 3, + "skillType": 2, + "authorType": 7, + "skillId": 160112, + "collectReward": "31002&50" + }, + { + "id": 3072002, + "name": "7回合2", + "quality": 3, + "skillType": 2, + "authorType": 7, + "skillId": 160121, + "collectReward": "31002&50" + }, + { + "id": 3072003, + "name": "7回合3", + "quality": 3, + "skillType": 2, + "authorType": 7, + "skillId": 160122, + "collectReward": "31002&50" + }, + { + "id": 3081001, + "name": "8怒气1", + "quality": 3, + "skillType": 1, + "authorType": 8, + "skillId": 170111, + "collectReward": "31002&50" + }, + { + "id": 3081002, + "name": "8怒气2", + "quality": 3, + "skillType": 1, + "authorType": 8, + "skillId": 170112, + "collectReward": "31002&50" + }, + { + "id": 3081003, + "name": "8怒气3", + "quality": 3, + "skillType": 1, + "authorType": 8, + "skillId": 170121, + "collectReward": "31002&50" + }, + { + "id": 3082001, + "name": "8回合1", + "quality": 3, + "skillType": 2, + "authorType": 8, + "skillId": 170122, + "collectReward": "31002&50" + }, + { + "id": 3082002, + "name": "8回合2", + "quality": 3, + "skillType": 2, + "authorType": 8, + "skillId": 180111, + "collectReward": "31002&50" + }, + { + "id": 3082003, + "name": "8回合3", + "quality": 3, + "skillType": 2, + "authorType": 8, + "skillId": 180112, + "collectReward": "31002&50" + } +] \ No newline at end of file diff --git a/shared/resource/jsons/dic_rougeTech.json b/shared/resource/jsons/dic_rougeTech.json new file mode 100644 index 000000000..500bf9f03 --- /dev/null +++ b/shared/resource/jsons/dic_rougeTech.json @@ -0,0 +1,587 @@ +[ + { + "id": 1, + "techId": 1, + "name": "选择百家流派后获得1个流派专属圣物", + "rowId": 1, + "index": 1, + "preTechId": "&", + "pointImageName": "fazhen1_xiao", + "imageName": "fazhen1_da", + "cost": "40022&100", + "circleNum": 0, + "circleId": "&" + }, + { + "id": 2, + "techId": 2, + "name": "攻击1", + "rowId": 2, + "index": 1, + "preTechId": "1&", + "pointImageName": "fazhen12_xiao", + "imageName": "fazhen12_da", + "cost": "40022&100", + "circleNum": 3, + "circleId": "1&2&3" + }, + { + "id": 3, + "techId": 3, + "name": "物防1", + "rowId": 2, + "index": 2, + "preTechId": "1&", + "pointImageName": "fazhen15_xiao", + "imageName": "fazhen15_da", + "cost": "40022&100", + "circleNum": 3, + "circleId": "4&5&6" + }, + { + "id": 4, + "techId": 4, + "name": "生命上限提高1", + "rowId": 2, + "index": 3, + "preTechId": "1&", + "pointImageName": "fazhen14_xiao", + "imageName": "fazhen14_da", + "cost": "40022&100", + "circleNum": 3, + "circleId": "7&8&9" + }, + { + "id": 5, + "techId": 5, + "name": "装备3个同百家流派特性的角色可额外选择流派专属怒气技", + "rowId": 3, + "index": 1, + "preTechId": "2&3&4", + "pointImageName": "fazhen2_xiao", + "imageName": "fazhen2_da", + "cost": "40022&100", + "circleNum": 0, + "circleId": "&" + }, + { + "id": 6, + "techId": 6, + "name": "攻击2", + "rowId": 4, + "index": 1, + "preTechId": "5&", + "pointImageName": "fazhen12_xiao", + "imageName": "fazhen12_da", + "cost": "40022&100", + "circleNum": 4, + "circleId": "10&11&12&13" + }, + { + "id": 7, + "techId": 7, + "name": "策防1", + "rowId": 4, + "index": 2, + "preTechId": "5&", + "pointImageName": "fazhen16_xiao", + "imageName": "fazhen16_da", + "cost": "40022&100", + "circleNum": 4, + "circleId": "14&15&16&17" + }, + { + "id": 8, + "techId": 8, + "name": "生命上限提高2", + "rowId": 4, + "index": 3, + "preTechId": "5&", + "pointImageName": "fazhen14_xiao", + "imageName": "fazhen14_da", + "cost": "40022&100", + "circleNum": 4, + "circleId": "18&19&20&21" + }, + { + "id": 9, + "techId": 9, + "name": "初始获得X个试炼币", + "rowId": 5, + "index": 1, + "preTechId": "6&7&8", + "pointImageName": "fazhen3_xiao", + "imageName": "fazhen3_da", + "cost": "40022&100", + "circleNum": 0, + "circleId": "&" + }, + { + "id": 10, + "techId": 10, + "name": "攻击3", + "rowId": 6, + "index": 1, + "preTechId": "9&", + "pointImageName": "fazhen12_xiao", + "imageName": "fazhen12_da", + "cost": "40022&100", + "circleNum": 2, + "circleId": "22&23" + }, + { + "id": 11, + "techId": 11, + "name": "物防3", + "rowId": 6, + "index": 2, + "preTechId": "9&", + "pointImageName": "fazhen15_xiao", + "imageName": "fazhen15_da", + "cost": "40022&100", + "circleNum": 2, + "circleId": "24&25" + }, + { + "id": 12, + "techId": 12, + "name": "策防3", + "rowId": 6, + "index": 3, + "preTechId": "9&", + "pointImageName": "fazhen16_xiao", + "imageName": "fazhen16_da", + "cost": "40022&100", + "circleNum": 2, + "circleId": "26&27" + }, + { + "id": 13, + "techId": 13, + "name": "生命上限提高3", + "rowId": 6, + "index": 4, + "preTechId": "9&", + "pointImageName": "fazhen14_xiao", + "imageName": "fazhen14_da", + "cost": "40022&100", + "circleNum": 2, + "circleId": "28&29" + }, + { + "id": 14, + "techId": 14, + "name": "选择百家流派后额外再获得1个流派专属圣物", + "rowId": 7, + "index": 1, + "preTechId": "10&11&12&13", + "pointImageName": "fazhen4_xiao", + "imageName": "fazhen4_da", + "cost": "40022&100", + "circleNum": 0, + "circleId": "&" + }, + { + "id": 15, + "techId": 15, + "name": "物防4", + "rowId": 8, + "index": 1, + "preTechId": "14&", + "pointImageName": "fazhen15_xiao", + "imageName": "fazhen15_da", + "cost": "40022&100", + "circleNum": 2, + "circleId": "30&31" + }, + { + "id": 16, + "techId": 16, + "name": "策防4", + "rowId": 8, + "index": 2, + "preTechId": "14&", + "pointImageName": "fazhen16_xiao", + "imageName": "fazhen16_da", + "cost": "40022&100", + "circleNum": 2, + "circleId": "32&33" + }, + { + "id": 17, + "techId": 17, + "name": "物防5", + "rowId": 9, + "index": 1, + "preTechId": "15&", + "pointImageName": "fazhen15_xiao", + "imageName": "fazhen15_da", + "cost": "40022&100", + "circleNum": 2, + "circleId": "34&35" + }, + { + "id": 18, + "techId": 18, + "name": "策防5", + "rowId": 9, + "index": 2, + "preTechId": "16&", + "pointImageName": "fazhen16_xiao", + "imageName": "fazhen16_da", + "cost": "40022&100", + "circleNum": 2, + "circleId": "36&37" + }, + { + "id": 19, + "techId": 19, + "name": "休整点恢复额外恢复X的生命", + "rowId": 10, + "index": 1, + "preTechId": "17&18", + "pointImageName": "fazhen5_xiao", + "imageName": "fazhen5_da", + "cost": "40022&100", + "circleNum": 0, + "circleId": "&" + }, + { + "id": 20, + "techId": 20, + "name": "破格1", + "rowId": 11, + "index": 1, + "preTechId": "19&", + "pointImageName": "fazhen18_xiao", + "imageName": "fazhen18_da", + "cost": "40022&100", + "circleNum": 1, + "circleId": "38&" + }, + { + "id": 21, + "techId": 21, + "name": "暴击1", + "rowId": 11, + "index": 2, + "preTechId": "19&", + "pointImageName": "fazhen17_xiao", + "imageName": "fazhen17_da", + "cost": "40022&100", + "circleNum": 2, + "circleId": "39&40" + }, + { + "id": 22, + "techId": 22, + "name": "格挡1", + "rowId": 12, + "index": 1, + "preTechId": "20&", + "pointImageName": "fazhen19_xiao", + "imageName": "fazhen19_da", + "cost": "40022&100", + "circleNum": 2, + "circleId": "41&42" + }, + { + "id": 23, + "techId": 23, + "name": "抗暴1", + "rowId": 12, + "index": 2, + "preTechId": "21&", + "pointImageName": "fazhen20_xiao", + "imageName": "fazhen20_da", + "cost": "40022&100", + "circleNum": 2, + "circleId": "43&44" + }, + { + "id": 24, + "techId": 24, + "name": "装备5个同百家流派特性的角色可额外选择流派专属回合技", + "rowId": 13, + "index": 1, + "preTechId": "22&23", + "pointImageName": "fazhen6_xiao", + "imageName": "fazhen6_da", + "cost": "40022&100", + "circleNum": 0, + "circleId": "&" + }, + { + "id": 25, + "techId": 25, + "name": "暴击伤害1", + "rowId": 14, + "index": 1, + "preTechId": "24&", + "pointImageName": "fazhen21_xiao", + "imageName": "fazhen21_da", + "cost": "40022&100", + "circleNum": 3, + "circleId": "45&46&47" + }, + { + "id": 26, + "techId": 26, + "name": "吸血1", + "rowId": 14, + "index": 2, + "preTechId": "24&", + "pointImageName": "fazhen22_xiao", + "imageName": "fazhen22_da", + "cost": "40022&100", + "circleNum": 3, + "circleId": "48&49&50" + }, + { + "id": 27, + "techId": 27, + "name": "反击伤害1", + "rowId": 14, + "index": 3, + "preTechId": "24&", + "pointImageName": "fazhen23_xiao", + "imageName": "fazhen23_da", + "cost": "40022&100", + "circleNum": 3, + "circleId": "51&52&53" + }, + { + "id": 28, + "techId": 28, + "name": "击败敌人获得的试炼币增加10%", + "rowId": 15, + "index": 1, + "preTechId": "25&26&27", + "pointImageName": "fazhen7_xiao", + "imageName": "fazhen7_da", + "cost": "40022&100", + "circleNum": 0, + "circleId": "&" + }, + { + "id": 29, + "techId": 29, + "name": "物攻抗性1", + "rowId": 16, + "index": 1, + "preTechId": "28&", + "pointImageName": "fazhen24_xiao", + "imageName": "fazhen24_da", + "cost": "40022&100", + "circleNum": 3, + "circleId": "54&55&56" + }, + { + "id": 30, + "techId": 30, + "name": "策攻抗性1", + "rowId": 16, + "index": 2, + "preTechId": "28&", + "pointImageName": "fazhen25_xiao", + "imageName": "fazhen25_da", + "cost": "40022&100", + "circleNum": 3, + "circleId": "57&58&59" + }, + { + "id": 31, + "techId": 31, + "name": "选择特性卡时可消耗试炼币重置1次", + "rowId": 17, + "index": 1, + "preTechId": "29&30", + "pointImageName": "fazhen8_xiao", + "imageName": "fazhen8_da", + "cost": "40022&100", + "circleNum": 0, + "circleId": "&" + }, + { + "id": 32, + "techId": 32, + "name": "物攻强度1", + "rowId": 18, + "index": 1, + "preTechId": "31&", + "pointImageName": "fazhen26_xiao", + "imageName": "fazhen26_da", + "cost": "40022&100", + "circleNum": 2, + "circleId": "60&61" + }, + { + "id": 33, + "techId": 33, + "name": "策攻强度1", + "rowId": 18, + "index": 2, + "preTechId": "31&", + "pointImageName": "fazhen27_xiao", + "imageName": "fazhen27_da", + "cost": "40022&100", + "circleNum": 2, + "circleId": "62&63" + }, + { + "id": 34, + "techId": 34, + "name": "特训价格降低10%", + "rowId": 19, + "index": 1, + "preTechId": "32&33", + "pointImageName": "fazhen9_xiao", + "imageName": "fazhen9_da", + "cost": "40022&100", + "circleNum": 0, + "circleId": "&" + }, + { + "id": 35, + "techId": 35, + "name": "攻击4", + "rowId": 20, + "index": 1, + "preTechId": "34&", + "pointImageName": "fazhen12_xiao", + "imageName": "fazhen12_da", + "cost": "40022&100", + "circleNum": 1, + "circleId": "64&" + }, + { + "id": 36, + "techId": 36, + "name": "生命上限提高4", + "rowId": 20, + "index": 2, + "preTechId": "34&", + "pointImageName": "fazhen14_xiao", + "imageName": "fazhen14_da", + "cost": "40022&100", + "circleNum": 1, + "circleId": "65&" + }, + { + "id": 37, + "techId": 37, + "name": "反弹1", + "rowId": 20, + "index": 3, + "preTechId": "34&", + "pointImageName": "fazhen28_xiao", + "imageName": "fazhen28_da", + "cost": "40022&100", + "circleNum": 1, + "circleId": "66&" + }, + { + "id": 38, + "techId": 38, + "name": "挑战boss关前所有角色怒气值充满", + "rowId": 21, + "index": 1, + "preTechId": "35&36&37", + "pointImageName": "fazhen10_xiao", + "imageName": "fazhen10_da", + "cost": "40022&100", + "circleNum": 0, + "circleId": "&" + }, + { + "id": 39, + "techId": 39, + "name": "物攻强度2", + "rowId": 22, + "index": 1, + "preTechId": "38&", + "pointImageName": "fazhen26_xiao", + "imageName": "fazhen26_da", + "cost": "40022&100", + "circleNum": 3, + "circleId": "67&68&69" + }, + { + "id": 40, + "techId": 40, + "name": "策攻强度2", + "rowId": 22, + "index": 2, + "preTechId": "38&", + "pointImageName": "fazhen27_xiao", + "imageName": "fazhen27_da", + "cost": "40022&100", + "circleNum": 1, + "circleId": "70&" + }, + { + "id": 41, + "techId": 41, + "name": "暴击2", + "rowId": 22, + "index": 3, + "preTechId": "38&", + "pointImageName": "fazhen17_xiao", + "imageName": "fazhen17_da", + "cost": "40022&100", + "circleNum": 3, + "circleId": "71&72&73" + }, + { + "id": 42, + "techId": 42, + "name": "物攻强度3", + "rowId": 23, + "index": 1, + "preTechId": "39&", + "pointImageName": "fazhen26_xiao", + "imageName": "fazhen26_da", + "cost": "40022&100", + "circleNum": 3, + "circleId": "74&75&76" + }, + { + "id": 43, + "techId": 43, + "name": "策攻强度3", + "rowId": 23, + "index": 2, + "preTechId": "40&", + "pointImageName": "fazhen27_xiao", + "imageName": "fazhen27_da", + "cost": "40022&100", + "circleNum": 2, + "circleId": "77&78" + }, + { + "id": 44, + "techId": 44, + "name": "暴伤2", + "rowId": 23, + "index": 3, + "preTechId": "41&", + "pointImageName": "fazhen21_xiao", + "imageName": "fazhen21_da", + "cost": "40022&100", + "circleNum": 3, + "circleId": "79&80&81" + }, + { + "id": 45, + "techId": 45, + "name": "挑战boss关前所有角色生命恢复至100%", + "rowId": 24, + "index": 1, + "preTechId": "42&43&44", + "pointImageName": "fazhen11_xiao", + "imageName": "fazhen11_da", + "cost": "40022&100", + "circleNum": 0, + "circleId": "&" + } +] \ No newline at end of file diff --git a/shared/resource/jsons/dic_rougeTechCircle.json b/shared/resource/jsons/dic_rougeTechCircle.json new file mode 100644 index 000000000..23dad39af --- /dev/null +++ b/shared/resource/jsons/dic_rougeTechCircle.json @@ -0,0 +1,488 @@ +[ + { + "id": 1, + "techId": 2, + "circleId": 1, + "rotation": "250&0" + }, + { + "id": 2, + "techId": 2, + "circleId": 2, + "rotation": "0&250" + }, + { + "id": 3, + "techId": 2, + "circleId": 3, + "rotation": "170&170" + }, + { + "id": 4, + "techId": 3, + "circleId": 4, + "rotation": "-170&-170" + }, + { + "id": 5, + "techId": 3, + "circleId": 5, + "rotation": "-250&250" + }, + { + "id": 6, + "techId": 3, + "circleId": 6, + "rotation": "250&0" + }, + { + "id": 7, + "techId": 4, + "circleId": 7, + "rotation": "0&250" + }, + { + "id": 8, + "techId": 4, + "circleId": 8, + "rotation": "170&170" + }, + { + "id": 9, + "techId": 4, + "circleId": 9, + "rotation": "-170&-170" + }, + { + "id": 10, + "techId": 6, + "circleId": 10, + "rotation": "-250&250" + }, + { + "id": 11, + "techId": 6, + "circleId": 11, + "rotation": "250&0" + }, + { + "id": 12, + "techId": 6, + "circleId": 12, + "rotation": "0&250" + }, + { + "id": 13, + "techId": 6, + "circleId": 13, + "rotation": "170&170" + }, + { + "id": 14, + "techId": 7, + "circleId": 14, + "rotation": "-170&-170" + }, + { + "id": 15, + "techId": 7, + "circleId": 15, + "rotation": "-250&250" + }, + { + "id": 16, + "techId": 7, + "circleId": 16, + "rotation": "250&0" + }, + { + "id": 17, + "techId": 7, + "circleId": 17, + "rotation": "0&250" + }, + { + "id": 18, + "techId": 8, + "circleId": 18, + "rotation": "170&170" + }, + { + "id": 19, + "techId": 8, + "circleId": 19, + "rotation": "-170&-170" + }, + { + "id": 20, + "techId": 8, + "circleId": 20, + "rotation": "-250&250" + }, + { + "id": 21, + "techId": 8, + "circleId": 21, + "rotation": "250&0" + }, + { + "id": 22, + "techId": 10, + "circleId": 22, + "rotation": "0&250" + }, + { + "id": 23, + "techId": 10, + "circleId": 23, + "rotation": "170&170" + }, + { + "id": 24, + "techId": 11, + "circleId": 24, + "rotation": "-170&-170" + }, + { + "id": 25, + "techId": 11, + "circleId": 25, + "rotation": "-250&250" + }, + { + "id": 26, + "techId": 12, + "circleId": 26, + "rotation": "250&0" + }, + { + "id": 27, + "techId": 12, + "circleId": 27, + "rotation": "0&250" + }, + { + "id": 28, + "techId": 13, + "circleId": 28, + "rotation": "170&170" + }, + { + "id": 29, + "techId": 13, + "circleId": 29, + "rotation": "-170&-170" + }, + { + "id": 30, + "techId": 15, + "circleId": 30, + "rotation": "-250&250" + }, + { + "id": 31, + "techId": 15, + "circleId": 31, + "rotation": "250&0" + }, + { + "id": 32, + "techId": 16, + "circleId": 32, + "rotation": "0&250" + }, + { + "id": 33, + "techId": 16, + "circleId": 33, + "rotation": "170&170" + }, + { + "id": 34, + "techId": 17, + "circleId": 34, + "rotation": "-170&-170" + }, + { + "id": 35, + "techId": 17, + "circleId": 35, + "rotation": "-250&250" + }, + { + "id": 36, + "techId": 18, + "circleId": 36, + "rotation": "250&0" + }, + { + "id": 37, + "techId": 18, + "circleId": 37, + "rotation": "0&250" + }, + { + "id": 38, + "techId": 20, + "circleId": 38, + "rotation": "170&170" + }, + { + "id": 39, + "techId": 21, + "circleId": 39, + "rotation": "-170&-170" + }, + { + "id": 40, + "techId": 21, + "circleId": 40, + "rotation": "-250&250" + }, + { + "id": 41, + "techId": 22, + "circleId": 41, + "rotation": "250&0" + }, + { + "id": 42, + "techId": 22, + "circleId": 42, + "rotation": "0&250" + }, + { + "id": 43, + "techId": 23, + "circleId": 43, + "rotation": "170&170" + }, + { + "id": 44, + "techId": 23, + "circleId": 44, + "rotation": "-170&-170" + }, + { + "id": 45, + "techId": 25, + "circleId": 45, + "rotation": "-250&250" + }, + { + "id": 46, + "techId": 25, + "circleId": 46, + "rotation": "250&0" + }, + { + "id": 47, + "techId": 25, + "circleId": 47, + "rotation": "0&250" + }, + { + "id": 48, + "techId": 26, + "circleId": 48, + "rotation": "170&170" + }, + { + "id": 49, + "techId": 26, + "circleId": 49, + "rotation": "-170&-170" + }, + { + "id": 50, + "techId": 26, + "circleId": 50, + "rotation": "-250&250" + }, + { + "id": 51, + "techId": 27, + "circleId": 51, + "rotation": "250&0" + }, + { + "id": 52, + "techId": 27, + "circleId": 52, + "rotation": "0&250" + }, + { + "id": 53, + "techId": 27, + "circleId": 53, + "rotation": "170&170" + }, + { + "id": 54, + "techId": 29, + "circleId": 54, + "rotation": "-170&-170" + }, + { + "id": 55, + "techId": 29, + "circleId": 55, + "rotation": "-250&250" + }, + { + "id": 56, + "techId": 29, + "circleId": 56, + "rotation": "250&0" + }, + { + "id": 57, + "techId": 30, + "circleId": 57, + "rotation": "0&250" + }, + { + "id": 58, + "techId": 30, + "circleId": 58, + "rotation": "170&170" + }, + { + "id": 59, + "techId": 30, + "circleId": 59, + "rotation": "-170&-170" + }, + { + "id": 60, + "techId": 32, + "circleId": 60, + "rotation": "-250&250" + }, + { + "id": 61, + "techId": 32, + "circleId": 61, + "rotation": "250&0" + }, + { + "id": 62, + "techId": 33, + "circleId": 62, + "rotation": "0&250" + }, + { + "id": 63, + "techId": 33, + "circleId": 63, + "rotation": "170&170" + }, + { + "id": 64, + "techId": 35, + "circleId": 64, + "rotation": "-170&-170" + }, + { + "id": 65, + "techId": 36, + "circleId": 65, + "rotation": "-250&250" + }, + { + "id": 66, + "techId": 37, + "circleId": 66, + "rotation": "250&0" + }, + { + "id": 67, + "techId": 39, + "circleId": 67, + "rotation": "0&250" + }, + { + "id": 68, + "techId": 39, + "circleId": 68, + "rotation": "170&170" + }, + { + "id": 69, + "techId": 39, + "circleId": 69, + "rotation": "-170&-170" + }, + { + "id": 70, + "techId": 40, + "circleId": 70, + "rotation": "-250&250" + }, + { + "id": 71, + "techId": 41, + "circleId": 71, + "rotation": "250&0" + }, + { + "id": 72, + "techId": 41, + "circleId": 72, + "rotation": "0&250" + }, + { + "id": 73, + "techId": 41, + "circleId": 73, + "rotation": "170&170" + }, + { + "id": 74, + "techId": 42, + "circleId": 74, + "rotation": "-170&-170" + }, + { + "id": 75, + "techId": 42, + "circleId": 75, + "rotation": "-250&250" + }, + { + "id": 76, + "techId": 42, + "circleId": 76, + "rotation": "250&0" + }, + { + "id": 77, + "techId": 43, + "circleId": 77, + "rotation": "0&250" + }, + { + "id": 78, + "techId": 43, + "circleId": 78, + "rotation": "170&170" + }, + { + "id": 79, + "techId": 44, + "circleId": 79, + "rotation": "-170&-170" + }, + { + "id": 80, + "techId": 44, + "circleId": 80, + "rotation": "-250&250" + }, + { + "id": 81, + "techId": 44, + "circleId": 81, + "rotation": "250&0" + } +] \ No newline at end of file diff --git a/shared/resource/jsons/dic_rougeTechCircle_Rotation.json b/shared/resource/jsons/dic_rougeTechCircle_Rotation.json new file mode 100644 index 000000000..60ed5c87b --- /dev/null +++ b/shared/resource/jsons/dic_rougeTechCircle_Rotation.json @@ -0,0 +1,26 @@ +[ + { + "id": 1, + "rotation": "0&250" + }, + { + "id": 2, + "rotation": "0&250|-250&0" + }, + { + "id": 3, + "rotation": "0&250|170&170|250&0" + }, + { + "id": 4, + "rotation": "0&250|250&0|0&-250|-250&0" + }, + { + "id": 5, + "rotation": "0&250|170&170|250&0|0&-250|-250&0" + }, + { + "id": 6, + "rotation": "0&250|170&170|250&0|0&-250|-250&0|-170&-170" + } +] \ No newline at end of file diff --git a/shared/resource/jsons/dic_rougeTechLevel.json b/shared/resource/jsons/dic_rougeTechLevel.json new file mode 100644 index 000000000..fd21fc3cd --- /dev/null +++ b/shared/resource/jsons/dic_rougeTechLevel.json @@ -0,0 +1,1132 @@ +[ + { + "id": 1, + "techId": 1, + "name": "选择百家流派后获得1个流派专属圣物", + "level": 0, + "ce": 0, + "seid": 0, + "techEffectId": "30030101&", + "content": "&" + }, + { + "id": 2, + "techId": 2, + "name": "攻击1", + "level": 1, + "ce": 100000, + "seid": 0, + "techEffectId": "30010201&", + "content": "&" + }, + { + "id": 3, + "techId": 2, + "name": "攻击1", + "level": 2, + "ce": 200000, + "seid": 0, + "techEffectId": "30010202&", + "content": "&" + }, + { + "id": 4, + "techId": 2, + "name": "攻击1", + "level": 3, + "ce": 300000, + "seid": 0, + "techEffectId": "30010204&", + "content": "&" + }, + { + "id": 5, + "techId": 3, + "name": "物防1", + "level": 1, + "ce": 100000, + "seid": 0, + "techEffectId": "30010301&", + "content": "&" + }, + { + "id": 6, + "techId": 3, + "name": "物防1", + "level": 2, + "ce": 200000, + "seid": 0, + "techEffectId": "30010302&", + "content": "&" + }, + { + "id": 7, + "techId": 3, + "name": "物防1", + "level": 3, + "ce": 300000, + "seid": 0, + "techEffectId": "30010303&", + "content": "&" + }, + { + "id": 8, + "techId": 4, + "name": "生命上限提高1", + "level": 1, + "ce": 100000, + "seid": 0, + "techEffectId": "30010101&", + "content": "&" + }, + { + "id": 9, + "techId": 4, + "name": "生命上限提高1", + "level": 2, + "ce": 200000, + "seid": 0, + "techEffectId": "30010102&", + "content": "&" + }, + { + "id": 10, + "techId": 4, + "name": "生命上限提高1", + "level": 3, + "ce": 300000, + "seid": 0, + "techEffectId": "30010103&", + "content": "&" + }, + { + "id": 11, + "techId": 5, + "name": "装备3个同百家流派特性的角色可额外选择流派专属怒气技", + "level": 0, + "ce": 0, + "seid": 0, + "techEffectId": "30040101&", + "content": "&" + }, + { + "id": 12, + "techId": 6, + "name": "攻击2", + "level": 1, + "ce": 100000, + "seid": 0, + "techEffectId": "30010203&", + "content": "&" + }, + { + "id": 13, + "techId": 6, + "name": "攻击2", + "level": 2, + "ce": 200000, + "seid": 0, + "techEffectId": "30010204&", + "content": "&" + }, + { + "id": 14, + "techId": 6, + "name": "攻击2", + "level": 3, + "ce": 300000, + "seid": 0, + "techEffectId": "30010205&", + "content": "&" + }, + { + "id": 15, + "techId": 7, + "name": "策防1", + "level": 1, + "ce": 100000, + "seid": 0, + "techEffectId": "30010401&", + "content": "&" + }, + { + "id": 16, + "techId": 7, + "name": "策防1", + "level": 2, + "ce": 200000, + "seid": 0, + "techEffectId": "30010402&", + "content": "&" + }, + { + "id": 17, + "techId": 7, + "name": "策防1", + "level": 3, + "ce": 300000, + "seid": 0, + "techEffectId": "30010403&", + "content": "&" + }, + { + "id": 18, + "techId": 8, + "name": "生命上限提高2", + "level": 1, + "ce": 100000, + "seid": 0, + "techEffectId": "30010104&", + "content": "&" + }, + { + "id": 19, + "techId": 8, + "name": "生命上限提高2", + "level": 2, + "ce": 200000, + "seid": 0, + "techEffectId": "30010105&", + "content": "&" + }, + { + "id": 20, + "techId": 8, + "name": "生命上限提高2", + "level": 3, + "ce": 300000, + "seid": 0, + "techEffectId": "30010106&", + "content": "&" + }, + { + "id": 21, + "techId": 9, + "name": "初始获得X个试炼币", + "level": 0, + "ce": 0, + "seid": 0, + "techEffectId": "30050101&", + "content": "&" + }, + { + "id": 22, + "techId": 10, + "name": "攻击3", + "level": 1, + "ce": 100000, + "seid": 0, + "techEffectId": "30010201&", + "content": "&" + }, + { + "id": 23, + "techId": 10, + "name": "攻击3", + "level": 2, + "ce": 200000, + "seid": 0, + "techEffectId": "30010202&", + "content": "&" + }, + { + "id": 24, + "techId": 10, + "name": "攻击3", + "level": 3, + "ce": 300000, + "seid": 0, + "techEffectId": "30010203&", + "content": "&" + }, + { + "id": 25, + "techId": 11, + "name": "物防3", + "level": 1, + "ce": 100000, + "seid": 0, + "techEffectId": "30010304&", + "content": "&" + }, + { + "id": 26, + "techId": 11, + "name": "物防3", + "level": 2, + "ce": 200000, + "seid": 0, + "techEffectId": "30010305&", + "content": "&" + }, + { + "id": 27, + "techId": 11, + "name": "物防3", + "level": 3, + "ce": 300000, + "seid": 0, + "techEffectId": "30010306&", + "content": "&" + }, + { + "id": 28, + "techId": 12, + "name": "策防3", + "level": 1, + "ce": 100000, + "seid": 0, + "techEffectId": "30010404&", + "content": "&" + }, + { + "id": 29, + "techId": 12, + "name": "策防3", + "level": 2, + "ce": 200000, + "seid": 0, + "techEffectId": "30010405&", + "content": "&" + }, + { + "id": 30, + "techId": 12, + "name": "策防3", + "level": 3, + "ce": 300000, + "seid": 0, + "techEffectId": "30010406&", + "content": "&" + }, + { + "id": 31, + "techId": 13, + "name": "生命上限提高3", + "level": 1, + "ce": 100000, + "seid": 0, + "techEffectId": "30010101&", + "content": "&" + }, + { + "id": 32, + "techId": 13, + "name": "生命上限提高3", + "level": 2, + "ce": 200000, + "seid": 0, + "techEffectId": "30010102&", + "content": "&" + }, + { + "id": 33, + "techId": 13, + "name": "生命上限提高3", + "level": 3, + "ce": 300000, + "seid": 0, + "techEffectId": "30010103&", + "content": "&" + }, + { + "id": 34, + "techId": 14, + "name": "选择百家流派后额外再获得1个流派专属圣物", + "level": 0, + "ce": 0, + "seid": 0, + "techEffectId": "30030102&", + "content": "&" + }, + { + "id": 35, + "techId": 15, + "name": "物防4", + "level": 1, + "ce": 100000, + "seid": 0, + "techEffectId": "30010301&", + "content": "&" + }, + { + "id": 36, + "techId": 15, + "name": "物防4", + "level": 2, + "ce": 200000, + "seid": 0, + "techEffectId": "30010302&", + "content": "&" + }, + { + "id": 37, + "techId": 15, + "name": "物防4", + "level": 3, + "ce": 300000, + "seid": 0, + "techEffectId": "30010303&", + "content": "&" + }, + { + "id": 38, + "techId": 16, + "name": "策防4", + "level": 1, + "ce": 100000, + "seid": 0, + "techEffectId": "30010401&", + "content": "&" + }, + { + "id": 39, + "techId": 16, + "name": "策防4", + "level": 2, + "ce": 200000, + "seid": 0, + "techEffectId": "30010402&", + "content": "&" + }, + { + "id": 40, + "techId": 16, + "name": "策防4", + "level": 3, + "ce": 300000, + "seid": 0, + "techEffectId": "30010403&", + "content": "&" + }, + { + "id": 41, + "techId": 17, + "name": "物防5", + "level": 1, + "ce": 100000, + "seid": 0, + "techEffectId": "30010304&", + "content": "&" + }, + { + "id": 42, + "techId": 17, + "name": "物防5", + "level": 2, + "ce": 200000, + "seid": 0, + "techEffectId": "30010305&", + "content": "&" + }, + { + "id": 43, + "techId": 17, + "name": "物防5", + "level": 3, + "ce": 300000, + "seid": 0, + "techEffectId": "30010306&", + "content": "&" + }, + { + "id": 44, + "techId": 18, + "name": "策防5", + "level": 1, + "ce": 100000, + "seid": 0, + "techEffectId": "30010404&", + "content": "&" + }, + { + "id": 45, + "techId": 18, + "name": "策防5", + "level": 2, + "ce": 200000, + "seid": 0, + "techEffectId": "30010405&", + "content": "&" + }, + { + "id": 46, + "techId": 18, + "name": "策防5", + "level": 3, + "ce": 300000, + "seid": 0, + "techEffectId": "30010406&", + "content": "&" + }, + { + "id": 47, + "techId": 19, + "name": "休整点恢复额外恢复20%的生命", + "level": 0, + "ce": 0, + "seid": 0, + "techEffectId": "30060101&", + "content": "&" + }, + { + "id": 48, + "techId": 20, + "name": "破格1", + "level": 1, + "ce": 100000, + "seid": 0, + "techEffectId": "30020101&", + "content": "&" + }, + { + "id": 49, + "techId": 20, + "name": "破格1", + "level": 2, + "ce": 200000, + "seid": 0, + "techEffectId": "30020102&", + "content": "&" + }, + { + "id": 50, + "techId": 20, + "name": "破格1", + "level": 3, + "ce": 300000, + "seid": 0, + "techEffectId": "30020103&", + "content": "&" + }, + { + "id": 51, + "techId": 21, + "name": "暴击1", + "level": 1, + "ce": 100000, + "seid": 0, + "techEffectId": "30020301&", + "content": "&" + }, + { + "id": 52, + "techId": 21, + "name": "暴击1", + "level": 2, + "ce": 200000, + "seid": 0, + "techEffectId": "30020302&", + "content": "&" + }, + { + "id": 53, + "techId": 21, + "name": "暴击1", + "level": 3, + "ce": 300000, + "seid": 0, + "techEffectId": "30020303&", + "content": "&" + }, + { + "id": 54, + "techId": 22, + "name": "格挡1", + "level": 1, + "ce": 100000, + "seid": 0, + "techEffectId": "30020201&", + "content": "&" + }, + { + "id": 55, + "techId": 22, + "name": "格挡1", + "level": 2, + "ce": 200000, + "seid": 0, + "techEffectId": "30020202&", + "content": "&" + }, + { + "id": 56, + "techId": 22, + "name": "格挡1", + "level": 3, + "ce": 300000, + "seid": 0, + "techEffectId": "30020203&", + "content": "&" + }, + { + "id": 57, + "techId": 23, + "name": "抗暴1", + "level": 1, + "ce": 100000, + "seid": 0, + "techEffectId": "30020401&", + "content": "&" + }, + { + "id": 58, + "techId": 23, + "name": "抗暴1", + "level": 2, + "ce": 200000, + "seid": 0, + "techEffectId": "30020402&", + "content": "&" + }, + { + "id": 59, + "techId": 23, + "name": "抗暴1", + "level": 3, + "ce": 300000, + "seid": 0, + "techEffectId": "30020403&", + "content": "&" + }, + { + "id": 60, + "techId": 24, + "name": "装备5个同百家流派特性的角色可额外选择流派专属回合技", + "level": 0, + "ce": 0, + "seid": 0, + "techEffectId": "30040201&", + "content": "&" + }, + { + "id": 61, + "techId": 25, + "name": "暴击伤害1", + "level": 1, + "ce": 100000, + "seid": 0, + "techEffectId": "30021001&", + "content": "&" + }, + { + "id": 62, + "techId": 25, + "name": "暴击伤害1", + "level": 2, + "ce": 200000, + "seid": 0, + "techEffectId": "30021002&", + "content": "&" + }, + { + "id": 63, + "techId": 25, + "name": "暴击伤害1", + "level": 3, + "ce": 300000, + "seid": 0, + "techEffectId": "30021003&", + "content": "&" + }, + { + "id": 64, + "techId": 26, + "name": "吸血1", + "level": 1, + "ce": 100000, + "seid": 0, + "techEffectId": "30020901&", + "content": "&" + }, + { + "id": 65, + "techId": 26, + "name": "吸血1", + "level": 2, + "ce": 200000, + "seid": 0, + "techEffectId": "30020902&", + "content": "&" + }, + { + "id": 66, + "techId": 26, + "name": "吸血1", + "level": 3, + "ce": 300000, + "seid": 0, + "techEffectId": "30020903&", + "content": "&" + }, + { + "id": 67, + "techId": 27, + "name": "反击伤害1", + "level": 1, + "ce": 100000, + "seid": 0, + "techEffectId": "30021201&", + "content": "&" + }, + { + "id": 68, + "techId": 27, + "name": "反击伤害1", + "level": 2, + "ce": 200000, + "seid": 0, + "techEffectId": "30021202&", + "content": "&" + }, + { + "id": 69, + "techId": 27, + "name": "反击伤害1", + "level": 3, + "ce": 300000, + "seid": 0, + "techEffectId": "30021203&", + "content": "&" + }, + { + "id": 70, + "techId": 28, + "name": "击败敌人获得的试炼币增加5%", + "level": 0, + "ce": 0, + "seid": 0, + "techEffectId": "30070101&", + "content": "&" + }, + { + "id": 71, + "techId": 29, + "name": "物攻抗性1", + "level": 1, + "ce": 100000, + "seid": 0, + "techEffectId": "30020601&", + "content": "&" + }, + { + "id": 72, + "techId": 29, + "name": "物攻抗性1", + "level": 2, + "ce": 200000, + "seid": 0, + "techEffectId": "30020602&", + "content": "&" + }, + { + "id": 73, + "techId": 29, + "name": "物攻抗性1", + "level": 3, + "ce": 300000, + "seid": 0, + "techEffectId": "30020603&", + "content": "&" + }, + { + "id": 74, + "techId": 30, + "name": "策攻抗性1", + "level": 1, + "ce": 100000, + "seid": 0, + "techEffectId": "30020801&", + "content": "&" + }, + { + "id": 75, + "techId": 30, + "name": "策攻抗性1", + "level": 2, + "ce": 200000, + "seid": 0, + "techEffectId": "30020801&", + "content": "&" + }, + { + "id": 76, + "techId": 30, + "name": "策攻抗性1", + "level": 3, + "ce": 300000, + "seid": 0, + "techEffectId": "30020801&", + "content": "&" + }, + { + "id": 77, + "techId": 31, + "name": "选择特性卡时可消耗试炼币重置1次", + "level": 0, + "ce": 0, + "seid": 0, + "techEffectId": "30080101&", + "content": "&" + }, + { + "id": 78, + "techId": 32, + "name": "物攻强度1", + "level": 1, + "ce": 100000, + "seid": 0, + "techEffectId": "30020501&", + "content": "&" + }, + { + "id": 79, + "techId": 32, + "name": "物攻强度1", + "level": 2, + "ce": 200000, + "seid": 0, + "techEffectId": "30020502&", + "content": "&" + }, + { + "id": 80, + "techId": 32, + "name": "物攻强度1", + "level": 3, + "ce": 300000, + "seid": 0, + "techEffectId": "30020503&", + "content": "&" + }, + { + "id": 81, + "techId": 33, + "name": "策攻强度1", + "level": 1, + "ce": 100000, + "seid": 0, + "techEffectId": "30020701&", + "content": "&" + }, + { + "id": 82, + "techId": 33, + "name": "策攻强度1", + "level": 2, + "ce": 200000, + "seid": 0, + "techEffectId": "30020702&", + "content": "&" + }, + { + "id": 83, + "techId": 33, + "name": "策攻强度1", + "level": 3, + "ce": 300000, + "seid": 0, + "techEffectId": "30020703&", + "content": "&" + }, + { + "id": 84, + "techId": 34, + "name": "特训价格降低10%", + "level": 0, + "ce": 0, + "seid": 0, + "techEffectId": "30090101&", + "content": "&" + }, + { + "id": 85, + "techId": 35, + "name": "攻击4", + "level": 1, + "ce": 100000, + "seid": 0, + "techEffectId": "30010204&", + "content": "&" + }, + { + "id": 86, + "techId": 35, + "name": "攻击4", + "level": 2, + "ce": 200000, + "seid": 0, + "techEffectId": "30010205&", + "content": "&" + }, + { + "id": 87, + "techId": 35, + "name": "攻击4", + "level": 3, + "ce": 300000, + "seid": 0, + "techEffectId": "30010206&", + "content": "&" + }, + { + "id": 88, + "techId": 36, + "name": "生命上限提高4", + "level": 1, + "ce": 100000, + "seid": 0, + "techEffectId": "30010104&", + "content": "&" + }, + { + "id": 89, + "techId": 36, + "name": "生命上限提高4", + "level": 2, + "ce": 200000, + "seid": 0, + "techEffectId": "30010105&", + "content": "&" + }, + { + "id": 90, + "techId": 36, + "name": "生命上限提高4", + "level": 3, + "ce": 300000, + "seid": 0, + "techEffectId": "30010106&", + "content": "&" + }, + { + "id": 91, + "techId": 37, + "name": "反弹1", + "level": 1, + "ce": 100000, + "seid": 0, + "techEffectId": "30021101&", + "content": "&" + }, + { + "id": 92, + "techId": 37, + "name": "反弹1", + "level": 2, + "ce": 200000, + "seid": 0, + "techEffectId": "30021102&", + "content": "&" + }, + { + "id": 93, + "techId": 37, + "name": "反弹1", + "level": 3, + "ce": 300000, + "seid": 0, + "techEffectId": "30021103&", + "content": "&" + }, + { + "id": 94, + "techId": 38, + "name": "挑战boss关前所有角色怒气值充满", + "level": 0, + "ce": 0, + "seid": 0, + "techEffectId": "30100101&", + "content": "&" + }, + { + "id": 95, + "techId": 39, + "name": "物攻强度2", + "level": 1, + "ce": 100000, + "seid": 0, + "techEffectId": "30020501&", + "content": "&" + }, + { + "id": 96, + "techId": 39, + "name": "物攻强度2", + "level": 2, + "ce": 200000, + "seid": 0, + "techEffectId": "30020502&", + "content": "&" + }, + { + "id": 97, + "techId": 39, + "name": "物攻强度2", + "level": 3, + "ce": 300000, + "seid": 0, + "techEffectId": "30020503&", + "content": "&" + }, + { + "id": 98, + "techId": 40, + "name": "策攻强度2", + "level": 1, + "ce": 100000, + "seid": 0, + "techEffectId": "30020701&", + "content": "&" + }, + { + "id": 99, + "techId": 40, + "name": "策攻强度2", + "level": 2, + "ce": 200000, + "seid": 0, + "techEffectId": "30020702&", + "content": "&" + }, + { + "id": 100, + "techId": 40, + "name": "策攻强度2", + "level": 3, + "ce": 300000, + "seid": 0, + "techEffectId": "30020703&", + "content": "&" + }, + { + "id": 101, + "techId": 41, + "name": "暴击2", + "level": 1, + "ce": 100000, + "seid": 0, + "techEffectId": "30020301&", + "content": "&" + }, + { + "id": 102, + "techId": 41, + "name": "暴击2", + "level": 2, + "ce": 200000, + "seid": 0, + "techEffectId": "30020302&", + "content": "&" + }, + { + "id": 103, + "techId": 41, + "name": "暴击2", + "level": 3, + "ce": 300000, + "seid": 0, + "techEffectId": "30020303&", + "content": "&" + }, + { + "id": 104, + "techId": 42, + "name": "物攻强度3", + "level": 1, + "ce": 100000, + "seid": 0, + "techEffectId": "30020501&", + "content": "&" + }, + { + "id": 105, + "techId": 42, + "name": "物攻强度3", + "level": 2, + "ce": 200000, + "seid": 0, + "techEffectId": "30020502&", + "content": "&" + }, + { + "id": 106, + "techId": 42, + "name": "物攻强度3", + "level": 3, + "ce": 300000, + "seid": 0, + "techEffectId": "30020503&", + "content": "&" + }, + { + "id": 107, + "techId": 43, + "name": "策攻强度3", + "level": 1, + "ce": 100000, + "seid": 0, + "techEffectId": "30020701&", + "content": "&" + }, + { + "id": 108, + "techId": 43, + "name": "策攻强度3", + "level": 2, + "ce": 200000, + "seid": 0, + "techEffectId": "30020702&", + "content": "&" + }, + { + "id": 109, + "techId": 43, + "name": "策攻强度3", + "level": 3, + "ce": 300000, + "seid": 0, + "techEffectId": "30020703&", + "content": "&" + }, + { + "id": 110, + "techId": 44, + "name": "暴击伤害2", + "level": 1, + "ce": 100000, + "seid": 0, + "techEffectId": "30021001&", + "content": "&" + }, + { + "id": 111, + "techId": 44, + "name": "暴击伤害2", + "level": 2, + "ce": 200000, + "seid": 0, + "techEffectId": "30021002&", + "content": "&" + }, + { + "id": 112, + "techId": 44, + "name": "暴击伤害2", + "level": 3, + "ce": 300000, + "seid": 0, + "techEffectId": "30021003&", + "content": "&" + }, + { + "id": 113, + "techId": 45, + "name": "挑战boss关前所有角色生命恢复至100%", + "level": 0, + "ce": 0, + "seid": 0, + "techEffectId": "30110101&", + "content": "&" + } +] \ No newline at end of file diff --git a/shared/resource/jsons/dic_rougeType.json b/shared/resource/jsons/dic_rougeType.json new file mode 100644 index 000000000..92ed7e7d3 --- /dev/null +++ b/shared/resource/jsons/dic_rougeType.json @@ -0,0 +1,92 @@ +[ + { + "id": 1, + "type": 1, + "name": "入学试炼", + "grade": 1, + "gradeList": "1&", + "icon": "zi_ruxueshilian", + "imageName": "zi_ruxueshilian" + }, + { + "id": 2, + "type": 2, + "name": "新手试炼", + "grade": 1, + "gradeList": "2&", + "icon": "zi_xinshoushilian", + "imageName": "zi_xinshoushilian" + }, + { + "id": 3, + "type": 3, + "name": "儒家学派", + "grade": 5, + "gradeList": "3&4&5&6&7", + "icon": "zi_rujiashilian", + "imageName": "zi_rujiashilian" + }, + { + "id": 4, + "type": 4, + "name": "道家学派", + "grade": 5, + "gradeList": "8&9&10&11&12", + "icon": "zi_daojiashilian", + "imageName": "zi_daojiashilian" + }, + { + "id": 5, + "type": 5, + "name": "墨家学派", + "grade": 5, + "gradeList": "13&14&15&16&17", + "icon": "zi_mojiashilian", + "imageName": "zi_mojiashilian" + }, + { + "id": 6, + "type": 6, + "name": "法家学派", + "grade": 5, + "gradeList": "18&19&20&21&22", + "icon": "zi_fajiashilian", + "imageName": "zi_fajiashilian" + }, + { + "id": 7, + "type": 7, + "name": "医家学派", + "grade": 5, + "gradeList": "23&24&25&26&27", + "icon": "zi_yijiashilian", + "imageName": "zi_yijiashilian" + }, + { + "id": 8, + "type": 8, + "name": "兵家学派", + "grade": 5, + "gradeList": "28&29&30&31&32", + "icon": "zi_bijingshilian", + "imageName": "zi_bijingshilian" + }, + { + "id": 9, + "type": 9, + "name": "阴阳学派", + "grade": 5, + "gradeList": "33&34&35&36&37", + "icon": "zi_yinyangshilian", + "imageName": "zi_yinyangshilian" + }, + { + "id": 10, + "type": 10, + "name": "纵横学派", + "grade": 5, + "gradeList": "38&39&40&41&42", + "icon": "zi_zonghengshilian", + "imageName": "zi_zonghengshilian" + } +] \ No newline at end of file diff --git a/shared/resource/jsons/dic_rougeType_grade.json b/shared/resource/jsons/dic_rougeType_grade.json new file mode 100644 index 000000000..5b22ddc45 --- /dev/null +++ b/shared/resource/jsons/dic_rougeType_grade.json @@ -0,0 +1,758 @@ +[ + { + "id": 1, + "type": 1, + "gradeIndex": 1, + "name": "入学试炼", + "lvLimit": 53, + "limitId": 0, + "buyRewardPlan": 0, + "layerCount": 5, + "layerPlan": 101, + "challengePlan": 1, + "randomEventPlan": 1, + "firstReward": "31002&50|31001&1000", + "heroRatioPlan": 1, + "heroValue": 300000, + "heroSecondAttrLevel": 1, + "takeoutRewardShow": "&" + }, + { + "id": 2, + "type": 2, + "gradeIndex": 1, + "name": "新手试炼", + "lvLimit": 53, + "limitId": 1, + "buyRewardPlan": 0, + "layerCount": 10, + "layerPlan": 201, + "challengePlan": 2, + "randomEventPlan": 1, + "firstReward": "31002&100|31001&1000", + "heroRatioPlan": 1, + "heroValue": 400000, + "heroSecondAttrLevel": 1, + "takeoutRewardShow": "&" + }, + { + "id": 3, + "type": 3, + "gradeIndex": 1, + "name": "儒家学派", + "lvLimit": 53, + "limitId": 2, + "buyRewardPlan": 0, + "layerCount": 15, + "layerPlan": 301, + "challengePlan": 3, + "randomEventPlan": 1, + "firstReward": "31002&50|31001&1001", + "heroRatioPlan": 1, + "heroValue": 500000, + "heroSecondAttrLevel": 1, + "takeoutRewardShow": "1&1&5|1&2&3" + }, + { + "id": 4, + "type": 3, + "gradeIndex": 2, + "name": "儒家学派", + "lvLimit": 55, + "limitId": 3, + "buyRewardPlan": 0, + "layerCount": 15, + "layerPlan": 302, + "challengePlan": 4, + "randomEventPlan": 1, + "firstReward": "31002&100|31001&1001", + "heroRatioPlan": 1, + "heroValue": 600000, + "heroSecondAttrLevel": 1, + "takeoutRewardShow": "1&1&10|1&2&5" + }, + { + "id": 5, + "type": 3, + "gradeIndex": 3, + "name": "儒家学派", + "lvLimit": 60, + "limitId": 4, + "buyRewardPlan": 0, + "layerCount": 15, + "layerPlan": 303, + "challengePlan": 5, + "randomEventPlan": 1, + "firstReward": "31002&50|31001&1002", + "heroRatioPlan": 1, + "heroValue": 700000, + "heroSecondAttrLevel": 1, + "takeoutRewardShow": "1&1&10|1&2&7|1&3&3" + }, + { + "id": 6, + "type": 3, + "gradeIndex": 4, + "name": "儒家学派", + "lvLimit": 65, + "limitId": 5, + "buyRewardPlan": 0, + "layerCount": 17, + "layerPlan": 304, + "challengePlan": 6, + "randomEventPlan": 1, + "firstReward": "31002&100|31001&1002", + "heroRatioPlan": 1, + "heroValue": 800000, + "heroSecondAttrLevel": 1, + "takeoutRewardShow": "1&1&12|1&2&10|1&3&5" + }, + { + "id": 7, + "type": 3, + "gradeIndex": 5, + "name": "儒家学派", + "lvLimit": 70, + "limitId": 6, + "buyRewardPlan": 0, + "layerCount": 20, + "layerPlan": 305, + "challengePlan": 7, + "randomEventPlan": 1, + "firstReward": "31002&50|31001&1003", + "heroRatioPlan": 1, + "heroValue": 900000, + "heroSecondAttrLevel": 1, + "takeoutRewardShow": "1&1&12|1&2&10|1&3&5|1&4&1" + }, + { + "id": 8, + "type": 4, + "gradeIndex": 1, + "name": "道家学派", + "lvLimit": 53, + "limitId": 3, + "buyRewardPlan": 0, + "layerCount": 15, + "layerPlan": 401, + "challengePlan": 8, + "randomEventPlan": 1, + "firstReward": "31002&100|31001&1003", + "heroRatioPlan": 1, + "heroValue": 500000, + "heroSecondAttrLevel": 1, + "takeoutRewardShow": "2&1&5|2&2&3" + }, + { + "id": 9, + "type": 4, + "gradeIndex": 2, + "name": "道家学派", + "lvLimit": 55, + "limitId": 8, + "buyRewardPlan": 0, + "layerCount": 15, + "layerPlan": 402, + "challengePlan": 9, + "randomEventPlan": 1, + "firstReward": "31002&50|31001&1004", + "heroRatioPlan": 1, + "heroValue": 600000, + "heroSecondAttrLevel": 1, + "takeoutRewardShow": "2&1&10|2&2&5" + }, + { + "id": 10, + "type": 4, + "gradeIndex": 3, + "name": "道家学派", + "lvLimit": 60, + "limitId": 9, + "buyRewardPlan": 0, + "layerCount": 15, + "layerPlan": 403, + "challengePlan": 1, + "randomEventPlan": 1, + "firstReward": "31002&100|31001&1004", + "heroRatioPlan": 1, + "heroValue": 700000, + "heroSecondAttrLevel": 1, + "takeoutRewardShow": "2&1&10|2&2&7|2&3&3" + }, + { + "id": 11, + "type": 4, + "gradeIndex": 4, + "name": "道家学派", + "lvLimit": 65, + "limitId": 10, + "buyRewardPlan": 0, + "layerCount": 17, + "layerPlan": 404, + "challengePlan": 2, + "randomEventPlan": 1, + "firstReward": "31002&50|31001&1005", + "heroRatioPlan": 1, + "heroValue": 800000, + "heroSecondAttrLevel": 1, + "takeoutRewardShow": "2&1&12|2&2&10|2&3&5" + }, + { + "id": 12, + "type": 4, + "gradeIndex": 5, + "name": "道家学派", + "lvLimit": 70, + "limitId": 11, + "buyRewardPlan": 0, + "layerCount": 20, + "layerPlan": 405, + "challengePlan": 3, + "randomEventPlan": 1, + "firstReward": "31002&100|31001&1005", + "heroRatioPlan": 1, + "heroValue": 900000, + "heroSecondAttrLevel": 1, + "takeoutRewardShow": "2&1&12|2&2&10|2&3&5|2&4&1" + }, + { + "id": 13, + "type": 5, + "gradeIndex": 1, + "name": "墨家学派", + "lvLimit": 53, + "limitId": 8, + "buyRewardPlan": 0, + "layerCount": 15, + "layerPlan": 501, + "challengePlan": 4, + "randomEventPlan": 1, + "firstReward": "31002&50|31001&1006", + "heroRatioPlan": 1, + "heroValue": 500000, + "heroSecondAttrLevel": 1, + "takeoutRewardShow": "3&1&5|3&2&3" + }, + { + "id": 14, + "type": 5, + "gradeIndex": 2, + "name": "墨家学派", + "lvLimit": 55, + "limitId": 13, + "buyRewardPlan": 0, + "layerCount": 15, + "layerPlan": 502, + "challengePlan": 5, + "randomEventPlan": 1, + "firstReward": "31002&100|31001&1006", + "heroRatioPlan": 1, + "heroValue": 600000, + "heroSecondAttrLevel": 1, + "takeoutRewardShow": "3&1&10|3&2&5" + }, + { + "id": 15, + "type": 5, + "gradeIndex": 3, + "name": "墨家学派", + "lvLimit": 60, + "limitId": 14, + "buyRewardPlan": 0, + "layerCount": 15, + "layerPlan": 503, + "challengePlan": 6, + "randomEventPlan": 1, + "firstReward": "31002&50|31001&1007", + "heroRatioPlan": 1, + "heroValue": 700000, + "heroSecondAttrLevel": 1, + "takeoutRewardShow": "3&1&10|3&2&7|3&3&3" + }, + { + "id": 16, + "type": 5, + "gradeIndex": 4, + "name": "墨家学派", + "lvLimit": 65, + "limitId": 15, + "buyRewardPlan": 0, + "layerCount": 17, + "layerPlan": 504, + "challengePlan": 7, + "randomEventPlan": 1, + "firstReward": "31002&100|31001&1007", + "heroRatioPlan": 1, + "heroValue": 800000, + "heroSecondAttrLevel": 1, + "takeoutRewardShow": "3&1&12|3&2&10|3&3&5" + }, + { + "id": 17, + "type": 5, + "gradeIndex": 5, + "name": "墨家学派", + "lvLimit": 70, + "limitId": 16, + "buyRewardPlan": 0, + "layerCount": 20, + "layerPlan": 505, + "challengePlan": 8, + "randomEventPlan": 1, + "firstReward": "31002&50|31001&1008", + "heroRatioPlan": 1, + "heroValue": 900000, + "heroSecondAttrLevel": 1, + "takeoutRewardShow": "3&1&12|3&2&10|3&3&5|3&4&1" + }, + { + "id": 18, + "type": 6, + "gradeIndex": 1, + "name": "法家学派", + "lvLimit": 53, + "limitId": 13, + "buyRewardPlan": 0, + "layerCount": 15, + "layerPlan": 601, + "challengePlan": 9, + "randomEventPlan": 1, + "firstReward": "31002&100|31001&1008", + "heroRatioPlan": 1, + "heroValue": 500000, + "heroSecondAttrLevel": 1, + "takeoutRewardShow": "4&1&5|4&2&3" + }, + { + "id": 19, + "type": 6, + "gradeIndex": 2, + "name": "法家学派", + "lvLimit": 55, + "limitId": 18, + "buyRewardPlan": 0, + "layerCount": 15, + "layerPlan": 602, + "challengePlan": 1, + "randomEventPlan": 1, + "firstReward": "31002&50|31001&1009", + "heroRatioPlan": 1, + "heroValue": 600000, + "heroSecondAttrLevel": 1, + "takeoutRewardShow": "4&1&10|4&2&5" + }, + { + "id": 20, + "type": 6, + "gradeIndex": 3, + "name": "法家学派", + "lvLimit": 60, + "limitId": 19, + "buyRewardPlan": 0, + "layerCount": 15, + "layerPlan": 603, + "challengePlan": 2, + "randomEventPlan": 1, + "firstReward": "31002&100|31001&1009", + "heroRatioPlan": 1, + "heroValue": 700000, + "heroSecondAttrLevel": 1, + "takeoutRewardShow": "4&1&10|4&2&7|4&3&3" + }, + { + "id": 21, + "type": 6, + "gradeIndex": 4, + "name": "法家学派", + "lvLimit": 65, + "limitId": 20, + "buyRewardPlan": 0, + "layerCount": 17, + "layerPlan": 604, + "challengePlan": 3, + "randomEventPlan": 1, + "firstReward": "31002&50|31001&1010", + "heroRatioPlan": 1, + "heroValue": 800000, + "heroSecondAttrLevel": 1, + "takeoutRewardShow": "4&1&12|4&2&10|4&3&5" + }, + { + "id": 22, + "type": 6, + "gradeIndex": 5, + "name": "法家学派", + "lvLimit": 70, + "limitId": 21, + "buyRewardPlan": 0, + "layerCount": 20, + "layerPlan": 605, + "challengePlan": 4, + "randomEventPlan": 1, + "firstReward": "31002&100|31001&1010", + "heroRatioPlan": 1, + "heroValue": 900000, + "heroSecondAttrLevel": 1, + "takeoutRewardShow": "4&1&12|4&2&10|4&3&5|4&4&1" + }, + { + "id": 23, + "type": 7, + "gradeIndex": 1, + "name": "医家学派", + "lvLimit": 53, + "limitId": 18, + "buyRewardPlan": 0, + "layerCount": 15, + "layerPlan": 701, + "challengePlan": 5, + "randomEventPlan": 1, + "firstReward": "31002&50|31001&1011", + "heroRatioPlan": 1, + "heroValue": 500000, + "heroSecondAttrLevel": 1, + "takeoutRewardShow": "5&1&5|5&2&3" + }, + { + "id": 24, + "type": 7, + "gradeIndex": 2, + "name": "医家学派", + "lvLimit": 55, + "limitId": 23, + "buyRewardPlan": 0, + "layerCount": 15, + "layerPlan": 702, + "challengePlan": 6, + "randomEventPlan": 1, + "firstReward": "31002&100|31001&1011", + "heroRatioPlan": 1, + "heroValue": 600000, + "heroSecondAttrLevel": 1, + "takeoutRewardShow": "5&1&10|5&2&5" + }, + { + "id": 25, + "type": 7, + "gradeIndex": 3, + "name": "医家学派", + "lvLimit": 60, + "limitId": 24, + "buyRewardPlan": 0, + "layerCount": 15, + "layerPlan": 703, + "challengePlan": 7, + "randomEventPlan": 1, + "firstReward": "31002&50|31001&1012", + "heroRatioPlan": 1, + "heroValue": 700000, + "heroSecondAttrLevel": 1, + "takeoutRewardShow": "5&1&10|5&2&7|5&3&3" + }, + { + "id": 26, + "type": 7, + "gradeIndex": 4, + "name": "医家学派", + "lvLimit": 65, + "limitId": 25, + "buyRewardPlan": 0, + "layerCount": 17, + "layerPlan": 704, + "challengePlan": 8, + "randomEventPlan": 1, + "firstReward": "31002&100|31001&1012", + "heroRatioPlan": 1, + "heroValue": 800000, + "heroSecondAttrLevel": 1, + "takeoutRewardShow": "5&1&12|5&2&10|5&3&5" + }, + { + "id": 27, + "type": 7, + "gradeIndex": 5, + "name": "医家学派", + "lvLimit": 70, + "limitId": 26, + "buyRewardPlan": 0, + "layerCount": 20, + "layerPlan": 705, + "challengePlan": 9, + "randomEventPlan": 1, + "firstReward": "31002&50|31001&1013", + "heroRatioPlan": 1, + "heroValue": 900000, + "heroSecondAttrLevel": 1, + "takeoutRewardShow": "5&1&12|5&2&10|5&3&5|5&4&1" + }, + { + "id": 28, + "type": 8, + "gradeIndex": 1, + "name": "兵家学派", + "lvLimit": 53, + "limitId": 23, + "buyRewardPlan": 0, + "layerCount": 15, + "layerPlan": 801, + "challengePlan": 1, + "randomEventPlan": 1, + "firstReward": "31002&100|31001&1013", + "heroRatioPlan": 1, + "heroValue": 500000, + "heroSecondAttrLevel": 1, + "takeoutRewardShow": "6&1&5|6&2&3" + }, + { + "id": 29, + "type": 8, + "gradeIndex": 2, + "name": "兵家学派", + "lvLimit": 55, + "limitId": 28, + "buyRewardPlan": 0, + "layerCount": 15, + "layerPlan": 802, + "challengePlan": 2, + "randomEventPlan": 1, + "firstReward": "31002&50|31001&1014", + "heroRatioPlan": 1, + "heroValue": 600000, + "heroSecondAttrLevel": 1, + "takeoutRewardShow": "6&1&10|6&2&5" + }, + { + "id": 30, + "type": 8, + "gradeIndex": 3, + "name": "兵家学派", + "lvLimit": 60, + "limitId": 29, + "buyRewardPlan": 0, + "layerCount": 15, + "layerPlan": 803, + "challengePlan": 3, + "randomEventPlan": 1, + "firstReward": "31002&100|31001&1014", + "heroRatioPlan": 1, + "heroValue": 700000, + "heroSecondAttrLevel": 1, + "takeoutRewardShow": "6&1&10|6&2&7|6&3&3" + }, + { + "id": 31, + "type": 8, + "gradeIndex": 4, + "name": "兵家学派", + "lvLimit": 65, + "limitId": 30, + "buyRewardPlan": 0, + "layerCount": 17, + "layerPlan": 804, + "challengePlan": 4, + "randomEventPlan": 1, + "firstReward": "31002&50|31001&1015", + "heroRatioPlan": 1, + "heroValue": 800000, + "heroSecondAttrLevel": 1, + "takeoutRewardShow": "6&1&12|6&2&10|6&3&5" + }, + { + "id": 32, + "type": 8, + "gradeIndex": 5, + "name": "兵家学派", + "lvLimit": 70, + "limitId": 31, + "buyRewardPlan": 0, + "layerCount": 20, + "layerPlan": 805, + "challengePlan": 5, + "randomEventPlan": 1, + "firstReward": "31002&100|31001&1015", + "heroRatioPlan": 1, + "heroValue": 900000, + "heroSecondAttrLevel": 1, + "takeoutRewardShow": "6&1&12|6&2&10|6&3&5|6&4&1" + }, + { + "id": 33, + "type": 9, + "gradeIndex": 1, + "name": "阴阳学派", + "lvLimit": 53, + "limitId": 28, + "buyRewardPlan": 0, + "layerCount": 15, + "layerPlan": 901, + "challengePlan": 6, + "randomEventPlan": 1, + "firstReward": "31002&50|31001&1016", + "heroRatioPlan": 1, + "heroValue": 500000, + "heroSecondAttrLevel": 1, + "takeoutRewardShow": "7&1&5|7&2&3" + }, + { + "id": 34, + "type": 9, + "gradeIndex": 2, + "name": "阴阳学派", + "lvLimit": 55, + "limitId": 33, + "buyRewardPlan": 0, + "layerCount": 15, + "layerPlan": 902, + "challengePlan": 7, + "randomEventPlan": 1, + "firstReward": "31002&100|31001&1016", + "heroRatioPlan": 1, + "heroValue": 600000, + "heroSecondAttrLevel": 1, + "takeoutRewardShow": "7&1&10|7&2&5" + }, + { + "id": 35, + "type": 9, + "gradeIndex": 3, + "name": "阴阳学派", + "lvLimit": 60, + "limitId": 34, + "buyRewardPlan": 0, + "layerCount": 15, + "layerPlan": 903, + "challengePlan": 8, + "randomEventPlan": 1, + "firstReward": "31002&50|31001&1017", + "heroRatioPlan": 1, + "heroValue": 700000, + "heroSecondAttrLevel": 1, + "takeoutRewardShow": "7&1&10|7&2&7|7&3&3" + }, + { + "id": 36, + "type": 9, + "gradeIndex": 4, + "name": "阴阳学派", + "lvLimit": 65, + "limitId": 35, + "buyRewardPlan": 0, + "layerCount": 17, + "layerPlan": 904, + "challengePlan": 9, + "randomEventPlan": 1, + "firstReward": "31002&100|31001&1017", + "heroRatioPlan": 1, + "heroValue": 800000, + "heroSecondAttrLevel": 1, + "takeoutRewardShow": "7&1&12|7&2&10|7&3&5" + }, + { + "id": 37, + "type": 9, + "gradeIndex": 5, + "name": "阴阳学派", + "lvLimit": 70, + "limitId": 36, + "buyRewardPlan": 0, + "layerCount": 20, + "layerPlan": 905, + "challengePlan": 1, + "randomEventPlan": 1, + "firstReward": "31002&50|31001&1018", + "heroRatioPlan": 1, + "heroValue": 900000, + "heroSecondAttrLevel": 1, + "takeoutRewardShow": "7&1&12|7&2&10|7&3&5|7&4&1" + }, + { + "id": 38, + "type": 10, + "gradeIndex": 1, + "name": "纵横学派", + "lvLimit": 53, + "limitId": 33, + "buyRewardPlan": 0, + "layerCount": 15, + "layerPlan": 1001, + "challengePlan": 2, + "randomEventPlan": 1, + "firstReward": "31002&100|31001&1018", + "heroRatioPlan": 1, + "heroValue": 500000, + "heroSecondAttrLevel": 1, + "takeoutRewardShow": "8&1&5|8&2&3" + }, + { + "id": 39, + "type": 10, + "gradeIndex": 2, + "name": "纵横学派", + "lvLimit": 55, + "limitId": 38, + "buyRewardPlan": 0, + "layerCount": 15, + "layerPlan": 1002, + "challengePlan": 3, + "randomEventPlan": 1, + "firstReward": "31002&50|31001&1019", + "heroRatioPlan": 1, + "heroValue": 600000, + "heroSecondAttrLevel": 1, + "takeoutRewardShow": "8&1&10|8&2&5" + }, + { + "id": 40, + "type": 10, + "gradeIndex": 3, + "name": "纵横学派", + "lvLimit": 60, + "limitId": 39, + "buyRewardPlan": 0, + "layerCount": 15, + "layerPlan": 1003, + "challengePlan": 4, + "randomEventPlan": 1, + "firstReward": "31002&100|31001&1019", + "heroRatioPlan": 1, + "heroValue": 700000, + "heroSecondAttrLevel": 1, + "takeoutRewardShow": "8&1&10|8&2&7|8&3&3" + }, + { + "id": 41, + "type": 10, + "gradeIndex": 4, + "name": "纵横学派", + "lvLimit": 65, + "limitId": 40, + "buyRewardPlan": 0, + "layerCount": 17, + "layerPlan": 1004, + "challengePlan": 5, + "randomEventPlan": 1, + "firstReward": "31002&50|31001&1020", + "heroRatioPlan": 1, + "heroValue": 800000, + "heroSecondAttrLevel": 1, + "takeoutRewardShow": "8&1&12|8&2&10|8&3&5" + }, + { + "id": 42, + "type": 10, + "gradeIndex": 5, + "name": "纵横学派", + "lvLimit": 70, + "limitId": 41, + "buyRewardPlan": 0, + "layerCount": 20, + "layerPlan": 1005, + "challengePlan": 6, + "randomEventPlan": 1, + "firstReward": "31002&100|31001&1020", + "heroRatioPlan": 1, + "heroValue": 900000, + "heroSecondAttrLevel": 1, + "takeoutRewardShow": "8&1&12|8&2&10|8&3&5|8&4&1" + } +] \ No newline at end of file diff --git a/shared/resource/jsons/dic_spiritPlan.json b/shared/resource/jsons/dic_spiritPlan.json new file mode 100644 index 000000000..2e043098d --- /dev/null +++ b/shared/resource/jsons/dic_spiritPlan.json @@ -0,0 +1,3932 @@ +[ + { + "id": 1, + "planId": 101, + "spiritId": 110001, + "weight": 1 + }, + { + "id": 2, + "planId": 101, + "spiritId": 110002, + "weight": 1 + }, + { + "id": 3, + "planId": 101, + "spiritId": 110003, + "weight": 1 + }, + { + "id": 4, + "planId": 101, + "spiritId": 110004, + "weight": 1 + }, + { + "id": 5, + "planId": 101, + "spiritId": 110005, + "weight": 1 + }, + { + "id": 6, + "planId": 201, + "spiritId": 110007, + "weight": 1 + }, + { + "id": 7, + "planId": 201, + "spiritId": 110008, + "weight": 1 + }, + { + "id": 8, + "planId": 201, + "spiritId": 110010, + "weight": 1 + }, + { + "id": 9, + "planId": 201, + "spiritId": 110011, + "weight": 1 + }, + { + "id": 10, + "planId": 201, + "spiritId": 110012, + "weight": 1 + }, + { + "id": 11, + "planId": 201, + "spiritId": 110013, + "weight": 1 + }, + { + "id": 12, + "planId": 201, + "spiritId": 110014, + "weight": 1 + }, + { + "id": 13, + "planId": 201, + "spiritId": 110015, + "weight": 1 + }, + { + "id": 14, + "planId": 201, + "spiritId": 110016, + "weight": 1 + }, + { + "id": 15, + "planId": 201, + "spiritId": 110017, + "weight": 1 + }, + { + "id": 16, + "planId": 301, + "spiritId": 110018, + "weight": 1 + }, + { + "id": 17, + "planId": 301, + "spiritId": 110019, + "weight": 1 + }, + { + "id": 18, + "planId": 301, + "spiritId": 110020, + "weight": 1 + }, + { + "id": 19, + "planId": 301, + "spiritId": 110021, + "weight": 1 + }, + { + "id": 20, + "planId": 301, + "spiritId": 110022, + "weight": 1 + }, + { + "id": 21, + "planId": 301, + "spiritId": 110024, + "weight": 1 + }, + { + "id": 22, + "planId": 301, + "spiritId": 110025, + "weight": 1 + }, + { + "id": 23, + "planId": 301, + "spiritId": 110026, + "weight": 1 + }, + { + "id": 24, + "planId": 301, + "spiritId": 110027, + "weight": 1 + }, + { + "id": 25, + "planId": 301, + "spiritId": 110028, + "weight": 1 + }, + { + "id": 26, + "planId": 301, + "spiritId": 110029, + "weight": 1 + }, + { + "id": 27, + "planId": 301, + "spiritId": 110030, + "weight": 1 + }, + { + "id": 28, + "planId": 301, + "spiritId": 110031, + "weight": 1 + }, + { + "id": 29, + "planId": 301, + "spiritId": 110032, + "weight": 1 + }, + { + "id": 30, + "planId": 301, + "spiritId": 110033, + "weight": 1 + }, + { + "id": 31, + "planId": 302, + "spiritId": 110034, + "weight": 1 + }, + { + "id": 32, + "planId": 302, + "spiritId": 110035, + "weight": 1 + }, + { + "id": 33, + "planId": 302, + "spiritId": 110036, + "weight": 1 + }, + { + "id": 34, + "planId": 302, + "spiritId": 110037, + "weight": 1 + }, + { + "id": 35, + "planId": 302, + "spiritId": 110038, + "weight": 1 + }, + { + "id": 36, + "planId": 302, + "spiritId": 110040, + "weight": 1 + }, + { + "id": 37, + "planId": 302, + "spiritId": 110041, + "weight": 1 + }, + { + "id": 38, + "planId": 302, + "spiritId": 110042, + "weight": 1 + }, + { + "id": 39, + "planId": 302, + "spiritId": 110044, + "weight": 1 + }, + { + "id": 40, + "planId": 302, + "spiritId": 110045, + "weight": 1 + }, + { + "id": 41, + "planId": 302, + "spiritId": 110046, + "weight": 1 + }, + { + "id": 42, + "planId": 302, + "spiritId": 110047, + "weight": 1 + }, + { + "id": 43, + "planId": 302, + "spiritId": 110049, + "weight": 1 + }, + { + "id": 44, + "planId": 302, + "spiritId": 110050, + "weight": 1 + }, + { + "id": 45, + "planId": 302, + "spiritId": 110051, + "weight": 1 + }, + { + "id": 46, + "planId": 303, + "spiritId": 110052, + "weight": 1 + }, + { + "id": 47, + "planId": 303, + "spiritId": 110053, + "weight": 1 + }, + { + "id": 48, + "planId": 303, + "spiritId": 110054, + "weight": 1 + }, + { + "id": 49, + "planId": 303, + "spiritId": 110055, + "weight": 1 + }, + { + "id": 50, + "planId": 303, + "spiritId": 110056, + "weight": 1 + }, + { + "id": 51, + "planId": 303, + "spiritId": 110062, + "weight": 1 + }, + { + "id": 52, + "planId": 303, + "spiritId": 110063, + "weight": 1 + }, + { + "id": 53, + "planId": 303, + "spiritId": 110064, + "weight": 1 + }, + { + "id": 54, + "planId": 303, + "spiritId": 110065, + "weight": 1 + }, + { + "id": 55, + "planId": 303, + "spiritId": 110066, + "weight": 1 + }, + { + "id": 56, + "planId": 303, + "spiritId": 110067, + "weight": 1 + }, + { + "id": 57, + "planId": 303, + "spiritId": 110001, + "weight": 1 + }, + { + "id": 58, + "planId": 303, + "spiritId": 110002, + "weight": 1 + }, + { + "id": 59, + "planId": 303, + "spiritId": 110003, + "weight": 1 + }, + { + "id": 60, + "planId": 303, + "spiritId": 110004, + "weight": 1 + }, + { + "id": 61, + "planId": 304, + "spiritId": 110005, + "weight": 1 + }, + { + "id": 62, + "planId": 304, + "spiritId": 110007, + "weight": 1 + }, + { + "id": 63, + "planId": 304, + "spiritId": 110008, + "weight": 1 + }, + { + "id": 64, + "planId": 304, + "spiritId": 110010, + "weight": 1 + }, + { + "id": 65, + "planId": 304, + "spiritId": 110011, + "weight": 1 + }, + { + "id": 66, + "planId": 304, + "spiritId": 110012, + "weight": 1 + }, + { + "id": 67, + "planId": 304, + "spiritId": 110013, + "weight": 1 + }, + { + "id": 68, + "planId": 304, + "spiritId": 110014, + "weight": 1 + }, + { + "id": 69, + "planId": 304, + "spiritId": 110015, + "weight": 1 + }, + { + "id": 70, + "planId": 304, + "spiritId": 110016, + "weight": 1 + }, + { + "id": 71, + "planId": 304, + "spiritId": 110017, + "weight": 1 + }, + { + "id": 72, + "planId": 304, + "spiritId": 110018, + "weight": 1 + }, + { + "id": 73, + "planId": 304, + "spiritId": 110019, + "weight": 1 + }, + { + "id": 74, + "planId": 304, + "spiritId": 110020, + "weight": 1 + }, + { + "id": 75, + "planId": 304, + "spiritId": 110021, + "weight": 1 + }, + { + "id": 76, + "planId": 305, + "spiritId": 110022, + "weight": 1 + }, + { + "id": 77, + "planId": 305, + "spiritId": 110024, + "weight": 1 + }, + { + "id": 78, + "planId": 305, + "spiritId": 110025, + "weight": 1 + }, + { + "id": 79, + "planId": 305, + "spiritId": 110026, + "weight": 1 + }, + { + "id": 80, + "planId": 305, + "spiritId": 110027, + "weight": 1 + }, + { + "id": 81, + "planId": 305, + "spiritId": 110028, + "weight": 1 + }, + { + "id": 82, + "planId": 305, + "spiritId": 110029, + "weight": 1 + }, + { + "id": 83, + "planId": 305, + "spiritId": 110030, + "weight": 1 + }, + { + "id": 84, + "planId": 305, + "spiritId": 110031, + "weight": 1 + }, + { + "id": 85, + "planId": 305, + "spiritId": 110032, + "weight": 1 + }, + { + "id": 86, + "planId": 305, + "spiritId": 110033, + "weight": 1 + }, + { + "id": 87, + "planId": 305, + "spiritId": 110034, + "weight": 1 + }, + { + "id": 88, + "planId": 305, + "spiritId": 110035, + "weight": 1 + }, + { + "id": 89, + "planId": 305, + "spiritId": 110036, + "weight": 1 + }, + { + "id": 90, + "planId": 305, + "spiritId": 110037, + "weight": 1 + }, + { + "id": 91, + "planId": 305, + "spiritId": 110038, + "weight": 1 + }, + { + "id": 92, + "planId": 305, + "spiritId": 110040, + "weight": 1 + }, + { + "id": 93, + "planId": 305, + "spiritId": 110041, + "weight": 1 + }, + { + "id": 94, + "planId": 305, + "spiritId": 110042, + "weight": 1 + }, + { + "id": 95, + "planId": 305, + "spiritId": 110044, + "weight": 1 + }, + { + "id": 96, + "planId": 401, + "spiritId": 110045, + "weight": 1 + }, + { + "id": 97, + "planId": 401, + "spiritId": 110046, + "weight": 1 + }, + { + "id": 98, + "planId": 401, + "spiritId": 110047, + "weight": 1 + }, + { + "id": 99, + "planId": 401, + "spiritId": 110049, + "weight": 1 + }, + { + "id": 100, + "planId": 401, + "spiritId": 110050, + "weight": 1 + }, + { + "id": 101, + "planId": 401, + "spiritId": 110051, + "weight": 1 + }, + { + "id": 102, + "planId": 401, + "spiritId": 110052, + "weight": 1 + }, + { + "id": 103, + "planId": 401, + "spiritId": 110053, + "weight": 1 + }, + { + "id": 104, + "planId": 401, + "spiritId": 110054, + "weight": 1 + }, + { + "id": 105, + "planId": 401, + "spiritId": 110055, + "weight": 1 + }, + { + "id": 106, + "planId": 401, + "spiritId": 110056, + "weight": 1 + }, + { + "id": 107, + "planId": 401, + "spiritId": 110062, + "weight": 1 + }, + { + "id": 108, + "planId": 401, + "spiritId": 110063, + "weight": 1 + }, + { + "id": 109, + "planId": 401, + "spiritId": 110064, + "weight": 1 + }, + { + "id": 110, + "planId": 401, + "spiritId": 110065, + "weight": 1 + }, + { + "id": 111, + "planId": 402, + "spiritId": 110066, + "weight": 1 + }, + { + "id": 112, + "planId": 402, + "spiritId": 110067, + "weight": 1 + }, + { + "id": 113, + "planId": 402, + "spiritId": 110001, + "weight": 1 + }, + { + "id": 114, + "planId": 402, + "spiritId": 110002, + "weight": 1 + }, + { + "id": 115, + "planId": 402, + "spiritId": 110003, + "weight": 1 + }, + { + "id": 116, + "planId": 402, + "spiritId": 110004, + "weight": 1 + }, + { + "id": 117, + "planId": 402, + "spiritId": 110005, + "weight": 1 + }, + { + "id": 118, + "planId": 402, + "spiritId": 110007, + "weight": 1 + }, + { + "id": 119, + "planId": 402, + "spiritId": 110008, + "weight": 1 + }, + { + "id": 120, + "planId": 402, + "spiritId": 110010, + "weight": 1 + }, + { + "id": 121, + "planId": 402, + "spiritId": 110011, + "weight": 1 + }, + { + "id": 122, + "planId": 402, + "spiritId": 110012, + "weight": 1 + }, + { + "id": 123, + "planId": 402, + "spiritId": 110013, + "weight": 1 + }, + { + "id": 124, + "planId": 402, + "spiritId": 110014, + "weight": 1 + }, + { + "id": 125, + "planId": 402, + "spiritId": 110015, + "weight": 1 + }, + { + "id": 126, + "planId": 403, + "spiritId": 110016, + "weight": 1 + }, + { + "id": 127, + "planId": 403, + "spiritId": 110017, + "weight": 1 + }, + { + "id": 128, + "planId": 403, + "spiritId": 110018, + "weight": 1 + }, + { + "id": 129, + "planId": 403, + "spiritId": 110019, + "weight": 1 + }, + { + "id": 130, + "planId": 403, + "spiritId": 110020, + "weight": 1 + }, + { + "id": 131, + "planId": 403, + "spiritId": 110021, + "weight": 1 + }, + { + "id": 132, + "planId": 403, + "spiritId": 110022, + "weight": 1 + }, + { + "id": 133, + "planId": 403, + "spiritId": 110024, + "weight": 1 + }, + { + "id": 134, + "planId": 403, + "spiritId": 110025, + "weight": 1 + }, + { + "id": 135, + "planId": 403, + "spiritId": 110026, + "weight": 1 + }, + { + "id": 136, + "planId": 403, + "spiritId": 110027, + "weight": 1 + }, + { + "id": 137, + "planId": 403, + "spiritId": 110028, + "weight": 1 + }, + { + "id": 138, + "planId": 403, + "spiritId": 110029, + "weight": 1 + }, + { + "id": 139, + "planId": 403, + "spiritId": 110030, + "weight": 1 + }, + { + "id": 140, + "planId": 403, + "spiritId": 110031, + "weight": 1 + }, + { + "id": 141, + "planId": 404, + "spiritId": 110032, + "weight": 1 + }, + { + "id": 142, + "planId": 404, + "spiritId": 110033, + "weight": 1 + }, + { + "id": 143, + "planId": 404, + "spiritId": 110034, + "weight": 1 + }, + { + "id": 144, + "planId": 404, + "spiritId": 110035, + "weight": 1 + }, + { + "id": 145, + "planId": 404, + "spiritId": 110036, + "weight": 1 + }, + { + "id": 146, + "planId": 404, + "spiritId": 110037, + "weight": 1 + }, + { + "id": 147, + "planId": 404, + "spiritId": 110038, + "weight": 1 + }, + { + "id": 148, + "planId": 404, + "spiritId": 110040, + "weight": 1 + }, + { + "id": 149, + "planId": 404, + "spiritId": 110041, + "weight": 1 + }, + { + "id": 150, + "planId": 404, + "spiritId": 110042, + "weight": 1 + }, + { + "id": 151, + "planId": 404, + "spiritId": 110044, + "weight": 1 + }, + { + "id": 152, + "planId": 404, + "spiritId": 110045, + "weight": 1 + }, + { + "id": 153, + "planId": 404, + "spiritId": 110046, + "weight": 1 + }, + { + "id": 154, + "planId": 404, + "spiritId": 110047, + "weight": 1 + }, + { + "id": 155, + "planId": 404, + "spiritId": 110049, + "weight": 1 + }, + { + "id": 156, + "planId": 405, + "spiritId": 110050, + "weight": 1 + }, + { + "id": 157, + "planId": 405, + "spiritId": 110051, + "weight": 1 + }, + { + "id": 158, + "planId": 405, + "spiritId": 110052, + "weight": 1 + }, + { + "id": 159, + "planId": 405, + "spiritId": 110053, + "weight": 1 + }, + { + "id": 160, + "planId": 405, + "spiritId": 110054, + "weight": 1 + }, + { + "id": 161, + "planId": 405, + "spiritId": 110055, + "weight": 1 + }, + { + "id": 162, + "planId": 405, + "spiritId": 110056, + "weight": 1 + }, + { + "id": 163, + "planId": 405, + "spiritId": 110062, + "weight": 1 + }, + { + "id": 164, + "planId": 405, + "spiritId": 110063, + "weight": 1 + }, + { + "id": 165, + "planId": 405, + "spiritId": 110064, + "weight": 1 + }, + { + "id": 166, + "planId": 405, + "spiritId": 110065, + "weight": 1 + }, + { + "id": 167, + "planId": 405, + "spiritId": 110066, + "weight": 1 + }, + { + "id": 168, + "planId": 405, + "spiritId": 110067, + "weight": 1 + }, + { + "id": 169, + "planId": 405, + "spiritId": 110001, + "weight": 1 + }, + { + "id": 170, + "planId": 405, + "spiritId": 110002, + "weight": 1 + }, + { + "id": 171, + "planId": 405, + "spiritId": 110003, + "weight": 1 + }, + { + "id": 172, + "planId": 405, + "spiritId": 110004, + "weight": 1 + }, + { + "id": 173, + "planId": 405, + "spiritId": 110005, + "weight": 1 + }, + { + "id": 174, + "planId": 405, + "spiritId": 110007, + "weight": 1 + }, + { + "id": 175, + "planId": 405, + "spiritId": 110008, + "weight": 1 + }, + { + "id": 176, + "planId": 501, + "spiritId": 110010, + "weight": 1 + }, + { + "id": 177, + "planId": 501, + "spiritId": 110011, + "weight": 1 + }, + { + "id": 178, + "planId": 501, + "spiritId": 110012, + "weight": 1 + }, + { + "id": 179, + "planId": 501, + "spiritId": 110013, + "weight": 1 + }, + { + "id": 180, + "planId": 501, + "spiritId": 110014, + "weight": 1 + }, + { + "id": 181, + "planId": 501, + "spiritId": 110015, + "weight": 1 + }, + { + "id": 182, + "planId": 501, + "spiritId": 110016, + "weight": 1 + }, + { + "id": 183, + "planId": 501, + "spiritId": 110017, + "weight": 1 + }, + { + "id": 184, + "planId": 501, + "spiritId": 110018, + "weight": 1 + }, + { + "id": 185, + "planId": 501, + "spiritId": 110019, + "weight": 1 + }, + { + "id": 186, + "planId": 501, + "spiritId": 110020, + "weight": 1 + }, + { + "id": 187, + "planId": 501, + "spiritId": 110021, + "weight": 1 + }, + { + "id": 188, + "planId": 501, + "spiritId": 110022, + "weight": 1 + }, + { + "id": 189, + "planId": 501, + "spiritId": 110024, + "weight": 1 + }, + { + "id": 190, + "planId": 501, + "spiritId": 110025, + "weight": 1 + }, + { + "id": 191, + "planId": 502, + "spiritId": 110026, + "weight": 1 + }, + { + "id": 192, + "planId": 502, + "spiritId": 110027, + "weight": 1 + }, + { + "id": 193, + "planId": 502, + "spiritId": 110028, + "weight": 1 + }, + { + "id": 194, + "planId": 502, + "spiritId": 110029, + "weight": 1 + }, + { + "id": 195, + "planId": 502, + "spiritId": 110030, + "weight": 1 + }, + { + "id": 196, + "planId": 502, + "spiritId": 110031, + "weight": 1 + }, + { + "id": 197, + "planId": 502, + "spiritId": 110032, + "weight": 1 + }, + { + "id": 198, + "planId": 502, + "spiritId": 110033, + "weight": 1 + }, + { + "id": 199, + "planId": 502, + "spiritId": 110034, + "weight": 1 + }, + { + "id": 200, + "planId": 502, + "spiritId": 110035, + "weight": 1 + }, + { + "id": 201, + "planId": 502, + "spiritId": 110036, + "weight": 1 + }, + { + "id": 202, + "planId": 502, + "spiritId": 110037, + "weight": 1 + }, + { + "id": 203, + "planId": 502, + "spiritId": 110038, + "weight": 1 + }, + { + "id": 204, + "planId": 502, + "spiritId": 110040, + "weight": 1 + }, + { + "id": 205, + "planId": 502, + "spiritId": 110041, + "weight": 1 + }, + { + "id": 206, + "planId": 503, + "spiritId": 110042, + "weight": 1 + }, + { + "id": 207, + "planId": 503, + "spiritId": 110044, + "weight": 1 + }, + { + "id": 208, + "planId": 503, + "spiritId": 110045, + "weight": 1 + }, + { + "id": 209, + "planId": 503, + "spiritId": 110046, + "weight": 1 + }, + { + "id": 210, + "planId": 503, + "spiritId": 110047, + "weight": 1 + }, + { + "id": 211, + "planId": 503, + "spiritId": 110049, + "weight": 1 + }, + { + "id": 212, + "planId": 503, + "spiritId": 110050, + "weight": 1 + }, + { + "id": 213, + "planId": 503, + "spiritId": 110051, + "weight": 1 + }, + { + "id": 214, + "planId": 503, + "spiritId": 110052, + "weight": 1 + }, + { + "id": 215, + "planId": 503, + "spiritId": 110053, + "weight": 1 + }, + { + "id": 216, + "planId": 503, + "spiritId": 110054, + "weight": 1 + }, + { + "id": 217, + "planId": 503, + "spiritId": 110055, + "weight": 1 + }, + { + "id": 218, + "planId": 503, + "spiritId": 110056, + "weight": 1 + }, + { + "id": 219, + "planId": 503, + "spiritId": 110062, + "weight": 1 + }, + { + "id": 220, + "planId": 503, + "spiritId": 110063, + "weight": 1 + }, + { + "id": 221, + "planId": 504, + "spiritId": 110064, + "weight": 1 + }, + { + "id": 222, + "planId": 504, + "spiritId": 110065, + "weight": 1 + }, + { + "id": 223, + "planId": 504, + "spiritId": 110066, + "weight": 1 + }, + { + "id": 224, + "planId": 504, + "spiritId": 110067, + "weight": 1 + }, + { + "id": 225, + "planId": 504, + "spiritId": 110001, + "weight": 1 + }, + { + "id": 226, + "planId": 504, + "spiritId": 110002, + "weight": 1 + }, + { + "id": 227, + "planId": 504, + "spiritId": 110003, + "weight": 1 + }, + { + "id": 228, + "planId": 504, + "spiritId": 110004, + "weight": 1 + }, + { + "id": 229, + "planId": 504, + "spiritId": 110005, + "weight": 1 + }, + { + "id": 230, + "planId": 504, + "spiritId": 110007, + "weight": 1 + }, + { + "id": 231, + "planId": 504, + "spiritId": 110008, + "weight": 1 + }, + { + "id": 232, + "planId": 504, + "spiritId": 110010, + "weight": 1 + }, + { + "id": 233, + "planId": 504, + "spiritId": 110011, + "weight": 1 + }, + { + "id": 234, + "planId": 504, + "spiritId": 110012, + "weight": 1 + }, + { + "id": 235, + "planId": 504, + "spiritId": 110013, + "weight": 1 + }, + { + "id": 236, + "planId": 505, + "spiritId": 110014, + "weight": 1 + }, + { + "id": 237, + "planId": 505, + "spiritId": 110015, + "weight": 1 + }, + { + "id": 238, + "planId": 505, + "spiritId": 110016, + "weight": 1 + }, + { + "id": 239, + "planId": 505, + "spiritId": 110017, + "weight": 1 + }, + { + "id": 240, + "planId": 505, + "spiritId": 110018, + "weight": 1 + }, + { + "id": 241, + "planId": 505, + "spiritId": 110019, + "weight": 1 + }, + { + "id": 242, + "planId": 505, + "spiritId": 110020, + "weight": 1 + }, + { + "id": 243, + "planId": 505, + "spiritId": 110021, + "weight": 1 + }, + { + "id": 244, + "planId": 505, + "spiritId": 110022, + "weight": 1 + }, + { + "id": 245, + "planId": 505, + "spiritId": 110024, + "weight": 1 + }, + { + "id": 246, + "planId": 505, + "spiritId": 110025, + "weight": 1 + }, + { + "id": 247, + "planId": 505, + "spiritId": 110026, + "weight": 1 + }, + { + "id": 248, + "planId": 505, + "spiritId": 110027, + "weight": 1 + }, + { + "id": 249, + "planId": 505, + "spiritId": 110028, + "weight": 1 + }, + { + "id": 250, + "planId": 505, + "spiritId": 110029, + "weight": 1 + }, + { + "id": 251, + "planId": 505, + "spiritId": 110030, + "weight": 1 + }, + { + "id": 252, + "planId": 505, + "spiritId": 110031, + "weight": 1 + }, + { + "id": 253, + "planId": 505, + "spiritId": 110032, + "weight": 1 + }, + { + "id": 254, + "planId": 505, + "spiritId": 110033, + "weight": 1 + }, + { + "id": 255, + "planId": 505, + "spiritId": 110034, + "weight": 1 + }, + { + "id": 256, + "planId": 601, + "spiritId": 110035, + "weight": 1 + }, + { + "id": 257, + "planId": 601, + "spiritId": 110036, + "weight": 1 + }, + { + "id": 258, + "planId": 601, + "spiritId": 110037, + "weight": 1 + }, + { + "id": 259, + "planId": 601, + "spiritId": 110038, + "weight": 1 + }, + { + "id": 260, + "planId": 601, + "spiritId": 110040, + "weight": 1 + }, + { + "id": 261, + "planId": 601, + "spiritId": 110041, + "weight": 1 + }, + { + "id": 262, + "planId": 601, + "spiritId": 110042, + "weight": 1 + }, + { + "id": 263, + "planId": 601, + "spiritId": 110044, + "weight": 1 + }, + { + "id": 264, + "planId": 601, + "spiritId": 110045, + "weight": 1 + }, + { + "id": 265, + "planId": 601, + "spiritId": 110046, + "weight": 1 + }, + { + "id": 266, + "planId": 601, + "spiritId": 110047, + "weight": 1 + }, + { + "id": 267, + "planId": 601, + "spiritId": 110049, + "weight": 1 + }, + { + "id": 268, + "planId": 601, + "spiritId": 110050, + "weight": 1 + }, + { + "id": 269, + "planId": 601, + "spiritId": 110051, + "weight": 1 + }, + { + "id": 270, + "planId": 601, + "spiritId": 110052, + "weight": 1 + }, + { + "id": 271, + "planId": 602, + "spiritId": 110053, + "weight": 1 + }, + { + "id": 272, + "planId": 602, + "spiritId": 110054, + "weight": 1 + }, + { + "id": 273, + "planId": 602, + "spiritId": 110055, + "weight": 1 + }, + { + "id": 274, + "planId": 602, + "spiritId": 110056, + "weight": 1 + }, + { + "id": 275, + "planId": 602, + "spiritId": 110062, + "weight": 1 + }, + { + "id": 276, + "planId": 602, + "spiritId": 110063, + "weight": 1 + }, + { + "id": 277, + "planId": 602, + "spiritId": 110064, + "weight": 1 + }, + { + "id": 278, + "planId": 602, + "spiritId": 110065, + "weight": 1 + }, + { + "id": 279, + "planId": 602, + "spiritId": 110066, + "weight": 1 + }, + { + "id": 280, + "planId": 602, + "spiritId": 110067, + "weight": 1 + }, + { + "id": 281, + "planId": 602, + "spiritId": 110001, + "weight": 1 + }, + { + "id": 282, + "planId": 602, + "spiritId": 110002, + "weight": 1 + }, + { + "id": 283, + "planId": 602, + "spiritId": 110003, + "weight": 1 + }, + { + "id": 284, + "planId": 602, + "spiritId": 110004, + "weight": 1 + }, + { + "id": 285, + "planId": 602, + "spiritId": 110005, + "weight": 1 + }, + { + "id": 286, + "planId": 603, + "spiritId": 110007, + "weight": 1 + }, + { + "id": 287, + "planId": 603, + "spiritId": 110008, + "weight": 1 + }, + { + "id": 288, + "planId": 603, + "spiritId": 110010, + "weight": 1 + }, + { + "id": 289, + "planId": 603, + "spiritId": 110011, + "weight": 1 + }, + { + "id": 290, + "planId": 603, + "spiritId": 110012, + "weight": 1 + }, + { + "id": 291, + "planId": 603, + "spiritId": 110013, + "weight": 1 + }, + { + "id": 292, + "planId": 603, + "spiritId": 110014, + "weight": 1 + }, + { + "id": 293, + "planId": 603, + "spiritId": 110015, + "weight": 1 + }, + { + "id": 294, + "planId": 603, + "spiritId": 110016, + "weight": 1 + }, + { + "id": 295, + "planId": 603, + "spiritId": 110017, + "weight": 1 + }, + { + "id": 296, + "planId": 603, + "spiritId": 110018, + "weight": 1 + }, + { + "id": 297, + "planId": 603, + "spiritId": 110019, + "weight": 1 + }, + { + "id": 298, + "planId": 603, + "spiritId": 110020, + "weight": 1 + }, + { + "id": 299, + "planId": 603, + "spiritId": 110021, + "weight": 1 + }, + { + "id": 300, + "planId": 603, + "spiritId": 110022, + "weight": 1 + }, + { + "id": 301, + "planId": 604, + "spiritId": 110024, + "weight": 1 + }, + { + "id": 302, + "planId": 604, + "spiritId": 110025, + "weight": 1 + }, + { + "id": 303, + "planId": 604, + "spiritId": 110026, + "weight": 1 + }, + { + "id": 304, + "planId": 604, + "spiritId": 110027, + "weight": 1 + }, + { + "id": 305, + "planId": 604, + "spiritId": 110028, + "weight": 1 + }, + { + "id": 306, + "planId": 604, + "spiritId": 110029, + "weight": 1 + }, + { + "id": 307, + "planId": 604, + "spiritId": 110030, + "weight": 1 + }, + { + "id": 308, + "planId": 604, + "spiritId": 110031, + "weight": 1 + }, + { + "id": 309, + "planId": 604, + "spiritId": 110032, + "weight": 1 + }, + { + "id": 310, + "planId": 604, + "spiritId": 110033, + "weight": 1 + }, + { + "id": 311, + "planId": 604, + "spiritId": 110034, + "weight": 1 + }, + { + "id": 312, + "planId": 604, + "spiritId": 110035, + "weight": 1 + }, + { + "id": 313, + "planId": 604, + "spiritId": 110036, + "weight": 1 + }, + { + "id": 314, + "planId": 604, + "spiritId": 110037, + "weight": 1 + }, + { + "id": 315, + "planId": 604, + "spiritId": 110038, + "weight": 1 + }, + { + "id": 316, + "planId": 605, + "spiritId": 110040, + "weight": 1 + }, + { + "id": 317, + "planId": 605, + "spiritId": 110041, + "weight": 1 + }, + { + "id": 318, + "planId": 605, + "spiritId": 110042, + "weight": 1 + }, + { + "id": 319, + "planId": 605, + "spiritId": 110044, + "weight": 1 + }, + { + "id": 320, + "planId": 605, + "spiritId": 110045, + "weight": 1 + }, + { + "id": 321, + "planId": 605, + "spiritId": 110046, + "weight": 1 + }, + { + "id": 322, + "planId": 605, + "spiritId": 110047, + "weight": 1 + }, + { + "id": 323, + "planId": 605, + "spiritId": 110049, + "weight": 1 + }, + { + "id": 324, + "planId": 605, + "spiritId": 110050, + "weight": 1 + }, + { + "id": 325, + "planId": 605, + "spiritId": 110051, + "weight": 1 + }, + { + "id": 326, + "planId": 605, + "spiritId": 110052, + "weight": 1 + }, + { + "id": 327, + "planId": 605, + "spiritId": 110053, + "weight": 1 + }, + { + "id": 328, + "planId": 605, + "spiritId": 110054, + "weight": 1 + }, + { + "id": 329, + "planId": 605, + "spiritId": 110055, + "weight": 1 + }, + { + "id": 330, + "planId": 605, + "spiritId": 110056, + "weight": 1 + }, + { + "id": 331, + "planId": 605, + "spiritId": 110062, + "weight": 1 + }, + { + "id": 332, + "planId": 605, + "spiritId": 110063, + "weight": 1 + }, + { + "id": 333, + "planId": 605, + "spiritId": 110064, + "weight": 1 + }, + { + "id": 334, + "planId": 605, + "spiritId": 110065, + "weight": 1 + }, + { + "id": 335, + "planId": 605, + "spiritId": 110066, + "weight": 1 + }, + { + "id": 336, + "planId": 701, + "spiritId": 110067, + "weight": 1 + }, + { + "id": 337, + "planId": 701, + "spiritId": 110035, + "weight": 1 + }, + { + "id": 338, + "planId": 701, + "spiritId": 110036, + "weight": 1 + }, + { + "id": 339, + "planId": 701, + "spiritId": 110037, + "weight": 1 + }, + { + "id": 340, + "planId": 701, + "spiritId": 110038, + "weight": 1 + }, + { + "id": 341, + "planId": 701, + "spiritId": 110040, + "weight": 1 + }, + { + "id": 342, + "planId": 701, + "spiritId": 110041, + "weight": 1 + }, + { + "id": 343, + "planId": 701, + "spiritId": 110042, + "weight": 1 + }, + { + "id": 344, + "planId": 701, + "spiritId": 110044, + "weight": 1 + }, + { + "id": 345, + "planId": 701, + "spiritId": 110045, + "weight": 1 + }, + { + "id": 346, + "planId": 701, + "spiritId": 110046, + "weight": 1 + }, + { + "id": 347, + "planId": 701, + "spiritId": 110047, + "weight": 1 + }, + { + "id": 348, + "planId": 701, + "spiritId": 110049, + "weight": 1 + }, + { + "id": 349, + "planId": 701, + "spiritId": 110050, + "weight": 1 + }, + { + "id": 350, + "planId": 701, + "spiritId": 110051, + "weight": 1 + }, + { + "id": 351, + "planId": 702, + "spiritId": 110052, + "weight": 1 + }, + { + "id": 352, + "planId": 702, + "spiritId": 110053, + "weight": 1 + }, + { + "id": 353, + "planId": 702, + "spiritId": 110054, + "weight": 1 + }, + { + "id": 354, + "planId": 702, + "spiritId": 110055, + "weight": 1 + }, + { + "id": 355, + "planId": 702, + "spiritId": 110056, + "weight": 1 + }, + { + "id": 356, + "planId": 702, + "spiritId": 110062, + "weight": 1 + }, + { + "id": 357, + "planId": 702, + "spiritId": 110063, + "weight": 1 + }, + { + "id": 358, + "planId": 702, + "spiritId": 110064, + "weight": 1 + }, + { + "id": 359, + "planId": 702, + "spiritId": 110065, + "weight": 1 + }, + { + "id": 360, + "planId": 702, + "spiritId": 110066, + "weight": 1 + }, + { + "id": 361, + "planId": 702, + "spiritId": 110067, + "weight": 1 + }, + { + "id": 362, + "planId": 702, + "spiritId": 110001, + "weight": 1 + }, + { + "id": 363, + "planId": 702, + "spiritId": 110002, + "weight": 1 + }, + { + "id": 364, + "planId": 702, + "spiritId": 110003, + "weight": 1 + }, + { + "id": 365, + "planId": 702, + "spiritId": 110004, + "weight": 1 + }, + { + "id": 366, + "planId": 703, + "spiritId": 110005, + "weight": 1 + }, + { + "id": 367, + "planId": 703, + "spiritId": 110007, + "weight": 1 + }, + { + "id": 368, + "planId": 703, + "spiritId": 110008, + "weight": 1 + }, + { + "id": 369, + "planId": 703, + "spiritId": 110010, + "weight": 1 + }, + { + "id": 370, + "planId": 703, + "spiritId": 110011, + "weight": 1 + }, + { + "id": 371, + "planId": 703, + "spiritId": 110012, + "weight": 1 + }, + { + "id": 372, + "planId": 703, + "spiritId": 110013, + "weight": 1 + }, + { + "id": 373, + "planId": 703, + "spiritId": 110014, + "weight": 1 + }, + { + "id": 374, + "planId": 703, + "spiritId": 110015, + "weight": 1 + }, + { + "id": 375, + "planId": 703, + "spiritId": 110016, + "weight": 1 + }, + { + "id": 376, + "planId": 703, + "spiritId": 110017, + "weight": 1 + }, + { + "id": 377, + "planId": 703, + "spiritId": 110018, + "weight": 1 + }, + { + "id": 378, + "planId": 703, + "spiritId": 110019, + "weight": 1 + }, + { + "id": 379, + "planId": 703, + "spiritId": 110020, + "weight": 1 + }, + { + "id": 380, + "planId": 703, + "spiritId": 110021, + "weight": 1 + }, + { + "id": 381, + "planId": 704, + "spiritId": 110022, + "weight": 1 + }, + { + "id": 382, + "planId": 704, + "spiritId": 110024, + "weight": 1 + }, + { + "id": 383, + "planId": 704, + "spiritId": 110025, + "weight": 1 + }, + { + "id": 384, + "planId": 704, + "spiritId": 110026, + "weight": 1 + }, + { + "id": 385, + "planId": 704, + "spiritId": 110027, + "weight": 1 + }, + { + "id": 386, + "planId": 704, + "spiritId": 110028, + "weight": 1 + }, + { + "id": 387, + "planId": 704, + "spiritId": 110029, + "weight": 1 + }, + { + "id": 388, + "planId": 704, + "spiritId": 110030, + "weight": 1 + }, + { + "id": 389, + "planId": 704, + "spiritId": 110031, + "weight": 1 + }, + { + "id": 390, + "planId": 704, + "spiritId": 110032, + "weight": 1 + }, + { + "id": 391, + "planId": 704, + "spiritId": 110033, + "weight": 1 + }, + { + "id": 392, + "planId": 704, + "spiritId": 110034, + "weight": 1 + }, + { + "id": 393, + "planId": 704, + "spiritId": 110035, + "weight": 1 + }, + { + "id": 394, + "planId": 704, + "spiritId": 110036, + "weight": 1 + }, + { + "id": 395, + "planId": 704, + "spiritId": 110037, + "weight": 1 + }, + { + "id": 396, + "planId": 705, + "spiritId": 110038, + "weight": 1 + }, + { + "id": 397, + "planId": 705, + "spiritId": 110040, + "weight": 1 + }, + { + "id": 398, + "planId": 705, + "spiritId": 110041, + "weight": 1 + }, + { + "id": 399, + "planId": 705, + "spiritId": 110042, + "weight": 1 + }, + { + "id": 400, + "planId": 705, + "spiritId": 110044, + "weight": 1 + }, + { + "id": 401, + "planId": 705, + "spiritId": 110045, + "weight": 1 + }, + { + "id": 402, + "planId": 705, + "spiritId": 110046, + "weight": 1 + }, + { + "id": 403, + "planId": 705, + "spiritId": 110047, + "weight": 1 + }, + { + "id": 404, + "planId": 705, + "spiritId": 110049, + "weight": 1 + }, + { + "id": 405, + "planId": 705, + "spiritId": 110050, + "weight": 1 + }, + { + "id": 406, + "planId": 705, + "spiritId": 110051, + "weight": 1 + }, + { + "id": 407, + "planId": 705, + "spiritId": 110052, + "weight": 1 + }, + { + "id": 408, + "planId": 705, + "spiritId": 110053, + "weight": 1 + }, + { + "id": 409, + "planId": 705, + "spiritId": 110054, + "weight": 1 + }, + { + "id": 410, + "planId": 705, + "spiritId": 110055, + "weight": 1 + }, + { + "id": 411, + "planId": 705, + "spiritId": 110056, + "weight": 1 + }, + { + "id": 412, + "planId": 705, + "spiritId": 110062, + "weight": 1 + }, + { + "id": 413, + "planId": 705, + "spiritId": 110063, + "weight": 1 + }, + { + "id": 414, + "planId": 705, + "spiritId": 110064, + "weight": 1 + }, + { + "id": 415, + "planId": 705, + "spiritId": 110065, + "weight": 1 + }, + { + "id": 416, + "planId": 801, + "spiritId": 110066, + "weight": 1 + }, + { + "id": 417, + "planId": 801, + "spiritId": 110067, + "weight": 1 + }, + { + "id": 418, + "planId": 801, + "spiritId": 110035, + "weight": 1 + }, + { + "id": 419, + "planId": 801, + "spiritId": 110036, + "weight": 1 + }, + { + "id": 420, + "planId": 801, + "spiritId": 110037, + "weight": 1 + }, + { + "id": 421, + "planId": 801, + "spiritId": 110038, + "weight": 1 + }, + { + "id": 422, + "planId": 801, + "spiritId": 110040, + "weight": 1 + }, + { + "id": 423, + "planId": 801, + "spiritId": 110041, + "weight": 1 + }, + { + "id": 424, + "planId": 801, + "spiritId": 110042, + "weight": 1 + }, + { + "id": 425, + "planId": 801, + "spiritId": 110044, + "weight": 1 + }, + { + "id": 426, + "planId": 801, + "spiritId": 110045, + "weight": 1 + }, + { + "id": 427, + "planId": 801, + "spiritId": 110046, + "weight": 1 + }, + { + "id": 428, + "planId": 801, + "spiritId": 110047, + "weight": 1 + }, + { + "id": 429, + "planId": 801, + "spiritId": 110049, + "weight": 1 + }, + { + "id": 430, + "planId": 801, + "spiritId": 110050, + "weight": 1 + }, + { + "id": 431, + "planId": 802, + "spiritId": 110051, + "weight": 1 + }, + { + "id": 432, + "planId": 802, + "spiritId": 110052, + "weight": 1 + }, + { + "id": 433, + "planId": 802, + "spiritId": 110053, + "weight": 1 + }, + { + "id": 434, + "planId": 802, + "spiritId": 110054, + "weight": 1 + }, + { + "id": 435, + "planId": 802, + "spiritId": 110055, + "weight": 1 + }, + { + "id": 436, + "planId": 802, + "spiritId": 110056, + "weight": 1 + }, + { + "id": 437, + "planId": 802, + "spiritId": 110062, + "weight": 1 + }, + { + "id": 438, + "planId": 802, + "spiritId": 110063, + "weight": 1 + }, + { + "id": 439, + "planId": 802, + "spiritId": 110064, + "weight": 1 + }, + { + "id": 440, + "planId": 802, + "spiritId": 110065, + "weight": 1 + }, + { + "id": 441, + "planId": 802, + "spiritId": 110066, + "weight": 1 + }, + { + "id": 442, + "planId": 802, + "spiritId": 110067, + "weight": 1 + }, + { + "id": 443, + "planId": 802, + "spiritId": 110001, + "weight": 1 + }, + { + "id": 444, + "planId": 802, + "spiritId": 110002, + "weight": 1 + }, + { + "id": 445, + "planId": 802, + "spiritId": 110003, + "weight": 1 + }, + { + "id": 446, + "planId": 803, + "spiritId": 110004, + "weight": 1 + }, + { + "id": 447, + "planId": 803, + "spiritId": 110005, + "weight": 1 + }, + { + "id": 448, + "planId": 803, + "spiritId": 110007, + "weight": 1 + }, + { + "id": 449, + "planId": 803, + "spiritId": 110008, + "weight": 1 + }, + { + "id": 450, + "planId": 803, + "spiritId": 110010, + "weight": 1 + }, + { + "id": 451, + "planId": 803, + "spiritId": 110011, + "weight": 1 + }, + { + "id": 452, + "planId": 803, + "spiritId": 110012, + "weight": 1 + }, + { + "id": 453, + "planId": 803, + "spiritId": 110013, + "weight": 1 + }, + { + "id": 454, + "planId": 803, + "spiritId": 110014, + "weight": 1 + }, + { + "id": 455, + "planId": 803, + "spiritId": 110015, + "weight": 1 + }, + { + "id": 456, + "planId": 803, + "spiritId": 110016, + "weight": 1 + }, + { + "id": 457, + "planId": 803, + "spiritId": 110017, + "weight": 1 + }, + { + "id": 458, + "planId": 803, + "spiritId": 110018, + "weight": 1 + }, + { + "id": 459, + "planId": 803, + "spiritId": 110019, + "weight": 1 + }, + { + "id": 460, + "planId": 803, + "spiritId": 110020, + "weight": 1 + }, + { + "id": 461, + "planId": 804, + "spiritId": 110021, + "weight": 1 + }, + { + "id": 462, + "planId": 804, + "spiritId": 110022, + "weight": 1 + }, + { + "id": 463, + "planId": 804, + "spiritId": 110024, + "weight": 1 + }, + { + "id": 464, + "planId": 804, + "spiritId": 110025, + "weight": 1 + }, + { + "id": 465, + "planId": 804, + "spiritId": 110026, + "weight": 1 + }, + { + "id": 466, + "planId": 804, + "spiritId": 110027, + "weight": 1 + }, + { + "id": 467, + "planId": 804, + "spiritId": 110028, + "weight": 1 + }, + { + "id": 468, + "planId": 804, + "spiritId": 110029, + "weight": 1 + }, + { + "id": 469, + "planId": 804, + "spiritId": 110030, + "weight": 1 + }, + { + "id": 470, + "planId": 804, + "spiritId": 110031, + "weight": 1 + }, + { + "id": 471, + "planId": 804, + "spiritId": 110032, + "weight": 1 + }, + { + "id": 472, + "planId": 804, + "spiritId": 110033, + "weight": 1 + }, + { + "id": 473, + "planId": 804, + "spiritId": 110034, + "weight": 1 + }, + { + "id": 474, + "planId": 804, + "spiritId": 110035, + "weight": 1 + }, + { + "id": 475, + "planId": 804, + "spiritId": 110036, + "weight": 1 + }, + { + "id": 476, + "planId": 805, + "spiritId": 110037, + "weight": 1 + }, + { + "id": 477, + "planId": 805, + "spiritId": 110038, + "weight": 1 + }, + { + "id": 478, + "planId": 805, + "spiritId": 110040, + "weight": 1 + }, + { + "id": 479, + "planId": 805, + "spiritId": 110041, + "weight": 1 + }, + { + "id": 480, + "planId": 805, + "spiritId": 110042, + "weight": 1 + }, + { + "id": 481, + "planId": 805, + "spiritId": 110044, + "weight": 1 + }, + { + "id": 482, + "planId": 805, + "spiritId": 110045, + "weight": 1 + }, + { + "id": 483, + "planId": 805, + "spiritId": 110046, + "weight": 1 + }, + { + "id": 484, + "planId": 805, + "spiritId": 110047, + "weight": 1 + }, + { + "id": 485, + "planId": 805, + "spiritId": 110049, + "weight": 1 + }, + { + "id": 486, + "planId": 805, + "spiritId": 110050, + "weight": 1 + }, + { + "id": 487, + "planId": 805, + "spiritId": 110051, + "weight": 1 + }, + { + "id": 488, + "planId": 805, + "spiritId": 110052, + "weight": 1 + }, + { + "id": 489, + "planId": 805, + "spiritId": 110053, + "weight": 1 + }, + { + "id": 490, + "planId": 805, + "spiritId": 110054, + "weight": 1 + }, + { + "id": 491, + "planId": 805, + "spiritId": 110055, + "weight": 1 + }, + { + "id": 492, + "planId": 805, + "spiritId": 110056, + "weight": 1 + }, + { + "id": 493, + "planId": 805, + "spiritId": 110062, + "weight": 1 + }, + { + "id": 494, + "planId": 805, + "spiritId": 110063, + "weight": 1 + }, + { + "id": 495, + "planId": 805, + "spiritId": 110064, + "weight": 1 + }, + { + "id": 496, + "planId": 901, + "spiritId": 110065, + "weight": 1 + }, + { + "id": 497, + "planId": 901, + "spiritId": 110066, + "weight": 1 + }, + { + "id": 498, + "planId": 901, + "spiritId": 110067, + "weight": 1 + }, + { + "id": 499, + "planId": 901, + "spiritId": 110035, + "weight": 1 + }, + { + "id": 500, + "planId": 901, + "spiritId": 110036, + "weight": 1 + }, + { + "id": 501, + "planId": 901, + "spiritId": 110037, + "weight": 1 + }, + { + "id": 502, + "planId": 901, + "spiritId": 110038, + "weight": 1 + }, + { + "id": 503, + "planId": 901, + "spiritId": 110040, + "weight": 1 + }, + { + "id": 504, + "planId": 901, + "spiritId": 110041, + "weight": 1 + }, + { + "id": 505, + "planId": 901, + "spiritId": 110042, + "weight": 1 + }, + { + "id": 506, + "planId": 901, + "spiritId": 110044, + "weight": 1 + }, + { + "id": 507, + "planId": 901, + "spiritId": 110045, + "weight": 1 + }, + { + "id": 508, + "planId": 901, + "spiritId": 110046, + "weight": 1 + }, + { + "id": 509, + "planId": 901, + "spiritId": 110047, + "weight": 1 + }, + { + "id": 510, + "planId": 901, + "spiritId": 110049, + "weight": 1 + }, + { + "id": 511, + "planId": 902, + "spiritId": 110050, + "weight": 1 + }, + { + "id": 512, + "planId": 902, + "spiritId": 110051, + "weight": 1 + }, + { + "id": 513, + "planId": 902, + "spiritId": 110052, + "weight": 1 + }, + { + "id": 514, + "planId": 902, + "spiritId": 110053, + "weight": 1 + }, + { + "id": 515, + "planId": 902, + "spiritId": 110054, + "weight": 1 + }, + { + "id": 516, + "planId": 902, + "spiritId": 110055, + "weight": 1 + }, + { + "id": 517, + "planId": 902, + "spiritId": 110056, + "weight": 1 + }, + { + "id": 518, + "planId": 902, + "spiritId": 110062, + "weight": 1 + }, + { + "id": 519, + "planId": 902, + "spiritId": 110063, + "weight": 1 + }, + { + "id": 520, + "planId": 902, + "spiritId": 110064, + "weight": 1 + }, + { + "id": 521, + "planId": 902, + "spiritId": 110065, + "weight": 1 + }, + { + "id": 522, + "planId": 902, + "spiritId": 110066, + "weight": 1 + }, + { + "id": 523, + "planId": 902, + "spiritId": 110067, + "weight": 1 + }, + { + "id": 524, + "planId": 902, + "spiritId": 110001, + "weight": 1 + }, + { + "id": 525, + "planId": 902, + "spiritId": 110002, + "weight": 1 + }, + { + "id": 526, + "planId": 903, + "spiritId": 110003, + "weight": 1 + }, + { + "id": 527, + "planId": 903, + "spiritId": 110004, + "weight": 1 + }, + { + "id": 528, + "planId": 903, + "spiritId": 110005, + "weight": 1 + }, + { + "id": 529, + "planId": 903, + "spiritId": 110007, + "weight": 1 + }, + { + "id": 530, + "planId": 903, + "spiritId": 110008, + "weight": 1 + }, + { + "id": 531, + "planId": 903, + "spiritId": 110010, + "weight": 1 + }, + { + "id": 532, + "planId": 903, + "spiritId": 110011, + "weight": 1 + }, + { + "id": 533, + "planId": 903, + "spiritId": 110012, + "weight": 1 + }, + { + "id": 534, + "planId": 903, + "spiritId": 110013, + "weight": 1 + }, + { + "id": 535, + "planId": 903, + "spiritId": 110014, + "weight": 1 + }, + { + "id": 536, + "planId": 903, + "spiritId": 110015, + "weight": 1 + }, + { + "id": 537, + "planId": 903, + "spiritId": 110016, + "weight": 1 + }, + { + "id": 538, + "planId": 903, + "spiritId": 110017, + "weight": 1 + }, + { + "id": 539, + "planId": 903, + "spiritId": 110018, + "weight": 1 + }, + { + "id": 540, + "planId": 903, + "spiritId": 110019, + "weight": 1 + }, + { + "id": 541, + "planId": 904, + "spiritId": 110020, + "weight": 1 + }, + { + "id": 542, + "planId": 904, + "spiritId": 110021, + "weight": 1 + }, + { + "id": 543, + "planId": 904, + "spiritId": 110022, + "weight": 1 + }, + { + "id": 544, + "planId": 904, + "spiritId": 110024, + "weight": 1 + }, + { + "id": 545, + "planId": 904, + "spiritId": 110025, + "weight": 1 + }, + { + "id": 546, + "planId": 904, + "spiritId": 110026, + "weight": 1 + }, + { + "id": 547, + "planId": 904, + "spiritId": 110027, + "weight": 1 + }, + { + "id": 548, + "planId": 904, + "spiritId": 110028, + "weight": 1 + }, + { + "id": 549, + "planId": 904, + "spiritId": 110029, + "weight": 1 + }, + { + "id": 550, + "planId": 904, + "spiritId": 110030, + "weight": 1 + }, + { + "id": 551, + "planId": 904, + "spiritId": 110031, + "weight": 1 + }, + { + "id": 552, + "planId": 904, + "spiritId": 110032, + "weight": 1 + }, + { + "id": 553, + "planId": 904, + "spiritId": 110033, + "weight": 1 + }, + { + "id": 554, + "planId": 904, + "spiritId": 110034, + "weight": 1 + }, + { + "id": 555, + "planId": 904, + "spiritId": 110035, + "weight": 1 + }, + { + "id": 556, + "planId": 905, + "spiritId": 110036, + "weight": 1 + }, + { + "id": 557, + "planId": 905, + "spiritId": 110037, + "weight": 1 + }, + { + "id": 558, + "planId": 905, + "spiritId": 110038, + "weight": 1 + }, + { + "id": 559, + "planId": 905, + "spiritId": 110040, + "weight": 1 + }, + { + "id": 560, + "planId": 905, + "spiritId": 110041, + "weight": 1 + }, + { + "id": 561, + "planId": 905, + "spiritId": 110042, + "weight": 1 + }, + { + "id": 562, + "planId": 905, + "spiritId": 110044, + "weight": 1 + }, + { + "id": 563, + "planId": 905, + "spiritId": 110045, + "weight": 1 + }, + { + "id": 564, + "planId": 905, + "spiritId": 110046, + "weight": 1 + }, + { + "id": 565, + "planId": 905, + "spiritId": 110047, + "weight": 1 + }, + { + "id": 566, + "planId": 905, + "spiritId": 110049, + "weight": 1 + }, + { + "id": 567, + "planId": 905, + "spiritId": 110050, + "weight": 1 + }, + { + "id": 568, + "planId": 905, + "spiritId": 110051, + "weight": 1 + }, + { + "id": 569, + "planId": 905, + "spiritId": 110052, + "weight": 1 + }, + { + "id": 570, + "planId": 905, + "spiritId": 110053, + "weight": 1 + }, + { + "id": 571, + "planId": 905, + "spiritId": 110054, + "weight": 1 + }, + { + "id": 572, + "planId": 905, + "spiritId": 110055, + "weight": 1 + }, + { + "id": 573, + "planId": 905, + "spiritId": 110056, + "weight": 1 + }, + { + "id": 574, + "planId": 905, + "spiritId": 110062, + "weight": 1 + }, + { + "id": 575, + "planId": 905, + "spiritId": 110063, + "weight": 1 + }, + { + "id": 576, + "planId": 1001, + "spiritId": 110064, + "weight": 1 + }, + { + "id": 577, + "planId": 1001, + "spiritId": 110065, + "weight": 1 + }, + { + "id": 578, + "planId": 1001, + "spiritId": 110066, + "weight": 1 + }, + { + "id": 579, + "planId": 1001, + "spiritId": 110067, + "weight": 1 + }, + { + "id": 580, + "planId": 1001, + "spiritId": 110035, + "weight": 1 + }, + { + "id": 581, + "planId": 1001, + "spiritId": 110036, + "weight": 1 + }, + { + "id": 582, + "planId": 1001, + "spiritId": 110037, + "weight": 1 + }, + { + "id": 583, + "planId": 1001, + "spiritId": 110038, + "weight": 1 + }, + { + "id": 584, + "planId": 1001, + "spiritId": 110040, + "weight": 1 + }, + { + "id": 585, + "planId": 1001, + "spiritId": 110041, + "weight": 1 + }, + { + "id": 586, + "planId": 1001, + "spiritId": 110042, + "weight": 1 + }, + { + "id": 587, + "planId": 1001, + "spiritId": 110044, + "weight": 1 + }, + { + "id": 588, + "planId": 1001, + "spiritId": 110045, + "weight": 1 + }, + { + "id": 589, + "planId": 1001, + "spiritId": 110046, + "weight": 1 + }, + { + "id": 590, + "planId": 1001, + "spiritId": 110047, + "weight": 1 + }, + { + "id": 591, + "planId": 1002, + "spiritId": 110049, + "weight": 1 + }, + { + "id": 592, + "planId": 1002, + "spiritId": 110050, + "weight": 1 + }, + { + "id": 593, + "planId": 1002, + "spiritId": 110051, + "weight": 1 + }, + { + "id": 594, + "planId": 1002, + "spiritId": 110052, + "weight": 1 + }, + { + "id": 595, + "planId": 1002, + "spiritId": 110053, + "weight": 1 + }, + { + "id": 596, + "planId": 1002, + "spiritId": 110054, + "weight": 1 + }, + { + "id": 597, + "planId": 1002, + "spiritId": 110055, + "weight": 1 + }, + { + "id": 598, + "planId": 1002, + "spiritId": 110056, + "weight": 1 + }, + { + "id": 599, + "planId": 1002, + "spiritId": 110062, + "weight": 1 + }, + { + "id": 600, + "planId": 1002, + "spiritId": 110063, + "weight": 1 + }, + { + "id": 601, + "planId": 1002, + "spiritId": 110064, + "weight": 1 + }, + { + "id": 602, + "planId": 1002, + "spiritId": 110065, + "weight": 1 + }, + { + "id": 603, + "planId": 1002, + "spiritId": 110066, + "weight": 1 + }, + { + "id": 604, + "planId": 1002, + "spiritId": 110067, + "weight": 1 + }, + { + "id": 605, + "planId": 1002, + "spiritId": 110001, + "weight": 1 + }, + { + "id": 606, + "planId": 1003, + "spiritId": 110002, + "weight": 1 + }, + { + "id": 607, + "planId": 1003, + "spiritId": 110003, + "weight": 1 + }, + { + "id": 608, + "planId": 1003, + "spiritId": 110004, + "weight": 1 + }, + { + "id": 609, + "planId": 1003, + "spiritId": 110005, + "weight": 1 + }, + { + "id": 610, + "planId": 1003, + "spiritId": 110007, + "weight": 1 + }, + { + "id": 611, + "planId": 1003, + "spiritId": 110008, + "weight": 1 + }, + { + "id": 612, + "planId": 1003, + "spiritId": 110010, + "weight": 1 + }, + { + "id": 613, + "planId": 1003, + "spiritId": 110011, + "weight": 1 + }, + { + "id": 614, + "planId": 1003, + "spiritId": 110012, + "weight": 1 + }, + { + "id": 615, + "planId": 1003, + "spiritId": 110013, + "weight": 1 + }, + { + "id": 616, + "planId": 1003, + "spiritId": 110014, + "weight": 1 + }, + { + "id": 617, + "planId": 1003, + "spiritId": 110015, + "weight": 1 + }, + { + "id": 618, + "planId": 1003, + "spiritId": 110016, + "weight": 1 + }, + { + "id": 619, + "planId": 1003, + "spiritId": 110017, + "weight": 1 + }, + { + "id": 620, + "planId": 1003, + "spiritId": 110018, + "weight": 1 + }, + { + "id": 621, + "planId": 1004, + "spiritId": 110019, + "weight": 1 + }, + { + "id": 622, + "planId": 1004, + "spiritId": 110020, + "weight": 1 + }, + { + "id": 623, + "planId": 1004, + "spiritId": 110021, + "weight": 1 + }, + { + "id": 624, + "planId": 1004, + "spiritId": 110022, + "weight": 1 + }, + { + "id": 625, + "planId": 1004, + "spiritId": 110024, + "weight": 1 + }, + { + "id": 626, + "planId": 1004, + "spiritId": 110025, + "weight": 1 + }, + { + "id": 627, + "planId": 1004, + "spiritId": 110026, + "weight": 1 + }, + { + "id": 628, + "planId": 1004, + "spiritId": 110027, + "weight": 1 + }, + { + "id": 629, + "planId": 1004, + "spiritId": 110028, + "weight": 1 + }, + { + "id": 630, + "planId": 1004, + "spiritId": 110029, + "weight": 1 + }, + { + "id": 631, + "planId": 1004, + "spiritId": 110030, + "weight": 1 + }, + { + "id": 632, + "planId": 1004, + "spiritId": 110031, + "weight": 1 + }, + { + "id": 633, + "planId": 1004, + "spiritId": 110032, + "weight": 1 + }, + { + "id": 634, + "planId": 1004, + "spiritId": 110033, + "weight": 1 + }, + { + "id": 635, + "planId": 1004, + "spiritId": 110034, + "weight": 1 + }, + { + "id": 636, + "planId": 1005, + "spiritId": 110035, + "weight": 1 + }, + { + "id": 637, + "planId": 1005, + "spiritId": 110036, + "weight": 1 + }, + { + "id": 638, + "planId": 1005, + "spiritId": 110037, + "weight": 1 + }, + { + "id": 639, + "planId": 1005, + "spiritId": 110038, + "weight": 1 + }, + { + "id": 640, + "planId": 1005, + "spiritId": 110040, + "weight": 1 + }, + { + "id": 641, + "planId": 1005, + "spiritId": 110041, + "weight": 1 + }, + { + "id": 642, + "planId": 1005, + "spiritId": 110042, + "weight": 1 + }, + { + "id": 643, + "planId": 1005, + "spiritId": 110044, + "weight": 1 + }, + { + "id": 644, + "planId": 1005, + "spiritId": 110045, + "weight": 1 + }, + { + "id": 645, + "planId": 1005, + "spiritId": 110046, + "weight": 1 + }, + { + "id": 646, + "planId": 1005, + "spiritId": 110047, + "weight": 1 + }, + { + "id": 647, + "planId": 1005, + "spiritId": 110049, + "weight": 1 + }, + { + "id": 648, + "planId": 1005, + "spiritId": 110050, + "weight": 1 + }, + { + "id": 649, + "planId": 1005, + "spiritId": 110051, + "weight": 1 + }, + { + "id": 650, + "planId": 1005, + "spiritId": 110052, + "weight": 1 + }, + { + "id": 651, + "planId": 1005, + "spiritId": 110053, + "weight": 1 + }, + { + "id": 652, + "planId": 1005, + "spiritId": 110054, + "weight": 1 + }, + { + "id": 653, + "planId": 1005, + "spiritId": 110055, + "weight": 1 + }, + { + "id": 654, + "planId": 1005, + "spiritId": 110056, + "weight": 1 + }, + { + "id": 655, + "planId": 1005, + "spiritId": 110062, + "weight": 1 + } +] \ No newline at end of file diff --git a/shared/resource/jsons/dic_zyz_hero.json b/shared/resource/jsons/dic_zyz_hero.json index 707082c6e..f1ef1c8d7 100644 --- a/shared/resource/jsons/dic_zyz_hero.json +++ b/shared/resource/jsons/dic_zyz_hero.json @@ -245,7 +245,7 @@ "show_animation": "&", "isdeath": 1, "talentId": 1007, - "recommendId": "601&602", + "recommendId": "601&602&603", "aiPlan": 1, "aiParam": 6, "heroChainId": "&", @@ -917,7 +917,7 @@ "show_animation": "&", "isdeath": 1, "talentId": 1004, - "recommendId": "2301&", + "recommendId": "2301&2302", "aiPlan": 1, "aiParam": "&", "heroChainId": 23, @@ -14546,7 +14546,7 @@ "area": 0, "jobid": 206, "jobClass": 2, - "skill": 1202, + "skill": 1237, "pieceId": 0, "hp": 1000, "atk": 20, @@ -14575,44 +14575,44 @@ }, { "heroId": 1238, - "spineName": "SL_fabing", - "rSpineName": "LH_xiaobing3", - "name": "魏讽", - "actorId": 1238, - "face_id": "tongyongwenjiang", + "spineName": "&", + "rSpineName": "LH_shangren", + "name": "甄府管事", + "actorId": 1102, + "face_id": 0, "urType": 0, - "quality": 2, - "initialStars": 3, + "quality": 1, + "initialStars": 1, "pieceCount": 0, "camp": 0, "area": 0, - "jobid": 600, - "jobClass": 6, - "skill": 1036, + "jobid": 0, + "jobClass": 0, + "skill": 0, "pieceId": 0, - "hp": 1000, - "atk": 20, - "def": 20, - "mdef": 20, - "hp_up": 5, - "atk_up": 1, - "def_up": 1, - "mdef_up": 1, - "info": "我是低能", + "hp": 0, + "atk": 0, + "def": 0, + "mdef": 0, + "hp_up": 0, + "atk_up": 0, + "def_up": 0, + "mdef_up": 0, + "info": 0, "actorinfo": "&", - "skillScroll": "&", + "skillScroll": 0, "initialSkin": 0, "gender": 1, "atkSpineEffect": "liqi", "probation": 0, "center_y": 0, - "show_animation": "&", - "isdeath": 1, - "talentId": 1006, + "show_animation": 0, + "isdeath": 0, + "talentId": 0, "recommendId": 0, "aiPlan": 1, - "aiParam": 0, - "heroChainId": "&", + "aiParam": "&", + "heroChainId": 0, "heroTitle": "&" }, { @@ -30569,7 +30569,7 @@ "show_animation": "&", "isdeath": 1, "talentId": 1002, - "recommendId": "3501&3502", + "recommendId": "4123501&", "aiPlan": 1, "aiParam": "&", "heroChainId": 35, @@ -31274,7 +31274,7 @@ "mdef_up": 0, "info": "我是低能", "actorinfo": "&", - "skillScroll": "1&570010121|2&570010131|3&570010111|4&570010131", + "skillScroll": "1&570010121|2&0|3&570010131|4&0", "initialSkin": 0, "gender": 0, "atkSpineEffect": "dunqi", @@ -31411,7 +31411,7 @@ "talentId": 1001, "recommendId": 0, "aiPlan": 1, - "aiParam": 0, + "aiParam": "&", "heroChainId": 0, "heroTitle": "&" }, diff --git a/shared/resource/jsons/dic_zyz_se.json b/shared/resource/jsons/dic_zyz_se.json index 8395fd6c7..65309cb8c 100644 --- a/shared/resource/jsons/dic_zyz_se.json +++ b/shared/resource/jsons/dic_zyz_se.json @@ -242,7 +242,7 @@ { "id": 11, "name": "中毒", - "info": "物攻强度和策攻强度-5\r\n行动结束时,损失施加者攻击10%的生命值", + "info": "物攻强度和策攻强度-5\n行动结束时,损失施加者攻击10%的生命值", "img": 1, "isShow": 0, "condition": "1&", @@ -290,7 +290,7 @@ { "id": 13, "name": "流血", - "info": "行动结束时,损失施加者攻击25%的生命值\r\n受到主动技能治疗后,若生命值为满值,则自动清除", + "info": "行动结束时,损失施加者攻击25%的生命值\n受到主动技能治疗后,若生命值为满值,则自动清除", "img": 1, "isShow": 0, "condition": "1&", @@ -2338,7 +2338,7 @@ "percent": 100, "node": 16, "type": 200, - "gainvalue": "13&5&5", + "gainvalue": "19&30&30&21&30&30", "times_turn": 0, "times_battle": 0, "cd": 0, @@ -2362,7 +2362,55 @@ "percent": 100, "node": 16, "type": 200, - "gainvalue": "13&10&10", + "gainvalue": "19&50&50&21&50&50", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 1303, + "name": "增伤+3", + "info": "增伤+3", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 16, + "type": 200, + "gainvalue": "19&40&40&21&40&40", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 1304, + "name": "增伤+4", + "info": "增伤+4", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 16, + "type": 200, + "gainvalue": "19&65&65&21&65&65", "times_turn": 0, "times_battle": 0, "cd": 0, @@ -4154,7 +4202,7 @@ { "id": 3000, "name": 0, - "info": "物攻强度和策攻强度+50\r\n行动开始时,获得1000点怒气", + "info": "物攻强度和策攻强度+50\n行动开始时,获得1000点怒气", "img": 1, "isShow": 0, "condition": "&", @@ -4970,7 +5018,7 @@ { "id": 60551, "name": "旱魃之力", - "info": "主动攻击时,对目标所在地形施加状态%d60552%d\r\n攻击时,对处于%d60552%d地形的敌军造成1.5倍的策略伤害", + "info": "主动攻击时,对目标所在地形施加状态%d60552%d\n攻击时,对处于%d60552%d地形的敌军造成1.5倍的策略伤害", "img": "jingmanwushihuo_beidong1_chiyouzhili", "isShow": 1, "condition": "&", @@ -6170,7 +6218,7 @@ { "id": 60850, "name": "汉室国祚", - "info": "物攻强度和策攻强度+20\r\n行动结束时,恢复20%生命值", + "info": "物攻强度和策攻强度+20\n行动结束时,恢复20%生命值", "img": "fangyu_2", "isShow": 1, "condition": "&", @@ -6986,7 +7034,7 @@ { "id": 612011, "name": "驱寒", - "info": "篝火带来温暖\r\n使友军免疫%d61101%d\r\n友军在范围内行动结束,清除4层%d61101%d\r\n有%d61101%d的友军,在范围内行动结束时,恢复5%的最大生命值", + "info": "篝火带来温暖\n使友军免疫%d61101%d\n友军在范围内行动结束,清除4层%d61101%d\n有%d61101%d的友军,在范围内行动结束时,恢复5%的最大生命值", "img": "huanjing_gouhuo", "isShow": 1, "condition": "&", @@ -7034,7 +7082,7 @@ { "id": 612013, "name": "驱寒", - "info": "篝火带来温暖\r\n使友军免疫%d61101%d\r\n友军在范围内行动结束,清除4层%d61101%d\r\n有%d61101%d的友军,在范围内行动结束时,恢复5%的最大生命值", + "info": "篝火带来温暖\n使友军免疫%d61101%d\n友军在范围内行动结束,清除4层%d61101%d\n有%d61101%d的友军,在范围内行动结束时,恢复5%的最大生命值", "img": "huanjing_gouhuo", "isShow": 1, "condition": "&", @@ -7178,7 +7226,7 @@ { "id": 614011, "name": "寒狼诅咒", - "info": "每回合开始时对周围散发寒霜\r\n对范围内敌军施加3层%d61101%d\r\n若%d61101%d达到10层,转化为%d61103%d", + "info": "每回合开始时对周围散发寒霜\n对范围内敌军施加3层%d61101%d\n若%d61101%d达到10层,转化为%d61103%d", "img": "dixing_beidong1_fujiyaohai", "isShow": 1, "condition": "318&1&61103", @@ -7202,7 +7250,7 @@ { "id": 614012, "name": "寒狼诅咒", - "info": "每回合开始时对周围散发寒霜\r\n对范围内敌军施加3层%d61101%d\r\n若%d61101%d达到10层,转化为%d61103%d", + "info": "每回合开始时对周围散发寒霜\n对范围内敌军施加3层%d61101%d\n若%d61101%d达到10层,转化为%d61103%d", "img": "dixing_beidong1_fujiyaohai", "isShow": 1, "condition": "318&1&61103", @@ -7274,7 +7322,7 @@ { "id": 61001, "name": "远射箭塔", - "info": "防守方弓箭手普通攻击范围为全场\r\n释放普攻时与目标之间每间隔1格,物攻强度-5,最多-70", + "info": "防守方弓箭手普通攻击范围为全场\n释放普攻时与目标之间每间隔1格,物攻强度-5,最多-70", "img": "dixing_beidong1_houyisheri", "isShow": 1, "condition": "504&2&1&100|606&1&4", @@ -7898,7 +7946,7 @@ { "id": 101321, "name": "机变无方2", - "info": "释放怒气技时,我方魏国武将获得%d101311%d\r\n自身拥有护盾状态时,策攻抗性+15", + "info": "释放怒气技时,我方魏国武将获得%d101311%d\n自身拥有护盾状态时,策攻抗性+15", "img": "caocao_beidong1_jibianwufang", "isShow": 1, "condition": "&", @@ -7970,7 +8018,7 @@ { "id": 101331, "name": "机变无方3", - "info": "释放怒气技时,我方武将获得%d101311%d\r\n自身拥有护盾状态时,策攻抗性+30", + "info": "释放怒气技时,我方武将获得%d101311%d\n自身拥有护盾状态时,策攻抗性+30", "img": "caocao_beidong1_jibianwufang", "isShow": 1, "condition": "&", @@ -8042,7 +8090,7 @@ { "id": 101411, "name": "固若金汤1", - "info": "物攻抗性+20、策攻抗性+20\r\n格挡+10", + "info": "物攻抗性+20、策攻抗性+20\n格挡+10", "img": "bubing_beidong2_guruojintang", "isShow": 1, "condition": "&", @@ -8066,7 +8114,7 @@ { "id": 101421, "name": "固若金汤2", - "info": "物攻抗性+40、策攻抗性+40\r\n格挡+20", + "info": "物攻抗性+40、策攻抗性+40\n格挡+20", "img": "bubing_beidong2_guruojintang", "isShow": 1, "condition": "&", @@ -8114,7 +8162,7 @@ { "id": 101611, "name": "魏武之强", - "info": "%d2%d\r\n我方武将物攻抗性和策攻抗性+10\r\n我方武将在拥有护盾类状态时,物攻抗性和策攻抗性+20", + "info": "%d2%d\n我方武将物攻抗性和策攻抗性+10\n我方武将在拥有护盾类状态时,物攻抗性和策攻抗性+20", "img": "caocao_jiban_weiwuzhiqiang", "isShow": 1, "condition": "&", @@ -8133,7 +8181,7 @@ "seidNameImage": "&", "passivespineName": "&", "rangeUi": 0, - "passiveType": 1 + "passiveType": 4 }, { "id": 101612, @@ -8378,7 +8426,7 @@ { "id": 201331, "name": "反戈一击3", - "info": "受到物理攻击时反弹+30%\r\n反弹+20%", + "info": "受到物理攻击时反弹+30%\n反弹+20%", "img": "xiahoudun_beidong1_fangeyiji", "isShow": 1, "condition": "&", @@ -8426,7 +8474,7 @@ { "id": 201411, "name": "固若金汤1", - "info": "物攻抗性+20、策攻抗性+20\r\n格挡+10", + "info": "物攻抗性+20、策攻抗性+20\n格挡+10", "img": "bubing_beidong2_guruojintang", "isShow": 1, "condition": "&", @@ -8450,7 +8498,7 @@ { "id": 201421, "name": "固若金汤2", - "info": "物攻抗性+40、策攻抗性+40\r\n格挡+20", + "info": "物攻抗性+40、策攻抗性+40\n格挡+20", "img": "bubing_beidong2_guruojintang", "isShow": 1, "condition": "&", @@ -8642,7 +8690,7 @@ { "id": 301321, "name": "贪狼之势2", - "info": "本回合移动至少3格,主动攻击时物攻强度+20\r\n本回合移动至少5格,[风影突袭]额外造成50%的物理伤害", + "info": "本回合移动至少3格,主动攻击时物攻强度+20\n本回合移动至少5格,[风影突袭]额外造成50%的物理伤害", "img": "zhangliao_beidong1_tanlangzhishi", "isShow": 1, "condition": "&", @@ -8690,7 +8738,7 @@ { "id": 301331, "name": "贪狼之势3", - "info": "本回合移动至少3格,主动攻击时物攻强度+20\r\n本回合移动至少5格,[风影突袭]额外造成100%的物理伤害", + "info": "本回合移动至少3格,主动攻击时物攻强度+20\n本回合移动至少5格,[风影突袭]额外造成100%的物理伤害", "img": "zhangliao_beidong1_tanlangzhishi", "isShow": 1, "condition": "&", @@ -8762,7 +8810,7 @@ { "id": 301421, "name": "冲锋陷阵2", - "info": "物攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n物攻抗性+20、策攻抗性+20", "img": "qibing_beidong2_chongfengxianzhen", "isShow": 1, "condition": "&", @@ -8858,7 +8906,7 @@ { "id": 302321, "name": "真·贪狼之势2", - "info": "本回合移动至少3格,主动攻击时物攻强度+30\r\n本回合移动至少5格,[风影突袭]额外造成50%的物理伤害", + "info": "本回合移动至少3格,主动攻击时物攻强度+30\n本回合移动至少5格,[风影突袭]额外造成50%的物理伤害", "img": "zhangliao_beidong1_tanlangzhishi", "isShow": 1, "condition": "&", @@ -8930,7 +8978,7 @@ { "id": 302331, "name": "真·贪狼之势3", - "info": "本回合移动至少3格,主动攻击时物攻强度+40\r\n本回合移动至少5格,[风影突袭]额外造成100%的物理伤害", + "info": "本回合移动至少3格,主动攻击时物攻强度+40\n本回合移动至少5格,[风影突袭]额外造成100%的物理伤害", "img": "zhangliao_beidong1_tanlangzhishi", "isShow": 1, "condition": "&", @@ -9002,7 +9050,7 @@ { "id": 302611, "name": "真·威震逍遥", - "info": "战斗开始时,对自身造成当前生命值与护盾值总值95%的伤害,作为护盾存入%d301211%d\r\n自身生命值每降低10%,自身物攻强度+10,最多+50", + "info": "战斗开始时,对自身造成当前生命值与护盾值总值95%的伤害,作为护盾存入%d301211%d\n自身生命值每降低10%,自身物攻强度+10,最多+50", "img": "zhangliao_jiban_weizhenxiaoyao", "isShow": 1, "condition": "&", @@ -9146,7 +9194,7 @@ { "id": 401311, "name": "飞骑弓射1", - "info": "移动力+1\r\n自身生命值低于30%时,破格+20\r\n自身生命值低于30%时,主动攻击施加随机控制状态", + "info": "移动力+1\n自身生命值低于30%时,破格+20\n自身生命值低于30%时,主动攻击施加随机控制状态", "img": "xiahouyuan_beidong1_feijigongshe", "isShow": 1, "condition": "&", @@ -9242,7 +9290,7 @@ { "id": 401321, "name": "飞骑弓射2", - "info": "移动力+1\r\n自身生命值低于30%时,物攻强度+20、破格+20\r\n自身生命值低于30%时,主动攻击施加随机控制状态", + "info": "移动力+1\n自身生命值低于30%时,物攻强度+20、破格+20\n自身生命值低于30%时,主动攻击施加随机控制状态", "img": "xiahouyuan_beidong1_feijigongshe", "isShow": 1, "condition": "&", @@ -9290,7 +9338,7 @@ { "id": 401331, "name": "飞骑弓射3", - "info": "移动力+1\r\n自身生命值低于30%时,物攻强度+40、破格+20\r\n自身生命值低于30%时,主动攻击施加随机控制状态", + "info": "移动力+1\n自身生命值低于30%时,物攻强度+40、破格+20\n自身生命值低于30%时,主动攻击施加随机控制状态", "img": "xiahouyuan_beidong1_feijigongshe", "isShow": 1, "condition": "&", @@ -9362,7 +9410,7 @@ { "id": 401421, "name": "强弓劲弩2", - "info": "物攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n物攻抗性+20、策攻抗性+20", "img": "gongbing_beidong2_qianggongjingnu", "isShow": 1, "condition": "&", @@ -9698,7 +9746,7 @@ { "id": 501321, "name": "逆命风流2", - "info": "主动攻击时施加%d51%d\r\n自身生命值低于30%时,策攻强度+20", + "info": "主动攻击时施加%d51%d\n自身生命值低于30%时,策攻强度+20", "img": "guojia_beidong1_nimingfengliu", "isShow": 1, "condition": "&", @@ -9746,7 +9794,7 @@ { "id": 501331, "name": "逆命风流3", - "info": "主动攻击时施加%d51%d\r\n自身生命值低于30%时,策攻强度+20\r\n攻击%d51%d的目标时,策攻强度+20", + "info": "主动攻击时施加%d51%d\n自身生命值低于30%时,策攻强度+20\n攻击%d51%d的目标时,策攻强度+20", "img": "guojia_beidong1_nimingfengliu", "isShow": 1, "condition": "&", @@ -9818,7 +9866,7 @@ { "id": 501421, "name": "运筹帷幄2", - "info": "策攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "策攻强度+20\n物攻抗性+20、策攻抗性+20", "img": "ceshi_beidong2_yunchouweiwo", "isShow": 1, "condition": "&", @@ -9842,7 +9890,7 @@ { "id": 501511, "name": "出奇制胜", - "info": "战斗开始时,对我方攻击最高的武将造成当前生命值与护盾值总值95%的伤害,作为护盾存入%d501111%d\r\n释放怒气技后,对生命值低于30%的友军施加%d1004%d", + "info": "战斗开始时,对我方攻击最高的武将造成当前生命值与护盾值总值95%的伤害,作为护盾存入%d501111%d\n释放怒气技后,对生命值低于30%的友军施加%d1004%d", "img": "guojia_beidong3_chuqizhisheng", "isShow": 1, "condition": "&", @@ -9986,7 +10034,7 @@ { "id": 501611, "name": "计定辽东", - "info": "%d1%d\r\n我方武将,生命值每损失10%,物攻强度和策攻强度+10", + "info": "%d1%d\n我方武将,生命值每损失10%,物攻强度和策攻强度+10", "img": "guojia_jiban_jidingliaodong", "isShow": 1, "condition": "200&1&10", @@ -10005,12 +10053,12 @@ "seidNameImage": "&", "passivespineName": "&", "rangeUi": 0, - "passiveType": 1 + "passiveType": 3 }, { "id": 502111, "name": "真·十胜天机1", - "info": "若指定友军的生命值大于最大生命值的30%,则对其造成当前生命值与护盾值总值95%的伤害,作为护盾存入%d501111%d\r\n若指定友军的生命值小于等于30%,则将其最大生命值的30%作为护盾存入%d502014%d", + "info": "若指定友军的生命值大于最大生命值的30%,则对其造成当前生命值与护盾值总值95%的伤害,作为护盾存入%d501111%d\n若指定友军的生命值小于等于30%,则将其最大生命值的30%作为护盾存入%d502014%d", "img": 1, "isShow": 0, "condition": "&", @@ -10130,7 +10178,7 @@ { "id": 502121, "name": "真·十胜天机2", - "info": "若范围内友军的生命值大于最大生命值的30%,则对其造成当前生命值与护盾值总值95%的伤害,作为护盾存入%d501111%d\r\n若范围内友军的生命值小于等于30%,则将其最大生命值的30%作为护盾存入%d502014%d", + "info": "若范围内友军的生命值大于最大生命值的30%,则对其造成当前生命值与护盾值总值95%的伤害,作为护盾存入%d501111%d\n若范围内友军的生命值小于等于30%,则将其最大生命值的30%作为护盾存入%d502014%d", "img": 1, "isShow": 0, "condition": "&", @@ -10250,7 +10298,7 @@ { "id": 502321, "name": "真·逆命风流2", - "info": "主动攻击时施加%d51%d\r\n自身生命值低于30%时,策攻强度+20", + "info": "主动攻击时施加%d51%d\n自身生命值低于30%时,策攻强度+20", "img": "guojia_beidong1_nimingfengliu", "isShow": 1, "condition": "&", @@ -10298,7 +10346,7 @@ { "id": 502331, "name": "真·逆命风流3", - "info": "主动攻击时施加%d51%d\r\n自身生命值低于30%时,策攻强度+20\r\n策攻强度+20,暴击伤害+50%", + "info": "主动攻击时施加%d51%d\n自身生命值低于30%时,策攻强度+20\n策攻强度+20,暴击伤害+50%", "img": "guojia_beidong1_nimingfengliu", "isShow": 1, "condition": "&", @@ -10343,6 +10391,630 @@ "rangeUi": 0, "passiveType": 0 }, + { + "id": 601011, + "name": 0, + "info": "对范围的生命值百分比最低的友军施加%d601011%d", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 9, + "type": 107, + "gainvalue": "2012&1&601011&106&1", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 601012, + "name": 0, + "info": "100%护盾", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 16, + "type": 308, + "gainvalue": "5&100", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 601111, + "name": 0, + "info": "对指定友军施加%d601111%d和%d601121%d", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 1, + "percent": 100, + "node": 7, + "type": 100, + "gainvalue": "601111&601121", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 601112, + "name": 0, + "info": "怒气技消耗-500", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 16, + "type": 209, + "gainvalue": "500&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 601113, + "name": 0, + "info": "176%攻击的护盾", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 16, + "type": 308, + "gainvalue": "5&176", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 601121, + "name": 0, + "info": "对指定友军施加%d601112%d和%d601122%d", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 1, + "percent": 100, + "node": 7, + "type": 100, + "gainvalue": "601111&601121", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 601122, + "name": 0, + "info": "怒气技消耗-1000", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 16, + "type": 209, + "gainvalue": "1000&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 601123, + "name": 0, + "info": "220%攻击的护盾", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 16, + "type": 308, + "gainvalue": "5&220", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 601211, + "name": 0, + "info": "对范围内友军施加%d601211%d\n使范围内友军获得100点怒气值", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 1, + "percent": 100, + "node": 7, + "type": 999, + "gainvalue": "601212&601213", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 601212, + "name": 0, + "info": "对范围内友军施加%d601211%d", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 1, + "percent": 100, + "node": 7, + "type": 100, + "gainvalue": "601211&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 601213, + "name": 0, + "info": "使范围内友军获得100点怒气值", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 1, + "percent": 100, + "node": 7, + "type": 220, + "gainvalue": "29&100&100", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 601214, + "name": 0, + "info": "80%护盾", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 16, + "type": 308, + "gainvalue": "5&80", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 601221, + "name": 0, + "info": "对范围内友军施加%d601212%d\n使范围内友军获得200点怒气值", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 1, + "percent": 100, + "node": 7, + "type": 999, + "gainvalue": "601222&601223", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 601222, + "name": 0, + "info": "对范围内友军施加%d601212%d", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 1, + "percent": 100, + "node": 7, + "type": 100, + "gainvalue": "601212&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 601223, + "name": 0, + "info": "使范围内友军获得200点怒气值", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 1, + "percent": 100, + "node": 7, + "type": 220, + "gainvalue": "29&200&200", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 601224, + "name": 0, + "info": "100%护盾", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 16, + "type": 308, + "gainvalue": "5&100", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 601301, + "name": 0, + "info": "怒气技消耗-10", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 16, + "type": 209, + "gainvalue": "10&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 601311, + "name": 0, + "info": "释放技能时,每影响一名友军,获得1层%d601311%d", + "img": "zhenfu_beidong1", + "isShow": 1, + "condition": "602&1&2", + "aim": 0, + "percent": 100, + "node": 7, + "type": 100, + "gainvalue": "601311&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "zhenfu_beidong1", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 601321, + "name": 0, + "info": "释放技能时,每影响一名友军,获得1层%d601311%d\n回合开始时,自身获得2层%d601311%d", + "img": "zhenfu_beidong1", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 7, + "type": 999, + "gainvalue": "601311&601322", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 601322, + "name": 0, + "info": "回合开始时,自身获得2层%d601311%d", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 2, + "type": 116, + "gainvalue": "2&601311", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "zhenfu_beidong1", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 601331, + "name": 0, + "info": "释放技能时,每影响一名友军,获得1层%d601311%d\n回合开始时,自身获得2层%d601311%d\n自身护盾被击破时,获得2层%d601311%d", + "img": "zhenfu_beidong1", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 7, + "type": 999, + "gainvalue": "601311&601322&601332", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 601332, + "name": 0, + "info": "自身护盾被击破时,获得2层%d601311%d", + "img": 1, + "isShow": 0, + "condition": "314&1&1&0", + "aim": 0, + "percent": 100, + "node": 14, + "type": 116, + "gainvalue": "2&601311", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "zhenfu_beidong1", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 601411, + "name": "救死扶伤1", + "info": "治疗效果+20%", + "img": "yisheng_beidong2_jiusifushang", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 16, + "type": 200, + "gainvalue": "23&20&20", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 601421, + "name": "救死扶伤2", + "info": "治疗效果+20%\n物攻抗性+20、策攻抗性+20", + "img": "yisheng_beidong2_jiusifushang", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 16, + "type": 200, + "gainvalue": "23&20&20&20&20&20&22&20&20", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 601511, + "name": 0, + "info": "释放普攻时,普攻附加的治疗效果改为施加等值的护盾", + "img": "zhenfu_beidong3", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 1, + "type": 607, + "gainvalue": "0&60101", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "zhenfu_beidong3", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 601611, + "name": 0, + "info": "当我方武将护盾被击破时,该武将获得100点怒气", + "img": "zhenfu_jiban", + "isShow": 1, + "condition": "314&1&1&0", + "aim": 0, + "percent": 100, + "node": 14, + "type": 220, + "gainvalue": "29&100&1000", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "2&999&0", + "haloGroup": 601611, + "haloLevel": 1, + "seidNameImage": "zhenfu_jiban", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 1 + }, { "id": 700000, "name": "二连", @@ -10418,7 +11090,7 @@ { "id": 702131, "name": "真·双铁烈击1", - "info": "3段伤害\r\n每次攻击使下一次额外造成30%的物理伤害", + "info": "3段伤害\n每次攻击使下一次额外造成30%的物理伤害", "img": 1, "isShow": 0, "condition": "&", @@ -10490,7 +11162,7 @@ { "id": 702141, "name": "真·双铁烈击2", - "info": "3段伤害\r\n每次攻击使下一次额外造成60%的物理伤害", + "info": "3段伤害\n每次攻击使下一次额外造成60%的物理伤害", "img": 1, "isShow": 0, "condition": "&", @@ -10682,7 +11354,7 @@ { "id": 701321, "name": "古之恶来2", - "info": "受到主动攻击时,在战斗结束后,若生命值低于70%,获得%d701321%d\r\n%d701321%d状态下,暴击时获得%d701322%d", + "info": "受到主动攻击时,在战斗结束后,若生命值低于70%,获得%d701321%d\n%d701321%d状态下,暴击时获得%d701322%d", "img": "dianwei_beidong1_guzhielai", "isShow": 1, "condition": "203&2&3&70", @@ -10754,7 +11426,7 @@ { "id": 701331, "name": "古之恶来3", - "info": "战斗开始时,获得%d701331%d\r\n%d701331%d状态下,暴击时获得%d701322%d", + "info": "战斗开始时,获得%d701331%d\n%d701331%d状态下,暴击时获得%d701322%d", "img": "dianwei_beidong1_guzhielai", "isShow": 1, "condition": "&", @@ -10826,7 +11498,7 @@ { "id": 701421, "name": "江湖豪侠2", - "info": "物攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n物攻抗性+20、策攻抗性+20", "img": "youxia_beidong2_jianghuhaoxia", "isShow": 1, "condition": "&", @@ -10850,7 +11522,7 @@ { "id": 701511, "name": "恶来转世", - "info": "战斗开始时获得%d701511%d\r\n%d701511%d生效后,获得%d701512%d", + "info": "战斗开始时获得%d701511%d\n%d701511%d生效后,获得%d701512%d", "img": "dianwei_beidong3_elaizhuanshi", "isShow": 1, "condition": "&", @@ -11090,7 +11762,7 @@ { "id": 702321, "name": "真·古之恶来2", - "info": "受到主动攻击时,在战斗结束后,若生命值低于70%,获得%d702321%d\r\n%d702321%d状态下,暴击时获得%d702322%d", + "info": "受到主动攻击时,在战斗结束后,若生命值低于70%,获得%d702321%d\n%d702321%d状态下,暴击时获得%d702322%d", "img": "dianwei_beidong1_guzhielai", "isShow": 1, "condition": "203&2&3&70", @@ -11162,7 +11834,7 @@ { "id": 702331, "name": "真·古之恶来3", - "info": "战斗开始时,获得%d702331%d\r\n%d702331%d状态下,暴击时获得%d702322%d", + "info": "战斗开始时,获得%d702331%d\n%d702331%d状态下,暴击时获得%d702322%d", "img": "dianwei_beidong1_guzhielai", "isShow": 1, "condition": "&", @@ -11330,7 +12002,7 @@ { "id": 801321, "name": "逆流而上2", - "info": "格挡+10\r\n若战斗时发生格挡,在战斗结束后恢复自身3%的生命值", + "info": "格挡+10\n若战斗时发生格挡,在战斗结束后恢复自身3%的生命值", "img": "pangde_beidong1_niliuershang", "isShow": 1, "condition": "&", @@ -11378,7 +12050,7 @@ { "id": 801331, "name": "逆流而上3", - "info": "格挡+20\r\n若战斗时发生格挡,在战斗结束后恢复自身5%的生命值", + "info": "格挡+20\n若战斗时发生格挡,在战斗结束后恢复自身5%的生命值", "img": "pangde_beidong1_niliuershang", "isShow": 1, "condition": "&", @@ -11450,7 +12122,7 @@ { "id": 801411, "name": "固若金汤1", - "info": "物攻抗性+20、策攻抗性+20\r\n格挡+10", + "info": "物攻抗性+20、策攻抗性+20\n格挡+10", "img": "bubing_beidong2_guruojintang", "isShow": 1, "condition": "&", @@ -11474,7 +12146,7 @@ { "id": 801421, "name": "固若金汤2", - "info": "物攻抗性+40、策攻抗性+40\r\n格挡+20", + "info": "物攻抗性+40、策攻抗性+40\n格挡+20", "img": "bubing_beidong2_guruojintang", "isShow": 1, "condition": "&", @@ -11522,7 +12194,7 @@ { "id": 801611, "name": "抬棺死战", - "info": "%d2%d\r\n我方武将物攻抗性和策攻抗性+10\r\n我方魏国武将物攻抗性和策攻抗性+10", + "info": "%d2%d\n我方武将物攻抗性和策攻抗性+10\n我方魏国武将物攻抗性和策攻抗性+10", "img": "pangde_jiban_taiguansizhan", "isShow": 1, "condition": "&", @@ -11541,7 +12213,7 @@ "seidNameImage": "&", "passivespineName": "&", "rangeUi": 0, - "passiveType": 1 + "passiveType": 4 }, { "id": 801612, @@ -11714,7 +12386,7 @@ { "id": 1001411, "name": "锋锐无当1", - "info": "物攻强度+20\r\n攻击时无视目标5%的物防", + "info": "物攻强度+20\n攻击时无视目标5%的物防", "img": "qiangbing_beidong2_fengruiwudang", "isShow": 1, "condition": "&", @@ -11786,7 +12458,7 @@ { "id": 1001421, "name": "锋锐无当2", - "info": "物攻强度+20\r\n攻击时无视目标10%的物防\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n攻击时无视目标10%的物防\n物攻抗性+20、策攻抗性+20", "img": "qiangbing_beidong2_fengruiwudang", "isShow": 1, "condition": "&", @@ -11810,7 +12482,7 @@ { "id": 1001422, "name": "锋锐无当2", - "info": "物攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n物攻抗性+20、策攻抗性+20", "img": 1, "isShow": 0, "condition": "&", @@ -11978,7 +12650,7 @@ { "id": 1101321, "name": "猛虎下山2", - "info": "怒气技攻击时击退目标1格;\r\n若目标无法被击退,并对其造成额外25%的物理伤害", + "info": "怒气技攻击时击退目标1格;\n若目标无法被击退,并对其造成额外25%的物理伤害", "img": "caoren_beidong1_menghuxiashan", "isShow": 1, "condition": "&", @@ -12026,7 +12698,7 @@ { "id": 1101331, "name": "猛虎下山3", - "info": "怒气技攻击时击退目标1格;\r\n若目标无法被击退,并对其造成额外50%的物理伤害", + "info": "怒气技攻击时击退目标1格;\n若目标无法被击退,并对其造成额外50%的物理伤害", "img": "caoren_beidong1_menghuxiashan", "isShow": 1, "condition": "&", @@ -12098,7 +12770,7 @@ { "id": 1101421, "name": "冲锋陷阵2", - "info": "物攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n物攻抗性+20、策攻抗性+20", "img": "qibing_beidong2_chongfengxianzhen", "isShow": 1, "condition": "&", @@ -12242,7 +12914,7 @@ { "id": 1201321, "name": "长弓抛射2", - "info": "如果目标有减益状态,主动攻击和反击时额外施加1个减益状态\r\n目标每有1个减益状态,破格+10", + "info": "如果目标有减益状态,主动攻击和反击时额外施加1个减益状态\n目标每有1个减益状态,破格+10", "img": "lidian_beidong1_wenrutaishan", "isShow": 1, "condition": "&", @@ -12290,7 +12962,7 @@ { "id": 1201331, "name": "长弓抛射3", - "info": "如果目标有减益状态,主动攻击和反击时额外施加1个减益状态\r\n目标每有1个减益状态,破格+20", + "info": "如果目标有减益状态,主动攻击和反击时额外施加1个减益状态\n目标每有1个减益状态,破格+20", "img": "lidian_beidong1_wenrutaishan", "isShow": 1, "condition": "803&", @@ -12362,7 +13034,7 @@ { "id": 1201421, "name": "强弓劲弩2", - "info": "物攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n物攻抗性+20、策攻抗性+20", "img": "gongbing_beidong2_qianggongjingnu", "isShow": 1, "condition": "&", @@ -12458,7 +13130,7 @@ { "id": 1301321, "name": "杏林妙手2", - "info": "治疗效果+10%\r\n使用技能治疗生命值低于30%的友军时,治疗效果+10%", + "info": "治疗效果+10%\n使用技能治疗生命值低于30%的友军时,治疗效果+10%", "img": "caiyan_beidong1_xinlinmiaoshou", "isShow": 1, "condition": "&", @@ -12506,7 +13178,7 @@ { "id": 1301331, "name": "杏林妙手3", - "info": "治疗效果+10%\r\n使用技能治疗生命值低于30%的友军时,治疗效果+20%", + "info": "治疗效果+10%\n使用技能治疗生命值低于30%的友军时,治疗效果+20%", "img": "caiyan_beidong1_xinlinmiaoshou", "isShow": 1, "condition": "&", @@ -12578,7 +13250,7 @@ { "id": 1301421, "name": "救死扶伤2", - "info": "治疗效果+20%\r\n物攻抗性+20、策攻抗性+20", + "info": "治疗效果+20%\n物攻抗性+20、策攻抗性+20", "img": "yisheng_beidong2_jiusifushang", "isShow": 1, "condition": "&", @@ -12770,7 +13442,7 @@ { "id": 1401321, "name": "阴阳诡命2", - "info": "攻击%d11%d目标时,策攻强度+20\r\n受到%d11%d敌军攻击时,物攻抗性+20", + "info": "攻击%d11%d目标时,策攻强度+20\n受到%d11%d敌军攻击时,物攻抗性+20", "img": "jiaxu_beidong1_yinyangguiming", "isShow": 1, "condition": "&", @@ -12818,7 +13490,7 @@ { "id": 1401331, "name": "阴阳诡命3", - "info": "攻击%d11%d目标时,策攻强度+20\r\n受到%d11%d敌军攻击时,物攻抗性和策攻抗性+20", + "info": "攻击%d11%d目标时,策攻强度+20\n受到%d11%d敌军攻击时,物攻抗性和策攻抗性+20", "img": "jiaxu_beidong1_yinyangguiming", "isShow": 1, "condition": "&", @@ -12890,7 +13562,7 @@ { "id": 1401421, "name": "运筹帷幄2", - "info": "策攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "策攻强度+20\n物攻抗性+20、策攻抗性+20", "img": "ceshi_beidong2_yunchouweiwo", "isShow": 1, "condition": "&", @@ -13058,7 +13730,7 @@ { "id": 1501111, "name": "怒目虎威1", - "info": "对自身造成生命和护盾总值50%的伤害,作为护盾值存入【虎卫】\r\n释放后,怒气技替换为【巨星天降】,且本回合可再次发动攻击", + "info": "对自身造成生命和护盾总值50%的伤害,作为护盾值存入【虎卫】\n释放后,怒气技替换为【巨星天降】,且本回合可再次发动攻击", "img": 1, "isShow": 0, "condition": "&", @@ -13202,7 +13874,7 @@ { "id": 1501121, "name": "怒目虎威2", - "info": "对自身造成生命和护盾总值90%的伤害,作为护盾值存入【虎卫】\r\n释放后,怒气技替换为【巨星天降】,且本回合可再次发动攻击", + "info": "对自身造成生命和护盾总值90%的伤害,作为护盾值存入【虎卫】\n释放后,怒气技替换为【巨星天降】,且本回合可再次发动攻击", "img": 1, "isShow": 0, "condition": "&", @@ -13346,7 +14018,7 @@ { "id": 1501131, "name": "巨星天降1", - "info": "对指定敌军造成140%的物理伤害\r\n释放后,怒气技替换为【怒目虎威】", + "info": "对指定敌军造成140%的物理伤害\n释放后,怒气技替换为【怒目虎威】", "img": 1, "isShow": 0, "condition": "&", @@ -13370,7 +14042,7 @@ { "id": 1501141, "name": "巨星天降2", - "info": "对指定敌军造成170%的物理伤害\r\n释放后,怒气技替换为【怒目虎威】", + "info": "对指定敌军造成170%的物理伤害\n释放后,怒气技替换为【怒目虎威】", "img": 1, "isShow": 0, "condition": "&", @@ -13394,7 +14066,7 @@ { "id": 1501211, "name": "重锤威击1", - "info": "对指定敌军造成120%的物理伤害\r\n施加%d811%d", + "info": "对指定敌军造成120%的物理伤害\n施加%d811%d", "img": 1, "isShow": 0, "condition": "&", @@ -13418,7 +14090,7 @@ { "id": 1501221, "name": "重锤威击2", - "info": "对指定敌军造成140%的物理伤害\r\n施加%d812%d", + "info": "对指定敌军造成140%的物理伤害\n施加%d812%d", "img": 1, "isShow": 0, "condition": "&", @@ -13466,7 +14138,7 @@ { "id": 1501321, "name": "虎视四方2", - "info": "释放【怒目虎威】时,获得%d1501311%d\r\n%d1501311%d状态下【巨星天降】额外造成150%的物理伤害", + "info": "释放【怒目虎威】时,获得%d1501311%d\n%d1501311%d状态下【巨星天降】额外造成150%的物理伤害", "img": "xuchu_beidong1_hushisifang", "isShow": 1, "condition": "&", @@ -13514,7 +14186,7 @@ { "id": 1501331, "name": "虎视四方3", - "info": "释放【怒目虎威】时,获得%d1501311%d\r\n%d1501311%d状态下【巨星天降】额外造成150%的物理伤害\r\n自身拥有2层%d1501311%d时,物攻强度+30,暴击伤害+50%", + "info": "释放【怒目虎威】时,获得%d1501311%d\n%d1501311%d状态下【巨星天降】额外造成150%的物理伤害\n自身拥有2层%d1501311%d时,物攻强度+30,暴击伤害+50%", "img": "xuchu_beidong1_hushisifang", "isShow": 1, "condition": "&", @@ -13586,7 +14258,7 @@ { "id": 1501421, "name": "江湖豪侠2", - "info": "物攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n物攻抗性+20、策攻抗性+20", "img": "youxia_beidong2_jianghuhaoxia", "isShow": 1, "condition": "&", @@ -13610,7 +14282,7 @@ { "id": 1501511, "name": "虎痴狂胆", - "info": "自身拥有护盾类状态时,暴击+40\r\n自身没有护盾类状态时,策攻抗性+20,抗暴+20", + "info": "自身拥有护盾类状态时,暴击+40\n自身没有护盾类状态时,策攻抗性+20,抗暴+20", "img": "xuchu_beidong3_huchikuangdan", "isShow": 1, "condition": "&", @@ -13778,7 +14450,7 @@ { "id": 1601321, "name": "不动如山2", - "info": "受到物理攻击时,格挡+10\r\n受到策略攻击时,反弹+10", + "info": "受到物理攻击时,格挡+10\n受到策略攻击时,反弹+10", "img": "yuejin_beidong1_budongrushan", "isShow": 1, "condition": "&", @@ -13826,7 +14498,7 @@ { "id": 1601331, "name": "不动如山3", - "info": "受到物理攻击时,格挡+10\r\n受到策略攻击时,反弹+20", + "info": "受到物理攻击时,格挡+10\n受到策略攻击时,反弹+20", "img": "yuejin_beidong1_budongrushan", "isShow": 1, "condition": "&", @@ -13874,7 +14546,7 @@ { "id": 1601411, "name": "固若金汤1", - "info": "物攻抗性+20、策攻抗性+20\r\n格挡+10", + "info": "物攻抗性+20、策攻抗性+20\n格挡+10", "img": "bubing_beidong2_guruojintang", "isShow": 1, "condition": "&", @@ -13898,7 +14570,7 @@ { "id": 1601421, "name": "固若金汤2", - "info": "物攻抗性+40、策攻抗性+40\r\n格挡+20", + "info": "物攻抗性+40、策攻抗性+40\n格挡+20", "img": "bubing_beidong2_guruojintang", "isShow": 1, "condition": "&", @@ -13946,7 +14618,7 @@ { "id": 1601611, "name": "临战先登", - "info": "%d2%d\r\n我方武将物攻抗性和策攻抗性+10", + "info": "%d2%d\n我方武将物攻抗性和策攻抗性+10", "img": "yuejin_jiban_linzhanxiandeng", "isShow": 1, "condition": "&", @@ -13965,7 +14637,7 @@ "seidNameImage": "&", "passivespineName": "&", "rangeUi": 0, - "passiveType": 1 + "passiveType": 4 }, { "id": 1701111, @@ -14234,7 +14906,7 @@ { "id": 1701411, "name": "锋锐无当1", - "info": "物攻强度+20\r\n攻击时无视目标5%的物防", + "info": "物攻强度+20\n攻击时无视目标5%的物防", "img": "qiangbing_beidong2_fengruiwudang", "isShow": 1, "condition": "&", @@ -14306,7 +14978,7 @@ { "id": 1701421, "name": "锋锐无当2", - "info": "物攻强度+20\r\n攻击时无视目标10%的物防\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n攻击时无视目标10%的物防\n物攻抗性+20、策攻抗性+20", "img": "qiangbing_beidong2_fengruiwudang", "isShow": 1, "condition": "&", @@ -14330,7 +15002,7 @@ { "id": 1701422, "name": "锋锐无当2", - "info": "物攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n物攻抗性+20、策攻抗性+20", "img": 1, "isShow": 0, "condition": "&", @@ -14594,7 +15266,7 @@ { "id": 1801321, "name": "纵横华夏2", - "info": "本回合移动至少3格,在主动攻击后,获得2个随机增益状态\r\n自身每个增益状态使怒气技额外造成20%的物理伤害", + "info": "本回合移动至少3格,在主动攻击后,获得2个随机增益状态\n自身每个增益状态使怒气技额外造成20%的物理伤害", "img": "guanyu_beidong1_zonghenghuaxia", "isShow": 1, "condition": "&", @@ -14642,7 +15314,7 @@ { "id": 1801331, "name": "纵横华夏3", - "info": "本回合每移动1格,在主动攻击后,获得1个随机增益状态\r\n自身每个增益状态使怒气技额外造成20%的物理伤害\r\n自身拥有至少5个增益状态时,怒气技暴击伤害+50%", + "info": "本回合每移动1格,在主动攻击后,获得1个随机增益状态\n自身每个增益状态使怒气技额外造成20%的物理伤害\n自身拥有至少5个增益状态时,怒气技暴击伤害+50%", "img": "guanyu_beidong1_zonghenghuaxia", "isShow": 1, "condition": "&", @@ -14738,7 +15410,7 @@ { "id": 1801421, "name": "冲锋陷阵2", - "info": "物攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n物攻抗性+20、策攻抗性+20", "img": "qibing_beidong2_chongfengxianzhen", "isShow": 1, "condition": "&", @@ -14882,7 +15554,7 @@ { "id": 1802311, "name": "真·纵横华夏1", - "info": "本回合移动至少3格,在主动攻击时,获得2个随机增益状态\r\n回合开始时,获得1个随机增益状态", + "info": "本回合移动至少3格,在主动攻击时,获得2个随机增益状态\n回合开始时,获得1个随机增益状态", "img": "guanyu_beidong1_zonghenghuaxia", "isShow": 1, "condition": "&", @@ -14954,7 +15626,7 @@ { "id": 1802321, "name": "真·纵横华夏2", - "info": "本回合移动至少3格,在主动攻击时,获得2个随机增益状态\r\n自身每个增益状态使怒气技额外造成30%的物理伤害\r\n回合开始时,获得1个随机增益状态", + "info": "本回合移动至少3格,在主动攻击时,获得2个随机增益状态\n自身每个增益状态使怒气技额外造成30%的物理伤害\n回合开始时,获得1个随机增益状态", "img": "guanyu_beidong1_zonghenghuaxia", "isShow": 1, "condition": "&", @@ -15002,7 +15674,7 @@ { "id": 1802331, "name": "真·纵横华夏3", - "info": "本回合每移动1格,在主动攻击时,获得1个随机增益状态\r\n自身每个增益状态使怒气技额外造成30%的物理伤害\r\n自身拥有5个以上增益状态时,怒气技暴击伤害+50%\r\n回合开始时,获得1个随机增益状态", + "info": "本回合每移动1格,在主动攻击时,获得1个随机增益状态\n自身每个增益状态使怒气技额外造成30%的物理伤害\n自身拥有5个以上增益状态时,怒气技暴击伤害+50%\n回合开始时,获得1个随机增益状态", "img": "guanyu_beidong1_zonghenghuaxia", "isShow": 1, "condition": "&", @@ -15074,7 +15746,7 @@ { "id": 1802511, "name": "真·插标卖首", - "info": "击杀敌军时,自身每拥有1个增益状态恢复25点怒气和2%的生命值,同时将自身拥有的增益状态持续回合+2\r\n回合开始时,获得2个随机增益状态", + "info": "击杀敌军时,自身每拥有1个增益状态恢复25点怒气和2%的生命值,同时将自身拥有的增益状态持续回合+2\n回合开始时,获得2个随机增益状态", "img": "guanyu_beidong3_chabiaomaishou", "isShow": 1, "condition": "&", @@ -15362,7 +16034,7 @@ { "id": 1901411, "name": "锋锐无当1", - "info": "物攻强度+20\r\n攻击时无视目标5%的物防", + "info": "物攻强度+20\n攻击时无视目标5%的物防", "img": "qiangbing_beidong2_fengruiwudang", "isShow": 1, "condition": "&", @@ -15434,7 +16106,7 @@ { "id": 1901421, "name": "锋锐无当2", - "info": "物攻强度+20\r\n攻击时无视目标10%的物防\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n攻击时无视目标10%的物防\n物攻抗性+20、策攻抗性+20", "img": "qiangbing_beidong2_fengruiwudang", "isShow": 1, "condition": "&", @@ -15458,7 +16130,7 @@ { "id": 1901422, "name": "锋锐无当2", - "info": "物攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n物攻抗性+20、策攻抗性+20", "img": 1, "isShow": 0, "condition": "&", @@ -15554,7 +16226,7 @@ { "id": 1902311, "name": "真·智勇兼备1", - "info": "自身每个增益状态提高3点物攻强度,最高15\r\n回合开始时,获得1个随机增益状态", + "info": "自身每个增益状态提高3点物攻强度,最高15\n回合开始时,获得1个随机增益状态", "img": "zhaoyun_beidong1_zhiyongjianbei", "isShow": 1, "condition": "&", @@ -15626,7 +16298,7 @@ { "id": 1902321, "name": "真·智勇兼备2", - "info": "自身每个增益状态提高5点物攻强度,最高15\r\n回合开始时,获得1个随机增益状态", + "info": "自身每个增益状态提高5点物攻强度,最高15\n回合开始时,获得1个随机增益状态", "img": "zhaoyun_beidong1_zhiyongjianbei", "isShow": 1, "condition": "&", @@ -15698,7 +16370,7 @@ { "id": 1902331, "name": "真·智勇兼备3", - "info": "自身每个增益状态提高5点物攻强度,最高30\r\n回合开始时,获得2个随机增益状态", + "info": "自身每个增益状态提高5点物攻强度,最高30\n回合开始时,获得2个随机增益状态", "img": "zhaoyun_beidong1_zhiyongjianbei", "isShow": 1, "condition": "&", @@ -15770,7 +16442,7 @@ { "id": 1902511, "name": "真·龙胆翊军", - "info": "战场内友军每持有1个增益状态,赵云自身物攻抗性、策攻抗性+1,最多20\r\n战场内友军每持有1个增益状态,赵云攻击时无视敌军1%的物防,最多20%", + "info": "战场内友军每持有1个增益状态,赵云自身物攻抗性、策攻抗性+1,最多20\n战场内友军每持有1个增益状态,赵云攻击时无视敌军1%的物防,最多20%", "img": "zhaoyun_beidong3_longdanyijun", "isShow": 1, "condition": "&", @@ -15962,7 +16634,7 @@ { "id": 2001321, "name": "蜀汉之护2", - "info": "使用技能治疗时,若自身没有增益状态,则自身获得1个增益状态\r\n使用技能治疗时,自身每拥有1个增益状态,治疗效果+5%,最多25%", + "info": "使用技能治疗时,若自身没有增益状态,则自身获得1个增益状态\n使用技能治疗时,自身每拥有1个增益状态,治疗效果+5%,最多25%", "img": "liubei_beidong1_shuhanzhihu", "isShow": 1, "condition": "&", @@ -16010,7 +16682,7 @@ { "id": 2001331, "name": "蜀汉之护3", - "info": "使用技能治疗时,若自身没有增益状态,则自身获得1个增益状态\r\n使用技能治疗时,自身每拥有1个增益状态,治疗效果+10%,最多50%", + "info": "使用技能治疗时,若自身没有增益状态,则自身获得1个增益状态\n使用技能治疗时,自身每拥有1个增益状态,治疗效果+10%,最多50%", "img": "liubei_beidong1_shuhanzhihu", "isShow": 1, "condition": "&", @@ -16082,7 +16754,7 @@ { "id": 2001421, "name": "救死扶伤2", - "info": "治疗效果+20%\r\n物攻抗性+20、策攻抗性+20", + "info": "治疗效果+20%\n物攻抗性+20、策攻抗性+20", "img": "yisheng_beidong2_jiusifushang", "isShow": 1, "condition": "&", @@ -16106,7 +16778,7 @@ { "id": 2001511, "name": "惟贤惟德", - "info": "自身移动力+1\r\n范围内友军,回合开始时获得1个随机增益状态", + "info": "自身移动力+1\n范围内友军,回合开始时获得1个随机增益状态", "img": "liubei_beidong3_weixianweide", "isShow": 1, "condition": "&", @@ -16322,7 +16994,7 @@ { "id": 2101321, "name": "百步穿杨2", - "info": "自身拥有增益状态时,破格+10\r\n自身每拥有1个增益状态,主动攻击时额外造成3%的物理伤害", + "info": "自身拥有增益状态时,破格+10\n自身每拥有1个增益状态,主动攻击时额外造成3%的物理伤害", "img": "huangzhong_beidong1_baibuchuanyang", "isShow": 1, "condition": "&", @@ -16370,7 +17042,7 @@ { "id": 2101331, "name": "百步穿杨3", - "info": "自身拥有增益状态时,破格+10\r\n自身每拥有1个增益状态,主动攻击时额外造成5%的物理伤害\r\n自身拥有至少3个增益状态时,暴击+10", + "info": "自身拥有增益状态时,破格+10\n自身每拥有1个增益状态,主动攻击时额外造成5%的物理伤害\n自身拥有至少3个增益状态时,暴击+10", "img": "huangzhong_beidong1_baibuchuanyang", "isShow": 1, "condition": "&", @@ -16466,7 +17138,7 @@ { "id": 2101421, "name": "强弓劲弩2", - "info": "物攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n物攻抗性+20、策攻抗性+20", "img": "gongbing_beidong2_qianggongjingnu", "isShow": 1, "condition": "&", @@ -16562,7 +17234,7 @@ { "id": 2101611, "name": "百发百中", - "info": "自身拥有的每个增益状态,为我方武将提供5点破格\r\n我方出战的弓兵必定破格", + "info": "自身拥有的每个增益状态,为我方武将提供5点破格\n我方出战的弓兵必定破格", "img": "huangzhong_jiban_baifabaizhong", "isShow": 1, "condition": "&", @@ -16749,7 +17421,7 @@ "seidNameImage": "&", "passivespineName": "&", "rangeUi": 0, - "passiveType": 0 + "passiveType": 3 }, { "id": 2201312, @@ -16850,7 +17522,7 @@ { "id": 2201321, "name": "晓贯百家2", - "info": "%d1%d为全体友军提高10点的物攻强度和策攻强度\r\n战场中有1个策士以外的职业提高10点物攻抗性\r\n战场中有2个策士以外的职业提高10点策攻抗性", + "info": "%d1%d为全体友军提高10点的物攻强度和策攻强度\n战场中有1个策士以外的职业提高10点物攻抗性\n战场中有2个策士以外的职业提高10点策攻抗性", "img": "zhugeliang_beidong1_guanxiaobaijia", "isShow": 1, "condition": "&", @@ -16869,7 +17541,7 @@ "seidNameImage": "&", "passivespineName": "&", "rangeUi": 0, - "passiveType": 0 + "passiveType": 3 }, { "id": 2201322, @@ -16970,7 +17642,7 @@ { "id": 2201331, "name": "晓贯百家3", - "info": "%d1%d为全体友军提高10点的物攻强度、策攻强度\r\n战场中有1个策士以外的职业提高10点物攻抗性\r\n战场中有2个策士以外的职业提高10点策攻抗性\r\n战场中有3个策士以外的职业提高10点暴击\r\n战场中有4个策士以外的职业提高10%暴击伤害", + "info": "%d1%d为全体友军提高10点的物攻强度、策攻强度\n战场中有1个策士以外的职业提高10点物攻抗性\n战场中有2个策士以外的职业提高10点策攻抗性\n战场中有3个策士以外的职业提高10点暴击\n战场中有4个策士以外的职业提高10%暴击伤害", "img": "zhugeliang_beidong1_guanxiaobaijia", "isShow": 1, "condition": "&", @@ -16989,7 +17661,7 @@ "seidNameImage": "&", "passivespineName": "&", "rangeUi": 0, - "passiveType": 0 + "passiveType": 3 }, { "id": 2201332, @@ -17114,7 +17786,7 @@ { "id": 2201421, "name": "运筹帷幄2", - "info": "策攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "策攻强度+20\n物攻抗性+20、策攻抗性+20", "img": "ceshi_beidong2_yunchouweiwo", "isShow": 1, "condition": "&", @@ -17349,7 +18021,7 @@ "seidNameImage": "&", "passivespineName": "&", "rangeUi": 0, - "passiveType": 0 + "passiveType": 3 }, { "id": 2202312, @@ -17474,7 +18146,7 @@ { "id": 2202321, "name": "真·晓贯百家2", - "info": "%d1%d为全体友军提高10点的物攻强度、策攻强度、物攻抗性\r\n战场中有1个策士以外的职业提高10点策攻抗性", + "info": "%d1%d为全体友军提高10点的物攻强度、策攻强度、物攻抗性\n战场中有1个策士以外的职业提高10点策攻抗性", "img": "zhugeliang_beidong1_guanxiaobaijia", "isShow": 1, "condition": "&", @@ -17493,7 +18165,7 @@ "seidNameImage": "&", "passivespineName": "&", "rangeUi": 0, - "passiveType": 0 + "passiveType": 3 }, { "id": 2202322, @@ -17570,7 +18242,7 @@ { "id": 2202331, "name": "真·晓贯百家3", - "info": "%d1%d为全体友军提高10点的物攻强度、策攻强度、物攻抗性\r\n战场中有1个策士以外的职业提高10点策攻抗性\r\n战场中有2个策士以外的职业提高10点暴击\r\n战场中有3个策士以外的职业提高10%暴击伤害", + "info": "%d1%d为全体友军提高10点的物攻强度、策攻强度、物攻抗性\n战场中有1个策士以外的职业提高10点策攻抗性\n战场中有2个策士以外的职业提高10点暴击\n战场中有3个策士以外的职业提高10%暴击伤害", "img": "zhugeliang_beidong1_guanxiaobaijia", "isShow": 1, "condition": "&", @@ -17589,7 +18261,7 @@ "seidNameImage": "&", "passivespineName": "&", "rangeUi": 0, - "passiveType": 0 + "passiveType": 3 }, { "id": 2202332, @@ -17687,6 +18359,342 @@ "rangeUi": 0, "passiveType": 0 }, + { + "id": 2301111, + "name": 0, + "info": "行动结束时使自身增益状态的持续时间增加1回合", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 15, + "type": 134, + "gainvalue": "1&1&1", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 2301121, + "name": 0, + "info": "行动结束时使自身增益状态的持续时间增加2回合", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 15, + "type": 134, + "gainvalue": "1&1&2", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 2301211, + "name": 0, + "info": "自身获得1个随机增益状态", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 7, + "type": 104, + "gainvalue": "1&1", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 2301221, + "name": 0, + "info": "自身获得2个随机增益状态", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 7, + "type": 104, + "gainvalue": "1&2", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 2301311, + "name": "弯弓饮羽1", + "info": "自身每拥有1个增益状态,物攻强度+5", + "img": "shamoke_beidong1_wangongyinyu", + "isShow": 1, + "condition": "304&1&1", + "aim": 0, + "percent": 100, + "node": 16, + "type": 200, + "gainvalue": "19&5&55", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 2301321, + "name": "弯弓饮羽2", + "info": "自身每拥有1个增益状态,物攻强度+5\n回合开始时,自身每拥有300点怒气,获得1个随机增益状态", + "img": "shamoke_beidong1_wangongyinyu", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 7, + "type": 999, + "gainvalue": "2301311&2301322", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 2301322, + "name": 0, + "info": "回合开始时,自身每拥有300点怒气,获得1个随机增益状态", + "img": 1, + "isShow": 0, + "condition": "204&300", + "aim": 0, + "percent": 100, + "node": 2, + "type": 104, + "gainvalue": "1&1", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "shamoke_wangongyinyu", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 2301331, + "name": "弯弓饮羽3", + "info": "自身每拥有1个增益状态,物攻强度+5\n回合开始时,自身每拥有300点怒气,获得1个随机增益状态\n自身拥有至少5个增益状态时,必定破格,暴击+30", + "img": "shamoke_beidong1_wangongyinyu", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 7, + "type": 999, + "gainvalue": "2301311&2301322&2301332", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 2301332, + "name": 0, + "info": "自身拥有至少5个增益状态时,必定破格", + "img": 1, + "isShow": 0, + "condition": "306&1&1&4&1", + "aim": 0, + "percent": 100, + "node": 7, + "type": 200, + "gainvalue": "9&999&999", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "shamoke_wangongyinyu", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 2301333, + "name": 0, + "info": "自身拥有至少5个增益状态时,暴击+30", + "img": 1, + "isShow": 0, + "condition": "306&1&1&4&1", + "aim": 0, + "percent": 100, + "node": 16, + "type": 200, + "gainvalue": "10&30&30", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "shamoke_wangongyinyu", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 2301411, + "name": "强弓劲弩1", + "info": "物攻强度+20", + "img": "gongbing_beidong2_qianggongjingnu", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 16, + "type": 200, + "gainvalue": "19&20&20", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 2301421, + "name": "强弓劲弩2", + "info": "物攻强度+20\n物攻抗性+20、策攻抗性+20", + "img": "gongbing_beidong2_qianggongjingnu", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 16, + "type": 200, + "gainvalue": "19&20&20&20&20&20&22&20&20", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 2301511, + "name": "喋血嗜攻", + "info": "主动攻击时,自身每拥有1个增益状态,偷取目标25点怒气", + "img": "shamoke_beidong3_diexueshigong", + "isShow": 1, + "condition": "304&1&1", + "aim": 1, + "percent": 100, + "node": 7, + "type": 210, + "gainvalue": "25&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "shamoke_diexueshigong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 2301611, + "name": "五溪蛮王", + "info": "我方武将攻击时,若攻击被敌方格挡,使格挡的减伤比例降低10%", + "img": "shamoke_jiban_wuximanwang", + "isShow": 1, + "condition": "711&1", + "aim": 1, + "percent": 100, + "node": 7, + "type": 200, + "gainvalue": "31&-10&-10", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "shamoke_wuximanwang", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 1 + }, { "id": 2401101, "name": 0, @@ -17882,7 +18890,7 @@ { "id": 2401221, "name": "饮血绞杀2", - "info": "若自身没有增益状态,自身获得2个随机增益状态\r\n若自身有3个以上的增益状态,所有增益状态的持续回合+1", + "info": "若自身没有增益状态,自身获得2个随机增益状态\n若自身有3个以上的增益状态,所有增益状态的持续回合+1", "img": 1, "isShow": 0, "condition": "&", @@ -17978,7 +18986,7 @@ { "id": 2401311, "name": "子午奇谋1", - "info": "每次攻击,自身获得1层%d2401311%d\r\n每有3层%d2401311%d,转化为%d2401312%d", + "info": "每次攻击,自身获得1层%d2401311%d\n每有3层%d2401311%d,转化为%d2401312%d", "img": "weiyan_beidong1_ziwuqimou", "isShow": 1, "condition": "&", @@ -18002,7 +19010,7 @@ { "id": 2401321, "name": "子午奇谋2", - "info": "每次攻击,自身获得1层%d2401311%d,暴击时额外获得1层%d2401311%d\r\n每有3层%d2401311%d,转化为%d2401312%d", + "info": "每次攻击,自身获得1层%d2401311%d,暴击时额外获得1层%d2401311%d\n每有3层%d2401311%d,转化为%d2401312%d", "img": "weiyan_beidong1_ziwuqimou", "isShow": 1, "condition": "&", @@ -18050,7 +19058,7 @@ { "id": 2401331, "name": "子午奇谋3", - "info": "每次攻击,自身获得1层%d2401311%d,暴击时额外获得2层%d2401311%d\r\n每有3层%d2401311%d,转化为%d2401312%d", + "info": "每次攻击,自身获得1层%d2401311%d,暴击时额外获得2层%d2401311%d\n每有3层%d2401311%d,转化为%d2401312%d", "img": "weiyan_beidong1_ziwuqimou", "isShow": 1, "condition": "&", @@ -18122,7 +19130,7 @@ { "id": 2401421, "name": "江湖豪侠2", - "info": "物攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n物攻抗性+20、策攻抗性+20", "img": "youxia_beidong2_jianghuhaoxia", "isShow": 1, "condition": "&", @@ -18146,7 +19154,7 @@ { "id": 2401511, "name": "快刀乱斩", - "info": "每回合开始时,怒气技段数随自身增益状态数量变化;基础为5段,每拥有1个增益状态多1段,最多增加5段\r\n每次攻击,自身获得25点怒气;暴击时额外获得25点怒气", + "info": "每回合开始时,怒气技段数随自身增益状态数量变化;基础为5段,每拥有1个增益状态多1段,最多增加5段\n每次攻击,自身获得25点怒气;暴击时额外获得25点怒气", "img": "weiyan_beidong3_kuaidaoluanzhan", "isShow": 1, "condition": "&", @@ -18650,7 +19658,7 @@ { "id": 2501411, "name": "锋锐无当1", - "info": "物攻强度+20\r\n攻击时无视目标5%的物防", + "info": "物攻强度+20\n攻击时无视目标5%的物防", "img": "qiangbing_beidong2_fengruiwudang", "isShow": 1, "condition": "&", @@ -18722,7 +19730,7 @@ { "id": 2501421, "name": "锋锐无当2", - "info": "物攻强度+20\r\n攻击时无视目标10%的物防\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n攻击时无视目标10%的物防\n物攻抗性+20、策攻抗性+20", "img": "qiangbing_beidong2_fengruiwudang", "isShow": 1, "condition": "&", @@ -18746,7 +19754,7 @@ { "id": 2501422, "name": "锋锐无当2", - "info": "物攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n物攻抗性+20、策攻抗性+20", "img": 1, "isShow": 0, "condition": "&", @@ -18914,7 +19922,7 @@ { "id": 2601321, "name": "动如脱兔2", - "info": "受到主动攻击时,获得1个随机增益\r\n自身每拥有1个增益状态,物攻抗性+5", + "info": "受到主动攻击时,获得1个随机增益\n自身每拥有1个增益状态,物攻抗性+5", "img": "guanyinping_beidong1_dongrutuotu", "isShow": 1, "condition": "709&2&1|602&0&1&2", @@ -18962,7 +19970,7 @@ { "id": 2601331, "name": "动如脱兔3", - "info": "受到主动攻击时,获得1个随机增益\r\n自身每拥有1个增益状态,物攻抗性和策攻抗性+5", + "info": "受到主动攻击时,获得1个随机增益\n自身每拥有1个增益状态,物攻抗性和策攻抗性+5", "img": "guanyinping_beidong1_dongrutuotu", "isShow": 1, "condition": "709&2&1|602&0&1&2", @@ -19034,7 +20042,7 @@ { "id": 2601421, "name": "冲锋陷阵2", - "info": "物攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n物攻抗性+20、策攻抗性+20", "img": "qibing_beidong2_chongfengxianzhen", "isShow": 1, "condition": "&", @@ -19322,7 +20330,7 @@ { "id": 2701321, "name": "西凉巾帼2", - "info": "主动攻击敌军时,每段伤害获得1个随机增益\r\n自身每拥有1个增益状态,物攻强度+3,最多10", + "info": "主动攻击敌军时,每段伤害获得1个随机增益\n自身每拥有1个增益状态,物攻强度+3,最多10", "img": "mayunlu_beidong1_xiliangjinguo", "isShow": 1, "condition": "&", @@ -19370,7 +20378,7 @@ { "id": 2701331, "name": "西凉巾帼3", - "info": "主动攻击敌军时,每段伤害获得1个随机增益\r\n自身每拥有1个增益状态,物攻强度+5,最多20", + "info": "主动攻击敌军时,每段伤害获得1个随机增益\n自身每拥有1个增益状态,物攻强度+5,最多20", "img": "mayunlu_beidong1_xiliangjinguo", "isShow": 1, "condition": "&", @@ -19442,7 +20450,7 @@ { "id": 2701421, "name": "冲锋陷阵2", - "info": "物攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n物攻抗性+20、策攻抗性+20", "img": "qibing_beidong2_chongfengxianzhen", "isShow": 1, "condition": "&", @@ -19658,7 +20666,7 @@ { "id": 2801421, "name": "救死扶伤2", - "info": "治疗效果+20%\r\n物攻抗性+20、策攻抗性+20", + "info": "治疗效果+20%\n物攻抗性+20、策攻抗性+20", "img": "yisheng_beidong2_jiusifushang", "isShow": 1, "condition": "&", @@ -19682,7 +20690,7 @@ { "id": 2801511, "name": "青罗伞盖", - "info": "使用技能治疗时,对目标施加%d30%d\r\n若技能目标有%d30%d,施加1个随机增益状态", + "info": "使用技能治疗时,对目标施加%d30%d\n若技能目标有%d30%d,施加1个随机增益状态", "img": "maliang_beidong3_qingluosangai", "isShow": 1, "condition": "300&2&30|605&1|600&3", @@ -19778,7 +20786,7 @@ { "id": 2901111, "name": 0, - "info": "自身获得%d2901111%d和%d1103%d\r\n使3格范围内怒气值最高的2名敌军扣除100点怒气", + "info": "自身获得%d2901111%d和%d1103%d\n使3格范围内怒气值最高的2名敌军扣除100点怒气", "img": 1, "isShow": 0, "condition": "&", @@ -19874,7 +20882,7 @@ { "id": 2901115, "name": 0, - "info": "物攻抗性+30\r\n格挡+10", + "info": "物攻抗性+30\n格挡+10", "img": 1, "isShow": 0, "condition": "&", @@ -19898,7 +20906,7 @@ { "id": 2901121, "name": 0, - "info": "自身获得%d2901112%d和%d1104%d\r\n使3格范围内怒气值最高的2名敌军扣除200点怒气", + "info": "自身获得%d2901112%d和%d1104%d\n使3格范围内怒气值最高的2名敌军扣除200点怒气", "img": 1, "isShow": 0, "condition": "&", @@ -19994,7 +21002,7 @@ { "id": 2901125, "name": 0, - "info": "物攻抗性+50\r\n格挡+20", + "info": "物攻抗性+50\n格挡+20", "img": 1, "isShow": 0, "condition": "&", @@ -20090,7 +21098,7 @@ { "id": 2901321, "name": "玄星兵甲2", - "info": "战斗开始时,自身获得%d2901111%d\r\n格挡+30\r\n格挡时所受的伤害降低10%", + "info": "战斗开始时,自身获得%d2901111%d\n格挡+30\n格挡时所受的伤害降低10%", "img": "zhangxingcai_beidong1_xuanxingbingjia", "isShow": 1, "condition": "&", @@ -20162,7 +21170,7 @@ { "id": 2901331, "name": "玄星兵甲3", - "info": "战斗开始时,自身获得%d2901112%d\r\n格挡+30\r\n格挡时所受的伤害降低10%\r\n释放怒气技时,获得%d2901311%d", + "info": "战斗开始时,自身获得%d2901112%d\n格挡+30\n格挡时所受的伤害降低10%\n释放怒气技时,获得%d2901311%d", "img": "zhangxingcai_beidong1_xuanxingbingjia", "isShow": 1, "condition": "&", @@ -20258,7 +21266,7 @@ { "id": 2901411, "name": "固若金汤1", - "info": "物攻抗性+20、策攻抗性+20\r\n格挡+10", + "info": "物攻抗性+20、策攻抗性+20\n格挡+10", "img": "bubing_beidong2_guruojintang", "isShow": 1, "condition": "&", @@ -20282,7 +21290,7 @@ { "id": 2901421, "name": "固若金汤2", - "info": "物攻抗性+40、策攻抗性+40\r\n格挡+20", + "info": "物攻抗性+40、策攻抗性+40\n格挡+20", "img": "bubing_beidong2_guruojintang", "isShow": 1, "condition": "&", @@ -20306,7 +21314,7 @@ { "id": 2901511, "name": "斗转星移", - "info": "受到敌军主动攻击时,偷取其25点怒气\r\n自身每拥有100点怒气,反击伤害+5%", + "info": "受到敌军主动攻击时,偷取其25点怒气\n自身每拥有100点怒气,反击伤害+5%", "img": "zhangxingcai_beidong3_douzhuanxingyi", "isShow": 1, "condition": "&", @@ -20378,7 +21386,7 @@ { "id": 2901611, "name": "星光溢彩", - "info": "%d2%d\r\n我方武将物攻抗性、策攻抗性+30、格挡+20", + "info": "%d2%d\n我方武将物攻抗性、策攻抗性+30、格挡+20", "img": "zhangxingcai_jiban_xingguangyicai", "isShow": 1, "condition": "&", @@ -20397,12 +21405,12 @@ "seidNameImage": "&", "passivespineName": "&", "rangeUi": 0, - "passiveType": 1 + "passiveType": 4 }, { "id": 2902111, "name": 0, - "info": "自身获得%d2901111%d和%d1103%d\r\n降低范围内敌军100点怒气\r\n每覆盖1名敌军,自身获得25点怒气", + "info": "自身获得%d2901111%d和%d1103%d\n降低范围内敌军100点怒气\n每覆盖1名敌军,自身获得25点怒气", "img": 1, "isShow": 0, "condition": "&", @@ -20450,7 +21458,7 @@ { "id": 2902121, "name": 0, - "info": "自身获得%d2901111%d和%d1104%d\r\n降低范围内敌军200点怒气\r\n每覆盖1名敌军,自身获得50点怒气", + "info": "自身获得%d2901111%d和%d1104%d\n降低范围内敌军200点怒气\n每覆盖1名敌军,自身获得50点怒气", "img": 1, "isShow": 0, "condition": "&", @@ -20498,7 +21506,7 @@ { "id": 2902511, "name": "真·斗转星移", - "info": "受到敌军主动攻击时,偷取其50点怒气\r\n自身每拥有100点怒气,反击伤害+5%\r\n回合开始时,自身每拥有100点怒气,恢复自身最大生命值1%的生命值", + "info": "受到敌军主动攻击时,偷取其50点怒气\n自身每拥有100点怒气,反击伤害+5%\n回合开始时,自身每拥有100点怒气,恢复自身最大生命值1%的生命值", "img": "zhangxingcai_beidong3_douzhuanxingyi", "isShow": 1, "condition": "&", @@ -20666,7 +21674,7 @@ { "id": 3001321, "name": "翎箭雕弓2", - "info": "主动攻击时,施加%d13%d\r\n攻击流血目标时,随机获得1个增益状态", + "info": "主动攻击时,施加%d13%d\n攻击流血目标时,随机获得1个增益状态", "img": "wangping_beidong1_lingjiandiaogong", "isShow": 1, "condition": "&", @@ -20714,7 +21722,7 @@ { "id": 3001331, "name": "翎箭雕弓3", - "info": "主动攻击时,施加%d13%d\r\n攻击流血目标时,随机获得1个增益状态\r\n自身每拥有1个增益状态,物攻强度+5,最多20", + "info": "主动攻击时,施加%d13%d\n攻击流血目标时,随机获得1个增益状态\n自身每拥有1个增益状态,物攻强度+5,最多20", "img": "wangping_beidong1_lingjiandiaogong", "isShow": 1, "condition": "&", @@ -20786,7 +21794,7 @@ { "id": 3001421, "name": "强弓劲弩2", - "info": "物攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n物攻抗性+20、策攻抗性+20", "img": "gongbing_beidong2_qianggongjingnu", "isShow": 1, "condition": "&", @@ -20882,7 +21890,7 @@ { "id": 3101321, "name": "图谋赞画2", - "info": "主动攻击时,自身获得1个随机增益状态\r\n使用技能攻击时,对敌军施加1个随机减益状态", + "info": "主动攻击时,自身获得1个随机增益状态\n使用技能攻击时,对敌军施加1个随机减益状态", "img": "sunqian_beidong1_tumouzanhua", "isShow": 1, "condition": "&", @@ -20930,7 +21938,7 @@ { "id": 3101331, "name": "图谋赞画3", - "info": "主动攻击时,自身获得1个随机增益状态\r\n使用技能攻击时,对敌军施加2个随机减益状态", + "info": "主动攻击时,自身获得1个随机增益状态\n使用技能攻击时,对敌军施加2个随机减益状态", "img": "sunqian_beidong1_tumouzanhua", "isShow": 1, "condition": "&", @@ -21002,7 +22010,7 @@ { "id": 3101421, "name": "运筹帷幄2", - "info": "策攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "策攻强度+20\n物攻抗性+20、策攻抗性+20", "img": "ceshi_beidong2_yunchouweiwo", "isShow": 1, "condition": "&", @@ -21074,7 +22082,7 @@ { "id": 3201111, "name": "金汤盾阵1", - "info": "自身获得%d2003%d\r\n对范围内敌军施加%d2511%d\r\n对范围内敌军施加1层%d10%d", + "info": "自身获得%d2003%d\n对范围内敌军施加%d2511%d\n对范围内敌军施加1层%d10%d", "img": 1, "isShow": 0, "condition": "&", @@ -21129,8 +22137,8 @@ "aim": 1, "percent": 100, "node": 7, - "type": 107, - "gainvalue": "2024&0&2511", + "type": 100, + "gainvalue": "2511&", "times_turn": 0, "times_battle": 0, "cd": 0, @@ -21153,8 +22161,8 @@ "aim": 1, "percent": 100, "node": 7, - "type": 107, - "gainvalue": "2024&0&10", + "type": 100, + "gainvalue": "10&", "times_turn": 0, "times_battle": 0, "cd": 0, @@ -21170,7 +22178,7 @@ { "id": 3201121, "name": "金汤盾阵2", - "info": "自身获得%d2004%d\r\n对范围内敌军施加%d2512%d\r\n对范围内敌军施加3层%d10%d", + "info": "自身获得%d2004%d\n对范围内敌军施加%d2512%d\n对范围内敌军施加3层%d10%d", "img": 1, "isShow": 0, "condition": "&", @@ -21178,7 +22186,7 @@ "percent": 100, "node": 7, "type": 999, - "gainvalue": "3201122&3201123&3201124&3201124&3201124", + "gainvalue": "3201122&3201123&3201124", "times_turn": 0, "times_battle": 0, "cd": 0, @@ -21225,8 +22233,8 @@ "aim": 1, "percent": 100, "node": 7, - "type": 107, - "gainvalue": "2040&0&2512", + "type": 100, + "gainvalue": "2512&", "times_turn": 0, "times_battle": 0, "cd": 0, @@ -21249,8 +22257,8 @@ "aim": 1, "percent": 100, "node": 7, - "type": 107, - "gainvalue": "2040&0&10", + "type": 116, + "gainvalue": "3&10", "times_turn": 0, "times_battle": 0, "cd": 0, @@ -21386,7 +22394,7 @@ { "id": 3201411, "name": "固若金汤1", - "info": "物攻抗性+20、策攻抗性+20\r\n格挡+10", + "info": "物攻抗性+20、策攻抗性+20\n格挡+10", "img": "bubing_beidong2_guruojintang", "isShow": 1, "condition": "&", @@ -21410,7 +22418,7 @@ { "id": 3201421, "name": "固若金汤2", - "info": "物攻抗性+40、策攻抗性+40\r\n格挡+20", + "info": "物攻抗性+40、策攻抗性+40\n格挡+20", "img": "bubing_beidong2_guruojintang", "isShow": 1, "condition": "&", @@ -21458,7 +22466,7 @@ { "id": 3201611, "name": "江东铁壁", - "info": "%d2%d\r\n我方武将物攻抗性和策攻抗性+10\r\n我方武将受到拥有%d10%d状态的敌军攻击时,物攻抗性和策攻抗性+20", + "info": "%d2%d\n我方武将物攻抗性和策攻抗性+10\n我方武将受到拥有%d10%d状态的敌军攻击时,物攻抗性和策攻抗性+20", "img": "zhoutai_jiban_jiangdongtiebi", "isShow": 1, "condition": "&", @@ -21477,7 +22485,7 @@ "seidNameImage": "&", "passivespineName": "&", "rangeUi": 0, - "passiveType": 1 + "passiveType": 4 }, { "id": 3201612, @@ -21722,7 +22730,7 @@ { "id": 3301421, "name": "冲锋陷阵2", - "info": "物攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n物攻抗性+20、策攻抗性+20", "img": "qibing_beidong2_chongfengxianzhen", "isShow": 1, "condition": "&", @@ -21986,7 +22994,7 @@ { "id": 3302311, "name": "真·所向披靡1", - "info": "本回合移动至少5格,普攻或回合技攻击时,使目标额外获得3层%d10%d\r\n反击时对目标施加1层%d10%d", + "info": "本回合移动至少5格,普攻或回合技攻击时,使目标额外获得3层%d10%d\n反击时对目标施加1层%d10%d", "img": "sunce_beidong1_suoxiangpimi", "isShow": 1, "condition": "&", @@ -22058,7 +23066,7 @@ { "id": 3302321, "name": "真·所向披靡2", - "info": "本回合移动至少3格,普攻或回合技攻击时,使目标额外获得3层%d10%d\r\n反击时对目标施加1层%d10%d", + "info": "本回合移动至少3格,普攻或回合技攻击时,使目标额外获得3层%d10%d\n反击时对目标施加1层%d10%d", "img": "sunce_beidong1_suoxiangpimi", "isShow": 1, "condition": "&", @@ -22130,7 +23138,7 @@ { "id": 3302331, "name": "真·所向披靡3", - "info": "本回合每移动1格,普攻或回合技攻击时,对目标施加1层%d10%d\r\n反击时对目标施加2层%d10%d", + "info": "本回合每移动1格,普攻或回合技攻击时,对目标施加1层%d10%d\n反击时对目标施加2层%d10%d", "img": "sunce_beidong1_suoxiangpimi", "isShow": 1, "condition": "&", @@ -22322,7 +23330,7 @@ { "id": 3401321, "name": "灰飞烟灭2", - "info": "攻击时,若目标没有%d10%d,施加3层%d10%d\r\n攻击时,目标每有1层%d10%d,额外施加1层%d10%d", + "info": "攻击时,若目标没有%d10%d,施加3层%d10%d\n攻击时,目标每有1层%d10%d,额外施加1层%d10%d", "img": "zhouyu_beidong1_huifeiyanmie", "isShow": 1, "condition": "&", @@ -22370,7 +23378,7 @@ { "id": 3401331, "name": "灰飞烟灭3", - "info": "攻击时,若目标没有%d10%d,施加3层%d10%d\r\n攻击时,目标每有1层%d10%d,额外施加1层%d10%d\r\n攻击有%d10%d的敌军时,策攻强度+20", + "info": "攻击时,若目标没有%d10%d,施加3层%d10%d\n攻击时,目标每有1层%d10%d,额外施加1层%d10%d\n攻击有%d10%d的敌军时,策攻强度+20", "img": "zhouyu_beidong1_huifeiyanmie", "isShow": 1, "condition": "&", @@ -22442,7 +23450,7 @@ { "id": 3401421, "name": "运筹帷幄2", - "info": "策攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "策攻强度+20\n物攻抗性+20、策攻抗性+20", "img": "ceshi_beidong2_yunchouweiwo", "isShow": 1, "condition": "&", @@ -22538,7 +23546,7 @@ { "id": 3401611, "name": "火烧赤壁", - "info": "%d1%d我方武将攻击有%d10%d的敌军时,物攻强度和策攻强度+60\r\n我方武将攻击有至少3层%d10%d的敌军时,吸血+20%\r\n我方武将攻击有至少5层%d10%d的敌军时,暴击+30\r\n我方武将攻击有至少7层%d10%d的敌军时,暴击伤害+30%\r\n我方武将击杀有10层%d10%d的敌军时,额外获得200点怒气", + "info": "%d1%d我方武将攻击有%d10%d的敌军时,物攻强度和策攻强度+60\n我方武将攻击有至少3层%d10%d的敌军时,吸血+20%\n我方武将攻击有至少5层%d10%d的敌军时,暴击+30\n我方武将攻击有至少7层%d10%d的敌军时,暴击伤害+30%\n我方武将击杀有10层%d10%d的敌军时,额外获得200点怒气", "img": "zhouyu_jiban_huoshaochibi", "isShow": 1, "condition": "&", @@ -22557,7 +23565,7 @@ "seidNameImage": "&", "passivespineName": "&", "rangeUi": 0, - "passiveType": 1 + "passiveType": 3 }, { "id": 3401612, @@ -22682,7 +23690,7 @@ { "id": 3402111, "name": "真·焚尽天下1", - "info": "目标有%d10%d状态时,额外造成15%的策略伤害\r\n主目标每层%d10%d,额外造成5%的策略伤害", + "info": "目标有%d10%d状态时,额外造成15%的策略伤害\n主目标每层%d10%d,额外造成5%的策略伤害", "img": 1, "isShow": 0, "condition": "&", @@ -22754,7 +23762,7 @@ { "id": 3402121, "name": "真·焚尽天下2", - "info": "目标有%d10%d状态时,额外造成30%的策略伤害\r\n主目标每层%d10%d,额外造成10%的策略伤害", + "info": "目标有%d10%d状态时,额外造成30%的策略伤害\n主目标每层%d10%d,额外造成10%的策略伤害", "img": 1, "isShow": 0, "condition": "&", @@ -23114,7 +24122,7 @@ { "id": 3501321, "name": "入肉三分2", - "info": "战斗开始时,自身获得3层%d3501111%d\r\n主动攻击与【墨守无矩】生效时,施加等同于%d3501111%d层数的%d10%d", + "info": "战斗开始时,自身获得3层%d3501111%d\n主动攻击与【墨守无矩】生效时,施加等同于%d3501111%d层数的%d10%d", "img": "taishici_beidong1_rurousanfen", "isShow": 1, "condition": "&", @@ -23162,7 +24170,7 @@ { "id": 3501331, "name": "入肉三分3", - "info": "战斗开始时,自身获得3层%d3501111%d\r\n主动攻击与【墨守无矩】生效时,施加等同于%d3501111%d层数的%d10%d\r\n受到致命伤害时,自身每有1层%d3501111%d恢复5%的生命值,随后清除%d3501111%d并获得%d3501121%d", + "info": "战斗开始时,自身获得3层%d3501111%d\n主动攻击与【墨守无矩】生效时,施加等同于%d3501111%d层数的%d10%d\n受到致命伤害时,自身每有1层%d3501111%d恢复5%的生命值,随后清除%d3501111%d并获得%d3501121%d", "img": "taishici_beidong1_rurousanfen", "isShow": 1, "condition": "&", @@ -23258,7 +24266,7 @@ { "id": 3501421, "name": "江湖豪侠2", - "info": "物攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n物攻抗性+20、策攻抗性+20", "img": "youxia_beidong2_jianghuhaoxia", "isShow": 1, "condition": "&", @@ -23426,7 +24434,7 @@ { "id": 3502311, "name": "真·入肉三分1", - "info": "战斗开始时,自身获得3层%d3501111%d\r\n自身拥有%d3501111%d时,物攻强度+5", + "info": "战斗开始时,自身获得3层%d3501111%d\n自身拥有%d3501111%d时,物攻强度+5", "img": "taishici_beidong1_rurousanfen", "isShow": 1, "condition": "&", @@ -23498,7 +24506,7 @@ { "id": 3502321, "name": "真·入肉三分2", - "info": "战斗开始时,自身获得3层%d3501111%d\r\n主动攻击与【墨守无矩】生效时,施加等同于%d3501111%d层数的%d10%d\r\n自身拥有%d3501111%d时,物攻强度+10", + "info": "战斗开始时,自身获得3层%d3501111%d\n主动攻击与【墨守无矩】生效时,施加等同于%d3501111%d层数的%d10%d\n自身拥有%d3501111%d时,物攻强度+10", "img": "taishici_beidong1_rurousanfen", "isShow": 1, "condition": "&", @@ -23570,7 +24578,7 @@ { "id": 3502331, "name": "真·入肉三分3", - "info": "战斗开始时,自身获得3层%d3501111%d\r\n主动攻击与【墨守无矩】生效时,施加等同于%d3501111%d层数的%d10%d\r\n受到致命伤害时,自身每有1层%d3501111%d恢复5%的生命值,随后清除%d3501111%d并获得%d3501121%d\r\n自身拥有%d3501111%d时,物攻强度+20", + "info": "战斗开始时,自身获得3层%d3501111%d\n主动攻击与【墨守无矩】生效时,施加等同于%d3501111%d层数的%d10%d\n受到致命伤害时,自身每有1层%d3501111%d恢复5%的生命值,随后清除%d3501111%d并获得%d3501121%d\n自身拥有%d3501111%d时,物攻强度+20", "img": "taishici_beidong1_rurousanfen", "isShow": 1, "condition": "&", @@ -23858,7 +24866,7 @@ { "id": 3601321, "name": "坐断东南2", - "info": "使用怒气技时,获得%d3601311%d\r\n拥有护盾状态时,格挡+10", + "info": "使用怒气技时,获得%d3601311%d\n拥有护盾状态时,格挡+10", "img": "sunquan_beidong1_zuoduandongnan", "isShow": 1, "condition": "709&3&3", @@ -23906,7 +24914,7 @@ { "id": 3601331, "name": "坐断东南3", - "info": "使用怒气技时,获得%d3601311%d\r\n拥有护盾状态时,格挡+20", + "info": "使用怒气技时,获得%d3601311%d\n拥有护盾状态时,格挡+20", "img": "sunquan_beidong1_zuoduandongnan", "isShow": 1, "condition": "709&3&3", @@ -23954,7 +24962,7 @@ { "id": 3601411, "name": "固若金汤1", - "info": "物攻抗性+20、策攻抗性+20\r\n格挡+10", + "info": "物攻抗性+20、策攻抗性+20\n格挡+10", "img": "bubing_beidong2_guruojintang", "isShow": 1, "condition": "&", @@ -23978,7 +24986,7 @@ { "id": 3601421, "name": "固若金汤2", - "info": "物攻抗性+40、策攻抗性+40\r\n格挡+20", + "info": "物攻抗性+40、策攻抗性+40\n格挡+20", "img": "bubing_beidong2_guruojintang", "isShow": 1, "condition": "&", @@ -24026,7 +25034,7 @@ { "id": 3601611, "name": "固守江东", - "info": "%d2%d\r\n我方武将物攻抗性和策攻抗性+10\r\n我方吴国武将物攻抗性和策攻抗性+10", + "info": "%d2%d\n我方武将物攻抗性和策攻抗性+10\n我方吴国武将物攻抗性和策攻抗性+10", "img": "sunquan_jiban_gushoujiangdong", "isShow": 1, "condition": "&", @@ -24045,7 +25053,7 @@ "seidNameImage": "&", "passivespineName": "&", "rangeUi": 0, - "passiveType": 1 + "passiveType": 4 }, { "id": 3601612, @@ -24218,7 +25226,7 @@ { "id": 3701321, "name": "侵略如火2", - "info": "主动攻击时,若主目标有%d10%d,则对非主目标施加1层%d10%d\r\n主动攻击时,若主目标有%d10%d,则物攻强度+10", + "info": "主动攻击时,若主目标有%d10%d,则对非主目标施加1层%d10%d\n主动攻击时,若主目标有%d10%d,则物攻强度+10", "img": "ganning_beidong1_qinlveruhuo", "isShow": 1, "condition": "&", @@ -24266,7 +25274,7 @@ { "id": 3701331, "name": "侵略如火3", - "info": "主动攻击时,若主目标有%d10%d,则对非主目标施加1层%d10%d\r\n主动攻击时,若主目标有%d10%d,则物攻强度+10\r\n主动攻击时,若非主目标有%d10%d,则暴击+5", + "info": "主动攻击时,若主目标有%d10%d,则对非主目标施加1层%d10%d\n主动攻击时,若主目标有%d10%d,则物攻强度+10\n主动攻击时,若非主目标有%d10%d,则暴击+5", "img": "ganning_beidong1_qinlveruhuo", "isShow": 1, "condition": "&", @@ -24314,7 +25322,7 @@ { "id": 3701411, "name": "锋锐无当1", - "info": "物攻强度+20\r\n攻击时无视目标5%的物防", + "info": "物攻强度+20\n攻击时无视目标5%的物防", "img": "qiangbing_beidong2_fengruiwudang", "isShow": 1, "condition": "&", @@ -24386,7 +25394,7 @@ { "id": 3701421, "name": "锋锐无当2", - "info": "物攻强度+20\r\n攻击时无视目标10%的物防\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n攻击时无视目标10%的物防\n物攻抗性+20、策攻抗性+20", "img": "qiangbing_beidong2_fengruiwudang", "isShow": 1, "condition": "&", @@ -24410,7 +25418,7 @@ { "id": 3701422, "name": "锋锐无当2", - "info": "物攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n物攻抗性+20、策攻抗性+20", "img": 1, "isShow": 0, "condition": "&", @@ -24458,7 +25466,7 @@ { "id": 3701511, "name": "折冲御侮", - "info": "生命值高于50%时,反击%d10%d敌军时,反击伤害+20%\r\n生命值低于50%时,反击%d10%d敌军时,吸血+10%", + "info": "生命值高于50%时,反击%d10%d敌军时,反击伤害+20%\n生命值低于50%时,反击%d10%d敌军时,吸血+10%", "img": "ganning_beidong3_zhechongyuwu", "isShow": 1, "condition": "203&1&1&50", @@ -24650,7 +25658,7 @@ { "id": 3801321, "name": "永劫同心2", - "info": "主动攻击及反击时,对目标施加%d3801211%d\r\n回合开始时,对场上所有带有%d3801211%d的敌军造成一次15%的物理伤害", + "info": "主动攻击及反击时,对目标施加%d3801211%d\n回合开始时,对场上所有带有%d3801211%d的敌军造成一次15%的物理伤害", "img": "sunshangxiang_beidong1_yongjietongxin", "isShow": 1, "condition": "&", @@ -24698,7 +25706,7 @@ { "id": 3801331, "name": "永劫同心3", - "info": "主动攻击及反击时,对目标施加%d3801211%d\r\n回合开始时,对场上所有带有%d3801211%d的敌军造成一次30%的物理伤害", + "info": "主动攻击及反击时,对目标施加%d3801211%d\n回合开始时,对场上所有带有%d3801211%d的敌军造成一次30%的物理伤害", "img": "sunshangxiang_beidong1_yongjietongxin", "isShow": 1, "condition": "804&2", @@ -24770,7 +25778,7 @@ { "id": 3801421, "name": "强弓劲弩2", - "info": "物攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n物攻抗性+20、策攻抗性+20", "img": "gongbing_beidong2_qianggongjingnu", "isShow": 1, "condition": "&", @@ -24794,7 +25802,7 @@ { "id": 3801511, "name": "蚀骨铭心", - "info": "战斗开始时,对7格范围内的随机2名敌军施加%d3801211%d\r\n我方女性武将主动攻击和反击时,对目标施加%d3801211%d", + "info": "战斗开始时,对7格范围内的随机2名敌军施加%d3801211%d\n我方女性武将主动攻击和反击时,对目标施加%d3801211%d", "img": "sunshangxiang_beidong3_shigumingxin", "isShow": 1, "condition": "&", @@ -24909,12 +25917,12 @@ "seidNameImage": "sunshangxiang_juesexiaoji", "passivespineName": "&", "rangeUi": 0, - "passiveType": 1 + "passiveType": 3 }, { "id": 3802311, "name": "真·永劫同心1", - "info": "主动攻击及反击时,对目标施加%d3801211%d\r\n自身攻击具有%d3801211%d的目标时,物攻强度+5\r\n自身攻击拥有%d3801211%d的敌军时,有10%的概率施加【定身】", + "info": "主动攻击及反击时,对目标施加%d3801211%d\n自身攻击具有%d3801211%d的目标时,物攻强度+5\n自身攻击拥有%d3801211%d的敌军时,有10%的概率施加【定身】", "img": "sunshangxiang_beidong1_yongjietongxin", "isShow": 1, "condition": "&", @@ -25010,7 +26018,7 @@ { "id": 3802321, "name": "真·永劫同心2", - "info": "主动攻击及反击时,对目标施加%d3801211%d\r\n回合开始时,对场上所有带有%d3801211%d的敌军造成一次15%的物理伤害\r\n自身攻击具有%d3801211%d的目标时,物攻强度+15\r\n自身攻击拥有%d3801211%d的敌军时,有15%的概率施加%d26%d", + "info": "主动攻击及反击时,对目标施加%d3801211%d\n回合开始时,对场上所有带有%d3801211%d的敌军造成一次15%的物理伤害\n自身攻击具有%d3801211%d的目标时,物攻强度+15\n自身攻击拥有%d3801211%d的敌军时,有15%的概率施加%d26%d", "img": "sunshangxiang_beidong1_yongjietongxin", "isShow": 1, "condition": "&", @@ -25106,7 +26114,7 @@ { "id": 3802331, "name": "真·永劫同心3", - "info": "主动攻击及反击时,对目标施加%d3801211%d\r\n回合开始时,对场上所有带有%d3801211%d的敌军造成一次30%的物理伤害\r\n自身攻击具有%d3801211%d的目标时,物攻强度+30\r\n自身攻击拥有%d3801211%d的敌军时,有20%的概率施加%d26%d", + "info": "主动攻击及反击时,对目标施加%d3801211%d\n回合开始时,对场上所有带有%d3801211%d的敌军造成一次30%的物理伤害\n自身攻击具有%d3801211%d的目标时,物攻强度+30\n自身攻击拥有%d3801211%d的敌军时,有20%的概率施加%d26%d", "img": "sunshangxiang_beidong1_yongjietongxin", "isShow": 1, "condition": "804&2", @@ -25202,7 +26210,7 @@ { "id": 3802611, "name": "真·绝色枭姬", - "info": "%d1%d我方武将主动攻击和反击带有%d3801211%d的敌军时,物攻强度和策攻强度+80\r\n我方武将受到带有%d3801211%d攻击时,物攻抗性和策攻抗性+20", + "info": "%d1%d我方武将主动攻击和反击带有%d3801211%d的敌军时,物攻强度和策攻强度+80\n我方武将受到带有%d3801211%d攻击时,物攻抗性和策攻抗性+20", "img": "sunshangxiang_jiban_juesexiaoji", "isShow": 1, "condition": "&", @@ -25221,7 +26229,7 @@ "seidNameImage": "sunshangxiang_zhenjuesexiaoji", "passivespineName": "&", "rangeUi": 0, - "passiveType": 1 + "passiveType": 3 }, { "id": 3802612, @@ -25325,7 +26333,7 @@ "info": "攻击时施加1层%d10%d", "img": 1, "isShow": 0, - "condition": "605&2", + "condition": "605&2|604&0&3", "aim": 1, "percent": 100, "node": 7, @@ -25418,7 +26426,7 @@ { "id": 3901311, "name": "舐犊之情1", - "info": "场上每有一名带有%d10%d的敌军,治疗效果+3,最多18", + "info": "场上每有一名带有%d10%d的敌军,治疗效果+3%,最多18%", "img": "wuguotai_beidong1_shiduzhiqing", "isShow": 1, "condition": "400&999&10&0", @@ -25442,7 +26450,7 @@ { "id": 3901321, "name": "舐犊之情2", - "info": "场上每有一名带有%d10%d的敌军,治疗效果+4,最多24", + "info": "场上每有一名带有%d10%d的敌军,治疗效果+4%,最多24%", "img": "wuguotai_beidong1_shiduzhiqing", "isShow": 1, "condition": "400&999&10&0", @@ -25466,7 +26474,7 @@ { "id": 3901331, "name": "舐犊之情3", - "info": "场上每有一名带有%d10%d的敌军,治疗效果+5,最多30", + "info": "场上每有一名带有%d10%d的敌军,治疗效果+5%,最多30%", "img": "wuguotai_beidong1_shiduzhiqing", "isShow": 1, "condition": "400&999&10&0", @@ -25514,7 +26522,7 @@ { "id": 3901421, "name": "救死扶伤2", - "info": "治疗效果+20%\r\n物攻抗性+20、策攻抗性+20", + "info": "治疗效果+20%\n物攻抗性+20、策攻抗性+20", "img": "yisheng_beidong2_jiusifushang", "isShow": 1, "condition": "&", @@ -25706,7 +26714,7 @@ { "id": 4001111, "name": "花舞瞬闪1", - "info": "转移到自身2格范围内的指定位置\r\n施加【迅捷1】", + "info": "转移到自身2格范围内的指定位置\n施加【迅捷1】", "img": 1, "isShow": 0, "condition": "&", @@ -25778,7 +26786,7 @@ { "id": 4001121, "name": "花舞瞬闪2", - "info": "转移到自身2格范围内的指定位置\r\n施加【迅捷1】", + "info": "转移到自身2格范围内的指定位置\n施加【迅捷1】", "img": 1, "isShow": 0, "condition": "&", @@ -25946,7 +26954,7 @@ { "id": 4001311, "name": "花落归尘1", - "info": "使用技能治疗时\r\n治疗%d4001211%d目标时,治疗效果+10%", + "info": "使用技能治疗时\n治疗%d4001211%d目标时,治疗效果+10%", "img": "xiaoqiao_beidong1_hualuoguichen", "isShow": 1, "condition": "602&1&2|300&2&4001211", @@ -25970,7 +26978,7 @@ { "id": 4001321, "name": "花落归尘2", - "info": "使用技能治疗时\r\n治疗%d4001211%d目标时,治疗效果+10%\r\n若目标生命值低于30%,施加%d4001211%d", + "info": "使用技能治疗时\n治疗%d4001211%d目标时,治疗效果+10%\n若目标生命值低于30%,施加%d4001211%d", "img": "xiaoqiao_beidong1_hualuoguichen", "isShow": 1, "condition": "&", @@ -26018,7 +27026,7 @@ { "id": 4001331, "name": "花落归尘3", - "info": "使用技能治疗时\r\n治疗%d4001211%d目标时,治疗效果+20%\r\n若目标生命值低于30%,施加%d4001211%d", + "info": "使用技能治疗时\n治疗%d4001211%d目标时,治疗效果+20%\n若目标生命值低于30%,施加%d4001211%d", "img": "xiaoqiao_beidong1_hualuoguichen", "isShow": 1, "condition": "&", @@ -26090,7 +27098,7 @@ { "id": 4001421, "name": "救死扶伤2", - "info": "治疗效果+20%\r\n物攻抗性+20、策攻抗性+20", + "info": "治疗效果+20%\n物攻抗性+20、策攻抗性+20", "img": "yisheng_beidong2_jiusifushang", "isShow": 1, "condition": "&", @@ -26210,7 +27218,7 @@ { "id": 4101211, "name": "乱花鞭影1", - "info": "清除目标2个随机增益状态\r\n若目标没有增益状态,额外造成30%的策略伤害", + "info": "清除目标2个随机增益状态\n若目标没有增益状态,额外造成30%的策略伤害", "img": 1, "isShow": 0, "condition": "&", @@ -26282,7 +27290,7 @@ { "id": 4101221, "name": "乱花鞭影2", - "info": "清除目标3个随机增益状态\r\n若目标没有增益状态,额外造成50%的策略伤害", + "info": "清除目标3个随机增益状态\n若目标没有增益状态,额外造成50%的策略伤害", "img": 1, "isShow": 0, "condition": "&", @@ -26378,7 +27386,7 @@ { "id": 4101321, "name": "烂漫天香2", - "info": "攻击时,目标每拥有1个护盾状态,策攻强度+5,最多15\r\n攻击时,目标每拥有1个增益状态,暴击+2,最多10", + "info": "攻击时,目标每拥有1个护盾状态,策攻强度+5,最多15\n攻击时,目标每拥有1个增益状态,暴击+2,最多10", "img": "daqiao_beidong1_lanmantianxiang", "isShow": 1, "condition": "&", @@ -26426,7 +27434,7 @@ { "id": 4101331, "name": "烂漫天香3", - "info": "攻击时,目标每拥有1个护盾状态,策攻强度+10,最多30\r\n攻击时,目标每拥有1个增益状态,暴击+4,最多20", + "info": "攻击时,目标每拥有1个护盾状态,策攻强度+10,最多30\n攻击时,目标每拥有1个增益状态,暴击+4,最多20", "img": "daqiao_beidong1_lanmantianxiang", "isShow": 1, "condition": "&", @@ -26522,7 +27530,7 @@ { "id": 4101421, "name": "运筹帷幄2", - "info": "策攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "策攻强度+20\n物攻抗性+20、策攻抗性+20", "img": "ceshi_beidong2_yunchouweiwo", "isShow": 1, "condition": "&", @@ -27626,7 +28634,7 @@ { "id": 4102611, "name": "真·蝶舞飞花", - "info": "自身怒气技的攻击范围+2\r\n自身策攻强度+20", + "info": "自身怒气技的攻击范围+2\n自身策攻强度+20", "img": "daqiao_jiban_diewufeihua", "isShow": 1, "condition": "&", @@ -27938,7 +28946,7 @@ { "id": 4201311, "name": "流火凤轮1", - "info": "普通攻击射程+1\r\n普通攻击时,自身获得1层%d4200011%d,若目标与自身之间至少间隔2格,额外获得1层%d4200011%d", + "info": "普通攻击射程+1\n普通攻击时,自身获得1层%d4200011%d,若目标与自身之间至少间隔2格,额外获得1层%d4200011%d", "img": "bulianshi_beidong1_liuhuofenglun", "isShow": 1, "condition": "&", @@ -28034,7 +29042,7 @@ { "id": 4201321, "name": "流火凤轮2", - "info": "普通攻击射程+1\r\n普通攻击时,自身获得1层%d4200011%d,若目标与自身之间至少间隔2格,额外获得2层%d4200011%d", + "info": "普通攻击射程+1\n普通攻击时,自身获得1层%d4200011%d,若目标与自身之间至少间隔2格,额外获得2层%d4200011%d", "img": "bulianshi_beidong1_liuhuofenglun", "isShow": 1, "condition": "&", @@ -28082,7 +29090,7 @@ { "id": 4201331, "name": "流火凤轮3", - "info": "普通攻击射程+1\r\n普通攻击时,自身获得1层%d4200011%d,与目标之间每间隔1格,额外获得1层%d4200011%d", + "info": "普通攻击射程+1\n普通攻击时,自身获得1层%d4200011%d,与目标之间每间隔1格,额外获得1层%d4200011%d", "img": "bulianshi_beidong1_liuhuofenglun", "isShow": 1, "condition": "&", @@ -28154,7 +29162,7 @@ { "id": 4201421, "name": "强弓劲弩2", - "info": "物攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n物攻抗性+20、策攻抗性+20", "img": "gongbing_beidong2_qianggongjingnu", "isShow": 1, "condition": "&", @@ -28178,7 +29186,7 @@ { "id": 4201511, "name": "名门雅姿", - "info": "每层%d4200011%d提高自身物攻强度和物攻抗性+3\r\n击杀敌军时,敌军每拥有1层%d10%d,自身获得1层%d4200011%d", + "info": "每层%d4200011%d提高自身物攻强度和物攻抗性+3\n击杀敌军时,敌军每拥有1层%d10%d,自身获得1层%d4200011%d", "img": "bulianshi_beidong3_mingmenyazi", "isShow": 1, "condition": "&", @@ -28322,7 +29330,7 @@ { "id": 4301121, "name": 0, - "info": "自身获得%d4301112%d\r\n若自身拥有3层%d4301112%d,释放怒气技时暴击+10", + "info": "自身获得%d4301112%d\n若自身拥有3层%d4301112%d,释放怒气技时暴击+10", "img": 1, "isShow": 0, "condition": "&", @@ -28443,7 +29451,7 @@ "id": 4301311, "name": "荷檐吐奇1", "info": "自身怒气获取效率+50%", - "img": "lusu_beidong1_hezhantuqi", + "img": "lusu_beidong1_heyantuqi", "isShow": 1, "condition": "&", "aim": 0, @@ -28466,8 +29474,8 @@ { "id": 4301321, "name": "荷檐吐奇2", - "info": "自身怒气获取效率+50%\r\n释放怒气技后,获得100点怒气", - "img": "lusu_beidong1_hezhantuqi", + "info": "自身怒气获取效率+50%\n释放怒气技后,获得100点怒气", + "img": "lusu_beidong1_heyantuqi", "isShow": 1, "condition": "&", "aim": 0, @@ -28506,7 +29514,7 @@ "rangeSeid": "&", "haloGroup": 0, "haloLevel": 0, - "seidNameImage": "lusu_beidong1", + "seidNameImage": "lusu_heyantuqi", "passivespineName": "&", "rangeUi": 0, "passiveType": 0 @@ -28514,8 +29522,8 @@ { "id": 4301331, "name": "荷檐吐奇3", - "info": "自身怒气获取效率+50%\r\n释放怒气技后,获得100点怒气\r\n行动结束时,每拥有100点怒气,恢复自身1%的生命值", - "img": "lusu_beidong1_hezhantuqi", + "info": "自身怒气获取效率+50%\n释放怒气技后,获得100点怒气\n行动结束时,每拥有100点怒气,恢复自身1%的生命值", + "img": "lusu_beidong1_heyantuqi", "isShow": 1, "condition": "&", "aim": 0, @@ -28554,7 +29562,7 @@ "rangeSeid": "&", "haloGroup": 0, "haloLevel": 0, - "seidNameImage": "lusu_beidong1", + "seidNameImage": "lusu_heyantuqi", "passivespineName": "&", "rangeUi": 0, "passiveType": 0 @@ -28586,7 +29594,7 @@ { "id": 4301421, "name": "运筹帷幄2", - "info": "策攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "策攻强度+20\n物攻抗性+20、策攻抗性+20", "img": "ceshi_beidong2_yunchouweiwo", "isShow": 1, "condition": "&", @@ -28610,15 +29618,15 @@ { "id": 4301511, "name": "扶危济困", - "info": "战斗开始时,获得状态%d4301511%d\r\n%d4301511%d的不死效果触发后,扣除500点怒气,获得%d4301512%d,若怒气值不足500,则移除该状态\r\n%d4301512%d的不死效果触发后,扣除800点怒气,获得%d4301513%d,若怒气值不足800,则移除该状态\r\n获得%d4301513%d的不死效果触发后,扣除1000点怒气\r\n,若怒气值不足1000,则移除该状态", - "img": "lusu_beidong3_fuweijipin", + "info": "战斗开始时,获得状态%d4301511%d\n%d4301511%d的不死效果触发时,若拥有至少500点怒气,则扣除500点怒气并获得%d4301512%d\n%d4301512%d的不死效果触发时,若拥有至少800点怒气,则扣除800点怒气并获得%d4301513%d\n%d4301513%d的不死效果触发时,若拥有至少1000点怒气,则扣除1000点怒气后保留该状态", + "img": "lusu_beidong3_fuweijikun", "isShow": 1, "condition": "&", "aim": 0, "percent": 100, "node": 1, "type": 100, - "gainvalue": "4301511&", + "gainvalue": "4301511& ", "times_turn": 0, "times_battle": 0, "cd": 0, @@ -28626,7 +29634,7 @@ "rangeSeid": "&", "haloGroup": 0, "haloLevel": 0, - "seidNameImage": "&", + "seidNameImage": "lusu_leshanhaoshi", "passivespineName": "&", "rangeUi": 0, "passiveType": 0 @@ -28650,7 +29658,7 @@ "rangeSeid": "&", "haloGroup": 0, "haloLevel": 0, - "seidNameImage": "lusu_beidong3", + "seidNameImage": "lusu_fuweijikun", "passivespineName": "&", "rangeUi": 0, "passiveType": 0 @@ -28746,7 +29754,7 @@ "rangeSeid": "&", "haloGroup": 0, "haloLevel": 0, - "seidNameImage": "&", + "seidNameImage": "lusu_jipinweishan", "passivespineName": "&", "rangeUi": 0, "passiveType": 0 @@ -28842,7 +29850,7 @@ "rangeSeid": "&", "haloGroup": 0, "haloLevel": 0, - "seidNameImage": "&", + "seidNameImage": "lusu_zhiqunxiangzeng", "passivespineName": "&", "rangeUi": 0, "passiveType": 0 @@ -28925,7 +29933,7 @@ "info": "扣除1000怒气", "img": 1, "isShow": 0, - "condition": "203&2&1&999", + "condition": "206&2&1&999", "aim": 0, "percent": 100, "node": 32, @@ -28969,8 +29977,8 @@ }, { "id": 4301611, - "name": "合纵缔盟", - "info": "%d1%d\r\n我方武将的物攻强度和策攻强度+100\r\n我方武将的物攻抗性和策攻抗性+40\r\n回合开始时,自身每拥有100点怒气,对我方武将施加%d4301611%d\r\n我方任意武将使用怒气技后,对所有我方武将施加%d4301612%d", + "name": "连横缔盟", + "info": "%d1%d\n我方武将的物攻强度和策攻强度+100\n我方武将的物攻抗性和策攻抗性+40\n回合开始时,我方武将每拥有100点怒气,其自身获得1层%d4301611%d\n我方武将使用怒气技对敌军造成伤害后,对我方武将施加%d4301612%d", "img": "lusu_jiban_hezongdimeng", "isShow": 1, "condition": "&", @@ -28989,12 +29997,12 @@ "seidNameImage": "&", "passivespineName": "&", "rangeUi": 0, - "passiveType": 1 + "passiveType": 3 }, { "id": 4301612, "name": 0, - "info": "我方武将的物攻强度和策攻强度+100\r\n我方武将的物攻抗性和策攻抗性+40", + "info": "我方武将的物攻强度和策攻强度+100\n我方武将的物攻抗性和策攻抗性+40", "img": 1, "isShow": 0, "condition": "&", @@ -29034,7 +30042,7 @@ "rangeSeid": "&", "haloGroup": 0, "haloLevel": 0, - "seidNameImage": "&", + "seidNameImage": "lusu_lianhengdimeng", "passivespineName": "&", "rangeUi": 0, "passiveType": 0 @@ -29058,7 +30066,7 @@ "rangeSeid": "&", "haloGroup": 0, "haloLevel": 0, - "seidNameImage": "&", + "seidNameImage": "lusu_lianhengdimeng", "passivespineName": "&", "rangeUi": 0, "passiveType": 0 @@ -29090,7 +30098,7 @@ { "id": 4301616, "name": 0, - "info": "命中+2", + "info": "破格+2", "img": 1, "isShow": 0, "condition": "&", @@ -29162,7 +30170,7 @@ { "id": 4302121, "name": 0, - "info": "自身获得%d4302112%d\r\n若自身拥有3层%d4301112%d,释放怒气技时必定暴击", + "info": "自身获得%d4302112%d\n若自身拥有3层%d4301112%d,释放怒气技时必定暴击", "img": 1, "isShow": 0, "condition": "&", @@ -29210,8 +30218,8 @@ { "id": 4302311, "name": "真·荷檐吐奇1", - "info": "自身怒气获取效率+50%\r\n自身击杀敌军时,使所有我方武将获得25点怒气", - "img": "lusu_beidong1_hezhantuqi", + "info": "自身怒气获取效率+50%\n自身击杀敌军时,使所有我方武将获得25点怒气", + "img": "lusu_beidong1_heyantuqi", "isShow": 1, "condition": "&", "aim": 0, @@ -29274,7 +30282,7 @@ "rangeSeid": "&", "haloGroup": 0, "haloLevel": 0, - "seidNameImage": "&", + "seidNameImage": "lusu_zhenheyantuqi", "passivespineName": "&", "rangeUi": 0, "passiveType": 0 @@ -29282,15 +30290,15 @@ { "id": 4302321, "name": "真·荷檐吐奇2", - "info": "自身怒气获取效率+50%\r\n释放怒气技后,获得100点怒气\r\n自身击杀敌军时,使所有我方武将获得50点怒气", - "img": "lusu_beidong1_hezhantuqi", + "info": "自身怒气获取效率+50%\n释放怒气技后,获得100点怒气\n自身击杀敌军时,使所有我方武将获得50点怒气", + "img": "lusu_beidong1_heyantuqi", "isShow": 1, "condition": "&", "aim": 0, "percent": 100, "node": 1, "type": 999, - "gainvalue": "4302312&4302322", + "gainvalue": "4302312&4302322&4302323", "times_turn": 0, "times_battle": 0, "cd": 0, @@ -29322,7 +30330,7 @@ "rangeSeid": "&", "haloGroup": 0, "haloLevel": 0, - "seidNameImage": "lusu_beidong1", + "seidNameImage": "lusu_zhenheyantuqi", "passivespineName": "&", "rangeUi": 0, "passiveType": 0 @@ -29346,7 +30354,7 @@ "rangeSeid": "&", "haloGroup": 0, "haloLevel": 0, - "seidNameImage": "&", + "seidNameImage": "lusu_zhenheyantuqi", "passivespineName": "&", "rangeUi": 0, "passiveType": 0 @@ -29354,8 +30362,8 @@ { "id": 4302331, "name": "真·荷檐吐奇3", - "info": "自身怒气获取效率+50%\r\n释放怒气技后,获得100点怒气\r\n行动结束时,每拥有100点怒气,恢复自身1%的生命值\r\n自身击杀敌军时,使所有我方武将获得100点怒气", - "img": "lusu_beidong1_hezhantuqi", + "info": "自身怒气获取效率+50%\n释放怒气技后,获得100点怒气\n行动结束时,每拥有100点怒气,恢复自身1%的生命值\n自身击杀敌军时,使所有我方武将获得100点怒气", + "img": "lusu_beidong1_heyantuqi", "isShow": 1, "condition": "&", "aim": 0, @@ -29394,7 +30402,7 @@ "rangeSeid": "&", "haloGroup": 0, "haloLevel": 0, - "seidNameImage": "lusu_beidong1", + "seidNameImage": "lusu_zhenheyantuqi", "passivespineName": "&", "rangeUi": 0, "passiveType": 0 @@ -29418,7 +30426,7 @@ "rangeSeid": "&", "haloGroup": 0, "haloLevel": 0, - "seidNameImage": "&", + "seidNameImage": "lusu_zhenheyantuqi", "passivespineName": "&", "rangeUi": 0, "passiveType": 0 @@ -29618,7 +30626,7 @@ { "id": 4401311, "name": "无双飞将1", - "info": "每次攻击敌军,自身获得1层%d4401311%d,最多20层\r\n自身免疫增益状态与减益状态", + "info": "每次攻击敌军,自身获得1层%d4401311%d,最多20层\n自身免疫增益状态与减益状态", "img": "lvbu_beidong1_wushuangfeijiang", "isShow": 0, "condition": "&", @@ -29714,7 +30722,7 @@ { "id": 4401321, "name": "无双飞将2", - "info": "每次攻击敌军,自身获得2层%d4401311%d,最多20层\r\n自身免疫增益状态与减益状态", + "info": "每次攻击敌军,自身获得2层%d4401311%d,最多20层\n自身免疫增益状态与减益状态", "img": "lvbu_beidong1_wushuangfeijiang", "isShow": 1, "condition": "&", @@ -29762,7 +30770,7 @@ { "id": 4401331, "name": "无双飞将3", - "info": "每次攻击敌军,自身获得2层%d4401311%d,最多20层\r\n击杀敌军时,自身获得1层%d4401321%d,最多5层\r\n自身免疫增益状态与减益状态", + "info": "每次攻击敌军,自身获得2层%d4401311%d,最多20层\n击杀敌军时,自身获得1层%d4401321%d,最多5层\n自身免疫增益状态与减益状态", "img": "lvbu_beidong1_wushuangfeijiang", "isShow": 1, "condition": "&", @@ -29834,7 +30842,7 @@ { "id": 4401411, "name": "锋锐无当1", - "info": "物攻强度+20\r\n攻击时无视目标5%的物防", + "info": "物攻强度+20\n攻击时无视目标5%的物防", "img": "qiangbing_beidong2_fengruiwudang", "isShow": 1, "condition": "&", @@ -29906,7 +30914,7 @@ { "id": 4401421, "name": "锋锐无当2", - "info": "物攻强度+20\r\n攻击时无视目标10%的物防\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n攻击时无视目标10%的物防\n物攻抗性+20、策攻抗性+20", "img": "qiangbing_beidong2_fengruiwudang", "isShow": 1, "condition": "&", @@ -29930,7 +30938,7 @@ { "id": 4401422, "name": "锋锐无当2", - "info": "物攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n物攻抗性+20、策攻抗性+20", "img": 1, "isShow": 0, "condition": "&", @@ -30026,7 +31034,7 @@ { "id": 4402311, "name": "真·无双飞将1", - "info": "每次攻击敌军,自身获得1层%d4402311%d,最多30层\r\n自身免疫增益状态与减益状态", + "info": "每次攻击敌军,自身获得1层%d4402311%d,最多30层\n自身免疫增益状态与减益状态", "img": "lvbu_beidong1_wushuangfeijiang", "isShow": 0, "condition": "&", @@ -30122,7 +31130,7 @@ { "id": 4402321, "name": "真·无双飞将2", - "info": "每次攻击敌军,自身获得2层%d4402311%d,最多30层\r\n自身免疫增益状态与减益状态", + "info": "每次攻击敌军,自身获得2层%d4402311%d,最多30层\n自身免疫增益状态与减益状态", "img": "lvbu_beidong1_wushuangfeijiang", "isShow": 1, "condition": "&", @@ -30170,7 +31178,7 @@ { "id": 4402331, "name": "真·无双飞将3", - "info": "每次攻击敌军,自身获得2层%d4402311%d,最多30层\r\n击杀敌军时,自身获得1层%d4401321%d,最多5层\r\n自身免疫增益状态与减益状态", + "info": "每次攻击敌军,自身获得2层%d4402311%d,最多30层\n击杀敌军时,自身获得1层%d4401321%d,最多5层\n自身免疫增益状态与减益状态", "img": "lvbu_beidong1_wushuangfeijiang", "isShow": 1, "condition": "&", @@ -30242,7 +31250,7 @@ { "id": 4402511, "name": "真·冲冠一怒", - "info": "受到攻击时,怒气+50\r\n自身每有1层%d4402311%d,额外获得5点怒气", + "info": "受到攻击时,怒气+50\n自身每有1层%d4402311%d,额外获得5点怒气", "img": "lvbu_beidong3_chongguanyinu", "isShow": 1, "condition": "&", @@ -30514,7 +31522,7 @@ "percent": 100, "node": 7, "type": 100, - "gainvalue": "811&", + "gainvalue": "25&", "times_turn": 0, "times_battle": 0, "cd": 0, @@ -30538,7 +31546,7 @@ "percent": 100, "node": 7, "type": 100, - "gainvalue": "811&", + "gainvalue": "25&", "times_turn": 0, "times_battle": 0, "cd": 0, @@ -30602,7 +31610,7 @@ { "id": 4501311, "name": "千鸟万化1", - "info": "若本回合没有主动攻击,行动结束时,火凤附体\r\n攻击时,若与目标中间有障碍,冰凰附体", + "info": "若本回合没有主动攻击,行动结束时,火凤附体\n攻击时,若与目标中间有障碍,冰凰附体", "img": "zhangren_beidong1_qianniaowanhua", "isShow": 1, "condition": "&", @@ -30794,7 +31802,7 @@ { "id": 4501321, "name": "千鸟万化2", - "info": "若本回合没有主动攻击,行动结束时,火凤附体\r\n攻击时,若与目标中间有障碍,冰凰附体\r\n攻击时,若与目标中间没有障碍,雷鸟附体", + "info": "若本回合没有主动攻击,行动结束时,火凤附体\n攻击时,若与目标中间有障碍,冰凰附体\n攻击时,若与目标中间没有障碍,雷鸟附体", "img": "zhangren_beidong1_qianniaowanhua", "isShow": 1, "condition": "&", @@ -30938,7 +31946,7 @@ { "id": 4501331, "name": "千鸟万化3", - "info": "若本回合没有主动攻击,行动结束时,火凤附体\r\n攻击时,若与目标中间有障碍,冰凰附体\r\n攻击时,若与目标中间没有障碍,雷鸟附体\r\n物攻强度+10", + "info": "若本回合没有主动攻击,行动结束时,火凤附体\n攻击时,若与目标中间有障碍,冰凰附体\n攻击时,若与目标中间没有障碍,雷鸟附体\n物攻强度+10", "img": "zhangren_beidong1_qianniaowanhua", "isShow": 1, "condition": "&", @@ -31106,7 +32114,7 @@ { "id": 4501421, "name": "强弓劲弩2", - "info": "物攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n物攻抗性+20、策攻抗性+20", "img": "gongbing_beidong2_qianggongjingnu", "isShow": 1, "condition": "&", @@ -31130,7 +32138,7 @@ { "id": 4501511, "name": "绚羽飞华", - "info": "火凤附体中,回合开始时获得200点怒气\r\n若自身处于冰凰附体,物攻强度+80\r\n若自身处于雷鸟附体,暴击伤害+100%", + "info": "火凤附体中,回合开始时获得200点怒气\n若自身处于冰凰附体,物攻强度+80\n若自身处于雷鸟附体,暴击伤害+100%", "img": "zhangren_beidong3_xuanyufeihua", "isShow": 1, "condition": "602&0&1&2|402&1|601&1|802&", @@ -31226,7 +32234,7 @@ { "id": 4501611, "name": "天命玄鸟", - "info": "火凤附体:回合开始时,为友军提供50怒气\r\n冰凰附体:友军物攻强度和策攻强度+20\r\n雷鸟附体:友军暴击+10", + "info": "火凤附体:回合开始时,为友军提供50怒气\n冰凰附体:友军物攻强度和策攻强度+20\n雷鸟附体:友军暴击+10", "img": "zhangren_jiban_tianmingxuanniao", "isShow": 1, "condition": "&", @@ -31514,7 +32522,7 @@ { "id": 4601421, "name": "救死扶伤2", - "info": "治疗效果+20%\r\n物攻抗性+20、策攻抗性+20", + "info": "治疗效果+20%\n物攻抗性+20、策攻抗性+20", "img": "yisheng_beidong2_jiusifushang", "isShow": 1, "condition": "&", @@ -31706,7 +32714,7 @@ { "id": 4701321, "name": "黄天当立2", - "info": "攻击时,若目标怒气值低于700,策攻强度+20\r\n自身每拥有100点怒气,暴击+1,最多20", + "info": "攻击时,若目标怒气值低于700,策攻强度+20\n自身每拥有100点怒气,暴击+1,最多20", "img": "zhangjiao_beidong1_huangtiandangli", "isShow": 1, "condition": "&", @@ -31754,7 +32762,7 @@ { "id": 4701331, "name": "黄天当立3", - "info": "攻击时,若目标怒气值低于700,策攻强度+20\r\n自身每拥有100点怒气,暴击+3,最多60", + "info": "攻击时,若目标怒气值低于700,策攻强度+20\n自身每拥有100点怒气,暴击+3,最多60", "img": "zhangjiao_beidong1_huangtiandangli", "isShow": 1, "condition": "&", @@ -31826,7 +32834,7 @@ { "id": 4701421, "name": "运筹帷幄2", - "info": "策攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "策攻强度+20\n物攻抗性+20、策攻抗性+20", "img": "ceshi_beidong2_yunchouweiwo", "isShow": 1, "condition": "&", @@ -32138,7 +33146,7 @@ { "id": 4901321, "name": "百战不殆2", - "info": "触发格挡时,自身获得1层%d4901311%d\r\n自身每拥有1层%d4901311%d,行动结束时,恢复自身最大生命值5%的生命值", + "info": "触发格挡时,自身获得1层%d4901311%d\n自身每拥有1层%d4901311%d,行动结束时,恢复自身最大生命值5%的生命值", "img": "gaoshun_beidong1_baizhanbudai", "isShow": 1, "condition": "&", @@ -32186,7 +33194,7 @@ { "id": 4901331, "name": "百战不殆3", - "info": "触发格挡时,自身获得2层%d4901311%d\r\n自身每拥有1层%d4901311%d,行动结束时,恢复自身最大生命值5%的生命值", + "info": "触发格挡时,自身获得2层%d4901311%d\n自身每拥有1层%d4901311%d,行动结束时,恢复自身最大生命值5%的生命值", "img": "gaoshun_beidong1_baizhanbudai", "isShow": 1, "condition": "&", @@ -32258,7 +33266,7 @@ { "id": 4901411, "name": "固若金汤1", - "info": "物攻抗性+20、策攻抗性+20\r\n格挡+10", + "info": "物攻抗性+20、策攻抗性+20\n格挡+10", "img": "bubing_beidong2_guruojintang", "isShow": 1, "condition": "&", @@ -32282,7 +33290,7 @@ { "id": 4901421, "name": "固若金汤2", - "info": "物攻抗性+40、策攻抗性+40\r\n格挡+20", + "info": "物攻抗性+40、策攻抗性+40\n格挡+20", "img": "bubing_beidong2_guruojintang", "isShow": 1, "condition": "&", @@ -32426,7 +33434,7 @@ { "id": 5001321, "name": "重箭抛射2", - "info": "物攻强度+20\r\n主动攻击时,若与目标中间有障碍,暴击+10", + "info": "物攻强度+20\n主动攻击时,若与目标中间有障碍,暴击+10", "img": "jvyi_beidong1_zhongjianpaoshe", "isShow": 1, "condition": "&", @@ -32474,7 +33482,7 @@ { "id": 5001331, "name": "重箭抛射3", - "info": "物攻强度+20\r\n主动攻击时,若与目标中间有障碍,暴击+20", + "info": "物攻强度+20\n主动攻击时,若与目标中间有障碍,暴击+20", "img": "jvyi_beidong1_zhongjianpaoshe", "isShow": 1, "condition": "&", @@ -32546,7 +33554,7 @@ { "id": 5001421, "name": "强弓劲弩2", - "info": "物攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n物攻抗性+20、策攻抗性+20", "img": "gongbing_beidong2_qianggongjingnu", "isShow": 1, "condition": "&", @@ -32645,7 +33653,7 @@ "info": "自身拥有%d11%d时,攻击时施加%d11%d", "img": 1, "isShow": 0, - "condition": "300&2&11|605&2", + "condition": "300&1&11|605&2", "aim": 1, "percent": 100, "node": 7, @@ -32690,7 +33698,7 @@ { "id": 5101311, "name": "晏安鸩毒1", - "info": "使用技能治疗时,施加%d11%d\r\n使用技能治疗%d11%d友军时,治疗效果+20%", + "info": "使用技能治疗时,施加%d11%d\n使用技能治疗%d11%d友军时,治疗效果+20%", "img": "liru_beidong1_yananzhendu", "isShow": 1, "condition": "&", @@ -32738,7 +33746,7 @@ { "id": 5101321, "name": "晏安鸩毒2", - "info": "使用技能治疗%d11%d友军时,治疗效果+40%\r\n使用技能治疗时,施加%d11%d", + "info": "使用技能治疗%d11%d友军时,治疗效果+40%\n使用技能治疗时,施加%d11%d", "img": "liru_beidong1_yananzhendu", "isShow": 1, "condition": "&", @@ -32810,7 +33818,7 @@ { "id": 5101331, "name": "晏安鸩毒3", - "info": "使用技能治疗%d11%d友军时,治疗效果+60%\r\n使用技能治疗时,施加%d11%d", + "info": "使用技能治疗%d11%d友军时,治疗效果+60%\n使用技能治疗时,施加%d11%d", "img": "liru_beidong1_yananzhendu", "isShow": 1, "condition": "&", @@ -32882,7 +33890,7 @@ { "id": 5101421, "name": "救死扶伤2", - "info": "治疗效果+20%\r\n物攻抗性+20、策攻抗性+20", + "info": "治疗效果+20%\n物攻抗性+20、策攻抗性+20", "img": "yisheng_beidong2_jiusifushang", "isShow": 1, "condition": "&", @@ -32978,7 +33986,7 @@ { "id": 5201321, "name": "潜影迷踪2", - "info": "怒气技额外25%的物理伤害\r\n物攻强度+20", + "info": "怒气技额外25%的物理伤害\n物攻强度+20", "img": "pangwu_beidong1_qianyingmizong", "isShow": 1, "condition": "&", @@ -33026,7 +34034,7 @@ { "id": 5201331, "name": "潜影迷踪3", - "info": "怒气技额外50%的物理伤害\r\n物攻强度+20", + "info": "怒气技额外50%的物理伤害\n物攻强度+20", "img": "pangwu_beidong1_qianyingmizong", "isShow": 1, "condition": "&", @@ -33098,7 +34106,7 @@ { "id": 5201421, "name": "江湖豪侠2", - "info": "物攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n物攻抗性+20、策攻抗性+20", "img": "youxia_beidong2_jianghuhaoxia", "isShow": 1, "condition": "&", @@ -33242,7 +34250,7 @@ { "id": 5301121, "name": "明鬼墨击2", - "info": "对指定敌人发动3次物理伤害\r\n70%的概率施加1个随机减益状态", + "info": "对指定敌人发动3次物理伤害\n70%的概率施加1个随机减益状态", "img": 1, "isShow": 0, "condition": "&", @@ -33410,7 +34418,7 @@ { "id": 5301421, "name": "江湖豪侠2", - "info": "物攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n物攻抗性+20、策攻抗性+20", "img": "youxia_beidong2_jianghuhaoxia", "isShow": 1, "condition": "&", @@ -33602,7 +34610,7 @@ { "id": 5401411, "name": "锋锐无当1", - "info": "物攻强度+20\r\n攻击时无视目标5%的物防", + "info": "物攻强度+20\n攻击时无视目标5%的物防", "img": "qiangbing_beidong2_fengruiwudang", "isShow": 1, "condition": "&", @@ -33674,7 +34682,7 @@ { "id": 5401421, "name": "锋锐无当2", - "info": "物攻强度+20\r\n攻击时无视目标10%的物防\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n攻击时无视目标10%的物防\n物攻抗性+20、策攻抗性+20", "img": "qiangbing_beidong2_fengruiwudang", "isShow": 1, "condition": "&", @@ -33698,7 +34706,7 @@ { "id": 5401422, "name": "锋锐无当2", - "info": "物攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n物攻抗性+20、策攻抗性+20", "img": 1, "isShow": 0, "condition": "&", @@ -33770,7 +34778,7 @@ { "id": 5401611, "name": "河北双雄", - "info": "自身物攻抗性、策攻抗性+20%", + "info": "自身物攻抗性、策攻抗性+20", "img": "wenchou_jiban_hebeishuangxiong", "isShow": 1, "condition": "&", @@ -33890,7 +34898,7 @@ { "id": 5501421, "name": "冲锋陷阵2", - "info": "物攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n物攻抗性+20、策攻抗性+20", "img": "qibing_beidong2_chongfengxianzhen", "isShow": 1, "condition": "&", @@ -33938,7 +34946,7 @@ { "id": 5501611, "name": "河北双雄", - "info": "自身物攻强度+20%", + "info": "自身物攻强度+20", "img": "yanliang_jiban_hebeishuangxiong", "isShow": 1, "condition": "&", @@ -33962,7 +34970,7 @@ { "id": 5601111, "name": "媚影霓裳1", - "info": "施加随机减益状态\r\n对具有%d3801211%d的敌军额外造成25%的物理伤害", + "info": "施加随机减益状态\n对具有%d3801211%d的敌军额外造成25%的物理伤害", "img": 1, "isShow": 0, "condition": "&", @@ -34010,7 +35018,7 @@ { "id": 5601121, "name": "媚影霓裳2", - "info": "施加随机减益状态\r\n对具有%d3801211%d的敌军额外造成50%的物理伤害", + "info": "施加随机减益状态\n对具有%d3801211%d的敌军额外造成50%的物理伤害", "img": 1, "isShow": 0, "condition": "&", @@ -34130,7 +35138,7 @@ { "id": 5601311, "name": "红颜祸水1", - "info": "物攻强度+15\r\n攻击时,若目标是男性,暴击+15,暴击伤害+15%", + "info": "物攻强度+15\n攻击时,若目标是男性,暴击+15,暴击伤害+15%", "img": "diaochan_beidong1_hongyanhuoshui", "isShow": 1, "condition": "&", @@ -34202,7 +35210,7 @@ { "id": 5601321, "name": "红颜祸水2", - "info": "物攻强度+30\r\n攻击时,若目标是男性,暴击+25,暴击伤害+25%", + "info": "物攻强度+30\n攻击时,若目标是男性,暴击+25,暴击伤害+25%", "img": "diaochan_beidong1_hongyanhuoshui", "isShow": 1, "condition": "&", @@ -34274,7 +35282,7 @@ { "id": 5601331, "name": "红颜祸水3", - "info": "物攻强度+50\r\n攻击时,若目标是男性,暴击+50,暴击伤害+50%", + "info": "物攻强度+50\n攻击时,若目标是男性,暴击+50,暴击伤害+50%", "img": "diaochan_beidong1_hongyanhuoshui", "isShow": 1, "condition": "&", @@ -34370,7 +35378,7 @@ { "id": 5601421, "name": "江湖豪侠2", - "info": "物攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n物攻抗性+20、策攻抗性+20", "img": "youxia_beidong2_jianghuhaoxia", "isShow": 1, "condition": "&", @@ -34442,7 +35450,7 @@ { "id": 5602311, "name": "真·红颜祸水1", - "info": "物攻强度+15,暴击+15,暴击伤害+15%\r\n受到男性攻击时,物攻抗性+10", + "info": "物攻强度+15,暴击+15,暴击伤害+15%\n受到男性攻击时,物攻抗性+10", "img": "diaochan_beidong1_hongyanhuoshui", "isShow": 1, "condition": "&", @@ -34514,7 +35522,7 @@ { "id": 5602321, "name": "真·红颜祸水2", - "info": "物攻强度+30,暴击+25,暴击伤害+25%\r\n受到男性攻击时,物攻抗性+20", + "info": "物攻强度+30,暴击+25,暴击伤害+25%\n受到男性攻击时,物攻抗性+20", "img": "diaochan_beidong1_hongyanhuoshui", "isShow": 1, "condition": "&", @@ -34586,7 +35594,7 @@ { "id": 5602331, "name": "真·红颜祸水3", - "info": "物攻强度+50,暴击+50,暴击伤害+50%\r\n受到男性攻击时,物攻抗性+20,策攻抗性+10", + "info": "物攻强度+50,暴击+50,暴击伤害+50%\n受到男性攻击时,物攻抗性+20,策攻抗性+10", "img": "diaochan_beidong1_hongyanhuoshui", "isShow": 1, "condition": "&", @@ -34658,7 +35666,7 @@ { "id": 5602511, "name": "真·颠倒众生", - "info": "主动攻击时,若目标拥有至少2个减益状态,对其施加随机控制状态\r\n主动攻击时,若目标拥有【同心印】,自身获得200点怒气,并恢复自身10%的生命值", + "info": "主动攻击时,若目标拥有至少2个减益状态,对其施加随机控制状态\n主动攻击时,若目标拥有【同心印】,自身获得200点怒气,并恢复自身10%的生命值", "img": "diaochan_beidong3_diandaozhongsheng", "isShow": 1, "condition": "&", @@ -34874,7 +35882,7 @@ { "id": 6201321, "name": "金戈掣制2", - "info": "攻击时,对主目标施加%d911%d\r\n攻击时,对非主目标施加%d2011%d", + "info": "攻击时,对主目标施加%d911%d\n攻击时,对非主目标施加%d2011%d", "img": "panzhang_beidong1_jingechezhi", "isShow": 1, "condition": "713&1&1", @@ -34922,7 +35930,7 @@ { "id": 6201331, "name": "金戈掣制2", - "info": "攻击时,对主目标施加%d912%d\r\n攻击时,对非主目标施加%d2012%d", + "info": "攻击时,对主目标施加%d912%d\n攻击时,对非主目标施加%d2012%d", "img": "panzhang_beidong1_jingechezhi", "isShow": 1, "condition": "713&1&1", @@ -34994,7 +36002,7 @@ { "id": 6201411, "name": "锋锐无当1", - "info": "物攻强度+20\r\n攻击时无视目标5%的物防", + "info": "物攻强度+20\n攻击时无视目标5%的物防", "img": "qiangbing_beidong2_fengruiwudang", "isShow": 1, "condition": "&", @@ -35066,7 +36074,7 @@ { "id": 6201421, "name": "锋锐无当2", - "info": "物攻强度+20\r\n攻击时无视目标10%的物防\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n攻击时无视目标10%的物防\n物攻抗性+20、策攻抗性+20", "img": "qiangbing_beidong2_fengruiwudang", "isShow": 1, "condition": "&", @@ -35090,7 +36098,7 @@ { "id": 6201422, "name": "锋锐无当2", - "info": "物攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n物攻抗性+20、策攻抗性+20", "img": 1, "isShow": 0, "condition": "&", @@ -35234,7 +36242,7 @@ { "id": 6301321, "name": "烈马前驱2", - "info": "移动至少3格时,主动攻击时施加2层%d10%d\r\n移动至少5格时,主动攻击时%d10%d敌军时,暴击+10", + "info": "移动至少3格时,主动攻击时施加2层%d10%d\n移动至少5格时,主动攻击时%d10%d敌军时,暴击+10", "img": "lingtong_beidong1_liemaqianqu", "isShow": 1, "condition": "709&2&1|602&0&1&2", @@ -35282,7 +36290,7 @@ { "id": 6301331, "name": "烈马前驱3", - "info": "移动至少3格时,主动攻击时施加2层%d10%d\r\n移动至少5格时,主动攻击时%d10%d敌军时,暴击+20", + "info": "移动至少3格时,主动攻击时施加2层%d10%d\n移动至少5格时,主动攻击时%d10%d敌军时,暴击+20", "img": "lingtong_beidong1_liemaqianqu", "isShow": 1, "condition": "709&2&1|602&0&1&2", @@ -35354,7 +36362,7 @@ { "id": 6301421, "name": "冲锋陷阵2", - "info": "物攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n物攻抗性+20、策攻抗性+20", "img": "qibing_beidong2_chongfengxianzhen", "isShow": 1, "condition": "&", @@ -35498,7 +36506,7 @@ { "id": 6401321, "name": "老当益壮2", - "info": "攻击%d10%d敌军时,物攻强度+10\r\n主动攻击敌军时,施加1层%d10%d", + "info": "攻击%d10%d敌军时,物攻强度+10\n主动攻击敌军时,施加1层%d10%d", "img": "huanggai_beidong1_laodangyizhuang", "isShow": 1, "condition": "&", @@ -35546,7 +36554,7 @@ { "id": 6401331, "name": "老当益壮3", - "info": "攻击%d10%d敌军时,物攻强度+10\r\n主动攻击敌军时,施加1层%d10%d\r\n生命值低于30%时,反击额外施加3层%d10%d", + "info": "攻击%d10%d敌军时,物攻强度+10\n主动攻击敌军时,施加1层%d10%d\n生命值低于30%时,反击额外施加3层%d10%d", "img": "huanggai_beidong1_laodangyizhuang", "isShow": 1, "condition": "&", @@ -35618,7 +36626,7 @@ { "id": 6401421, "name": "江湖豪侠2", - "info": "物攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n物攻抗性+20、策攻抗性+20", "img": "youxia_beidong2_jianghuhaoxia", "isShow": 1, "condition": "&", @@ -35666,7 +36674,7 @@ { "id": 6401611, "name": "苦肉迷敌", - "info": "我方武将的物攻抗性-10\r\n主动攻击时50%概率施加额外%d10%d", + "info": "我方武将的物攻抗性-10\n主动攻击时50%概率施加额外%d10%d", "img": "huanggai_jiban_kuroumidi", "isShow": 1, "condition": "&", @@ -36026,7 +37034,7 @@ { "id": 6501421, "name": "救死扶伤2", - "info": "治疗效果+20%\r\n物攻抗性+20、策攻抗性+20", + "info": "治疗效果+20%\n物攻抗性+20、策攻抗性+20", "img": "yisheng_beidong2_jiusifushang", "isShow": 1, "condition": "&", @@ -36125,7 +37133,7 @@ "info": "主动战斗结束后,再次攻击", "img": 1, "isShow": 0, - "condition": "&", + "condition": "602&0&1&2", "aim": 0, "percent": 100, "node": 13, @@ -36149,7 +37157,7 @@ "info": "清除1层%d6600021%d", "img": 1, "isShow": 0, - "condition": "&", + "condition": "602&0&1&2", "aim": 0, "percent": 100, "node": 13, @@ -36170,7 +37178,7 @@ { "id": 6601111, "name": 0, - "info": "对指定敌军造成140%的物理伤害\r\n吸血+25%", + "info": "对指定敌军造成140%的物理伤害\n吸血+25%", "img": 1, "isShow": 0, "condition": "&", @@ -36194,7 +37202,7 @@ { "id": 6601121, "name": 0, - "info": "对指定敌军造成170%的物理伤害\r\n吸血+50%", + "info": "对指定敌军造成170%的物理伤害\n吸血+50%", "img": 1, "isShow": 0, "condition": "&", @@ -36218,7 +37226,7 @@ { "id": 6601211, "name": 0, - "info": "对指定敌军造成120%的物理伤害\r\n将目标击退1格", + "info": "对指定敌军造成120%的物理伤害\n将目标击退1格", "img": 1, "isShow": 0, "condition": "&", @@ -36242,7 +37250,7 @@ { "id": 6601221, "name": 0, - "info": "对指定敌军造成140%的物理伤害\r\n将目标击退2格", + "info": "对指定敌军造成140%的物理伤害\n将目标击退2格", "img": 1, "isShow": 0, "condition": "&", @@ -36290,7 +37298,7 @@ { "id": 6601321, "name": "奔烈飞雄2", - "info": "攻击前,每移动1格,主动攻击时获得8层%d6600011%d\r\n行动结束时,本回合每移动过1格,获得3层%d6600011%d", + "info": "攻击前,每移动1格,主动攻击时获得8层%d6600011%d\n行动结束时,本回合每移动过1格,获得3层%d6600011%d", "img": "machao_beidong1_benliefeixiong", "isShow": 1, "condition": "&", @@ -36362,7 +37370,7 @@ { "id": 6601331, "name": "奔烈飞雄3", - "info": "攻击前,每移动1格,主动攻击时获得12层%d6600011%d\r\n行动结束时,本回合每移动过1格,获得3层%d6600011%d\r\n每回合开始时,获得10层%d6600011%d", + "info": "攻击前,每移动1格,主动攻击时获得12层%d6600011%d\n行动结束时,本回合每移动过1格,获得3层%d6600011%d\n每回合开始时,获得10层%d6600011%d", "img": "machao_beidong1_benliefeixiong", "isShow": 1, "condition": "&", @@ -36458,7 +37466,7 @@ { "id": 6601421, "name": "冲锋陷阵2", - "info": "物攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n物攻抗性+20、策攻抗性+20", "img": "qibing_beidong2_chongfengxianzhen", "isShow": 1, "condition": "&", @@ -36482,7 +37490,7 @@ { "id": 6601511, "name": "凉州大马", - "info": "攻击前,每移动1格,主动攻击时物攻强度+10,最多50\r\n主动攻击时,获得%d6600051%d", + "info": "攻击前,每移动1格,主动攻击时物攻强度+10,最多50\n主动攻击时,获得%d6600051%d", "img": "machao_beidong3_liangzhongdama", "isShow": 1, "condition": "&", @@ -36626,7 +37634,7 @@ { "id": 6602321, "name": "真·奔烈飞雄2", - "info": "攻击前,每移动1格,主动攻击时获得8层%d6600011%d\r\n行动结束时,本回合每移动过1格,获得4层%d6600011%d", + "info": "攻击前,每移动1格,主动攻击时获得8层%d6600011%d\n行动结束时,本回合每移动过1格,获得4层%d6600011%d", "img": "machao_beidong1_benliefeixiong", "isShow": 1, "condition": "&", @@ -36698,7 +37706,7 @@ { "id": 6602331, "name": "真·奔烈飞雄3", - "info": "攻击前,每移动1格,主动攻击时获得12层%d6600011%d\r\n行动结束时,本回合每移动过1格,获得4层%d6600011%d\r\n每回合开始时,获得20层%d6600011%d", + "info": "攻击前,每移动1格,主动攻击时获得12层%d6600011%d\n行动结束时,本回合每移动过1格,获得4层%d6600011%d\n每回合开始时,获得20层%d6600011%d", "img": "machao_beidong1_benliefeixiong", "isShow": 1, "condition": "&", @@ -36770,7 +37778,7 @@ { "id": 6602511, "name": "真·凉州大马", - "info": "攻击前,每移动1格,主动攻击时物攻强度+10,最多50\r\n主动攻击时,获得%d6602051%d", + "info": "攻击前,每移动1格,主动攻击时物攻强度+10,最多50\n主动攻击时,获得%d6602051%d", "img": "machao_beidong3_liangzhongdama", "isShow": 1, "condition": "&", @@ -37058,7 +38066,7 @@ { "id": 6701111, "name": "灵狼化身1", - "info": "自身获得5层%d6701011%d\r\n释放后可再次发动攻击", + "info": "自身获得5层%d6701011%d\n释放后可再次发动攻击", "img": 1, "isShow": 0, "condition": "&", @@ -37130,7 +38138,7 @@ { "id": 6701121, "name": "灵狼化身2", - "info": "自身获得5层%d6701012%d\r\n释放后可再次发动攻击", + "info": "自身获得5层%d6701012%d\n释放后可再次发动攻击", "img": 1, "isShow": 0, "condition": "&", @@ -37250,7 +38258,7 @@ { "id": 6701311, "name": "贪狼追猎1", - "info": "自身移动力+1\r\n我方及友方武将主动攻击或反击敌军时,施加%d6701311%d", + "info": "自身移动力+1\n我方及友方武将主动攻击或反击敌军时,施加%d6701311%d", "img": "aliya_beidong1_tanlangzhuilie", "isShow": 1, "condition": "&", @@ -37346,7 +38354,7 @@ { "id": 6701321, "name": "贪狼追猎2", - "info": "自身移动力+1\r\n我方及友方武将主动攻击或反击敌军时,施加%d6701311%d\r\n我方及友方武将对敌军发动主动攻击且目标为主目标时,阿丽雅有50%几率对其释放一次【狼祸】\r\n\r\n与目标之间每有1个格子,释放【狼祸】时策攻强度-5,最多-50\r\n\r\n【狼祸】:\r\n对指定敌军造成100%的策略伤害", + "info": "自身移动力+1\n我方及友方武将主动攻击或反击敌军时,施加%d6701311%d\n我方及友方武将对敌军发动主动攻击且目标为主目标时,阿丽雅有50%几率对其释放一次【狼祸】\n\n与目标之间每有1个格子,释放【狼祸】时策攻强度-5,最多-50\n\n【狼祸】:\n对指定敌军造成100%的策略伤害", "img": "aliya_beidong1_tanlangzhuilie", "isShow": 1, "condition": "&", @@ -37442,7 +38450,7 @@ { "id": 6701331, "name": "贪狼追猎3", - "info": "战斗开始时,对所有敌军施加%d814%d\r\n自身移动力+1\r\n我方及友方武将主动攻击或反击敌军时,施加%d6701311%d\r\n我方及友方武将对敌军发动主动攻击且目标为主目标时,阿丽雅对其释放一次【狼祸】\r\n\r\n与目标之间每有1个格子,释放【狼祸】时策攻强度-5,最多-50\r\n触发狼祸时,获得50点怒气\r\n\r\n【狼祸】:\r\n对指定敌军造成100%的策略伤害", + "info": "战斗开始时,对所有敌军施加%d814%d\n自身移动力+1\n我方及友方武将主动攻击或反击敌军时,施加%d6701311%d\n我方及友方武将对敌军发动主动攻击且目标为主目标时,阿丽雅对其释放一次【狼祸】\n\n与目标之间每有1个格子,释放【狼祸】时策攻强度-5,最多-50\n触发狼祸时,获得50点怒气\n\n【狼祸】:\n对指定敌军造成100%的策略伤害", "img": "aliya_beidong1_tanlangzhuilie", "isShow": 1, "condition": "&", @@ -37562,7 +38570,7 @@ { "id": 6701421, "name": "运筹帷幄2", - "info": "策攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "策攻强度+20\n物攻抗性+20、策攻抗性+20", "img": "ceshi_beidong2_yunchouweiwo", "isShow": 1, "condition": "&", @@ -37610,7 +38618,7 @@ { "id": 6701611, "name": "天狼北啸", - "info": "战斗开始时,自身获得%d6701611%d\r\n战斗开始时,若自身怒气技等级为1级,获得3层%d6701011%d\r\n战斗开始时,若自身怒气技等级为2级,获得3层%d6701012%d", + "info": "战斗开始时,自身获得%d6701611%d\n战斗开始时,若自身怒气技等级为1级,获得3层%d6701011%d\n战斗开始时,若自身怒气技等级为2级,获得3层%d6701012%d", "img": "aliya_jiban_tianlangbeixiao", "isShow": 1, "condition": "&", @@ -37706,7 +38714,7 @@ { "id": 6702311, "name": "真·贪狼追猎1", - "info": "自身移动力+1\r\n我方及友方武将主动攻击或反击敌军时,施加%d6701311%d", + "info": "自身移动力+1\n我方及友方武将主动攻击或反击敌军时,施加%d6701311%d", "img": "aliya_beidong1_tanlangzhuilie", "isShow": 1, "condition": "&", @@ -37730,7 +38738,7 @@ { "id": 6702321, "name": "真·贪狼追猎2", - "info": "自身移动力+1\r\n我方及友方武将主动攻击或反击敌军时,施加%d6701311%d\r\n我方及友方武将对敌军发动主动攻击且目标为主目标时,阿丽雅有50%几率对其释放一次【狼祸】\r\n\r\n与目标之间每有1个格子,释放【狼祸】时策攻强度-5,最多-15\r\n自身拥有%d6701011%d或%d6701012%d时,释放【狼祸】时,策攻强度+10\r\n\r\n【狼祸】:\r\n对指定敌军造成100%的策略伤害", + "info": "自身移动力+1\n我方及友方武将主动攻击或反击敌军时,施加%d6701311%d\n我方及友方武将对敌军发动主动攻击且目标为主目标时,阿丽雅有50%几率对其释放一次【狼祸】\n\n与目标之间每有1个格子,释放【狼祸】时策攻强度-5,最多-15\n自身拥有%d6701011%d或%d6701012%d时,释放【狼祸】时,策攻强度+10\n\n【狼祸】:\n对指定敌军造成100%的策略伤害", "img": "aliya_beidong1_tanlangzhuilie", "isShow": 1, "condition": "&", @@ -37874,7 +38882,7 @@ { "id": 6702331, "name": "真·贪狼追猎3", - "info": "战斗开始时,对所有敌军施加%d814%d\r\n自身移动力+1\r\n我方及友方武将主动攻击或反击敌军时,施加%d6701311%d\r\n我方及友方武将对敌军发动主动攻击且目标为主目标时,阿丽雅对其释放一次【狼祸】\r\n\r\n与目标之间每有1个格子,释放【狼祸】时策攻强度-5,最多-15\r\n触发狼祸时,获得50点怒气\r\n自身拥有%d6701011%d或%d6701012%d时,释放【狼祸】时,策攻强度+20\r\n\r\n【狼祸】:\r\n对指定敌军造成100%的策略伤害", + "info": "战斗开始时,对所有敌军施加%d814%d\n自身移动力+1\n我方及友方武将主动攻击或反击敌军时,施加%d6701311%d\n我方及友方武将对敌军发动主动攻击且目标为主目标时,阿丽雅对其释放一次【狼祸】\n\n与目标之间每有1个格子,释放【狼祸】时策攻强度-5,最多-15\n触发狼祸时,获得50点怒气\n自身拥有%d6701011%d或%d6701012%d时,释放【狼祸】时,策攻强度+20\n\n【狼祸】:\n对指定敌军造成100%的策略伤害", "img": "aliya_beidong1_tanlangzhuilie", "isShow": 1, "condition": "&", @@ -37970,7 +38978,7 @@ { "id": 6702611, "name": "真·天狼北啸", - "info": "战斗开始时,自身获得%d6702611%d\r\n战斗开始时,若自身怒气技等级为1级,获得5层%d6701011%d\r\n战斗开始时,若自身怒气技等级为2级,获得5层%d6701012%d", + "info": "战斗开始时,自身获得%d6702611%d\n战斗开始时,若自身怒气技等级为1级,获得5层%d6701011%d\n战斗开始时,若自身怒气技等级为2级,获得5层%d6701012%d", "img": "aliya_jiban_tianlangbeixiao", "isShow": 1, "condition": "&", @@ -38063,10 +39071,850 @@ "rangeUi": 0, "passiveType": 0 }, + { + "id": 6901011, + "name": 0, + "info": "移动到攻击目标的另一侧,若另一侧无法移动,则返回原位", + "img": 1, + "isShow": 0, + "condition": "602&7", + "aim": 0, + "percent": 100, + "node": 9, + "type": 422, + "gainvalue": "&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 6901012, + "name": 0, + "info": "施加%d13%d", + "img": 1, + "isShow": 0, + "condition": "602&7", + "aim": 1, + "percent": 100, + "node": 7, + "type": 100, + "gainvalue": "13&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 6901111, + "name": 0, + "info": "自身获得3层%d6901111%d", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 7, + "type": 116, + "gainvalue": "3&6901111", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 6901112, + "name": 0, + "info": "每拥有一层%d6901311%d,额外造成20%物理伤害", + "img": 1, + "isShow": 0, + "condition": "307&1&1&6901311", + "aim": 0, + "percent": 100, + "node": 7, + "type": 214, + "gainvalue": "20&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 6901121, + "name": 0, + "info": "自身获得5层%d6901111%d", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 7, + "type": 116, + "gainvalue": "5&6901111", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 6901122, + "name": 0, + "info": "每拥有一层%d6901311%d,额外造成30%物理伤害", + "img": 1, + "isShow": 0, + "condition": "307&1&1&6901311", + "aim": 0, + "percent": 100, + "node": 7, + "type": 214, + "gainvalue": "30&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 6901211, + "name": 0, + "info": "移动到攻击目标的另一侧,若另一侧无法移动,则返回原位", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 9, + "type": 422, + "gainvalue": "&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 6901311, + "name": "凌剑·争彼1", + "info": "在友军主动攻击自身两格内的敌军后,消耗1层%d6901111%d对该敌军释放【凌剑·追锋】\n\n【凌剑·追锋】:对指定敌军造成100%的物理伤害,并施加%d13%d\n战斗后移动到自身当前位置,以目标为中心的中心对称位置,若无法移动,则返回原位", + "img": "wangyue_beidong1", + "isShow": 1, + "condition": "601&1|605&2|506&0|613&1|300&1&6901111", + "aim": 1, + "percent": 100, + "node": 14, + "type": 601, + "gainvalue": "690131&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "2&2012&1", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 6901312, + "name": 0, + "info": "清除1层%d6901111%d", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 7, + "type": 137, + "gainvalue": "1&6901111", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 6901321, + "name": "凌剑·争彼2", + "info": "在友军主动攻击自身两格内的敌军后,消耗1层%d6901111%d对该敌军释放【凌剑·追锋】\n若【凌剑·追锋】暴击,则不消耗%d6901111%d\n\n【凌剑·追锋】:对指定敌军造成100%的物理伤害,并施加%d13%d\n战斗后移动到自身当前位置,以目标为中心的中心对称位置,若无法移动,则返回原位", + "img": "wangyue_beidong1", + "isShow": 1, + "condition": "601&1|605&2|506&0|613&1|300&1&6901111", + "aim": 1, + "percent": 100, + "node": 14, + "type": 601, + "gainvalue": "690132&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "2&2012&1", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "wangyue_beidong1", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 6901322, + "name": 0, + "info": "清除1层%d6901111%d", + "img": 1, + "isShow": 0, + "condition": "711&0", + "aim": 0, + "percent": 100, + "node": 7, + "type": 137, + "gainvalue": "1&6901111", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 6901323, + "name": 0, + "info": "清除1层%d6901111%d", + "img": 1, + "isShow": 0, + "condition": "711&1", + "aim": 0, + "percent": 100, + "node": 7, + "type": 137, + "gainvalue": "1&6901111", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 6901331, + "name": "凌剑·争彼3", + "info": "在友军主动攻击自身两格内的敌军后,消耗1层%d6901111%d对该敌军释放【凌剑·追锋】\n若【连携1】暴击,则不消耗%d6901111%d,且获得1层%d6901311%d\n连携攻击的暴击伤害+25%\n\n【凌剑·追锋】:对指定敌军造成100%的物理伤害,并施加%d13%d\n战斗后移动到自身当前位置,以目标为中心的中心对称位置,若无法移动,则返回原位", + "img": "wangyue_beidong1", + "isShow": 1, + "condition": "601&1|605&2|506&0|613&1|300&1&6901111", + "aim": 1, + "percent": 100, + "node": 14, + "type": 601, + "gainvalue": "690133&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "2&2012&1", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "wangyue_beidong1", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 6901332, + "name": 0, + "info": "若【凌剑·追锋】暴击,则不消耗%d6901111%d,且获得1层%d6901311%d", + "img": 1, + "isShow": 0, + "condition": "711&2", + "aim": 0, + "percent": 100, + "node": 7, + "type": 116, + "gainvalue": "1&6901311", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 6901333, + "name": 0, + "info": "连携攻击暴击伤害+25%", + "img": 1, + "isShow": 0, + "condition": "602&7", + "aim": 0, + "percent": 100, + "node": 7, + "type": 200, + "gainvalue": "18&25&25", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 6901411, + "name": "江湖豪侠1", + "info": "物攻强度+20", + "img": "youxia_beidong2_jianghuhaoxia", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 16, + "type": 200, + "gainvalue": "19&20&20", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 6901421, + "name": "江湖豪侠2", + "info": "物攻强度+20\n物攻抗性+20、策攻抗性+20", + "img": "youxia_beidong2_jianghuhaoxia", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 16, + "type": 200, + "gainvalue": "19&20&20&20&20&20&22&20&20", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 6901511, + "name": "凌剑·墨守", + "info": "受到敌军普攻时,交换攻守状态,随后获得1层%d6901311%d", + "img": "wangyue_beidong3", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 4, + "type": 700, + "gainvalue": "6901512&0&6901513", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 6901512, + "name": 0, + "info": "受到敌军普攻时,交换攻守状态", + "img": 1, + "isShow": 0, + "condition": "602&0", + "aim": 1, + "percent": 100, + "node": 4, + "type": 600, + "gainvalue": "&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "wangyue_beidong3", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 6901513, + "name": 0, + "info": "获得1层%d6901311%d", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 1, + "percent": 100, + "node": 4, + "type": 116, + "gainvalue": "1&6901311", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 6901514, + "name": 0, + "info": "连携攻击时暴击+10", + "img": 1, + "isShow": 0, + "condition": "602&7", + "aim": 0, + "percent": 100, + "node": 7, + "type": 200, + "gainvalue": "10&10&30", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 6901611, + "name": "九侠墨首", + "info": "战斗开始时,获得3层%d6901111%d\n连携攻击的暴击+50,必定破格", + "img": "wangyue_jiban", + "isShow": 1, + "condition": "602&7", + "aim": 0, + "percent": 100, + "node": 1, + "type": 999, + "gainvalue": "6901612&6901613", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 1 + }, + { + "id": 6901612, + "name": 0, + "info": "战斗开始时,获得3层%d6901111%d", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 1, + "type": 116, + "gainvalue": "3&6901111", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "wangyue_jiban", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 6901613, + "name": 0, + "info": "连携攻击的暴击+50,必定破格", + "img": 1, + "isShow": 0, + "condition": "602&7", + "aim": 0, + "percent": 100, + "node": 7, + "type": 200, + "gainvalue": "10&50&50&9&999&999", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "wangyue_jiban", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 1 + }, + { + "id": 6902311, + "name": "真·凌剑·争彼1", + "info": "在友军主动攻击自身三格内的敌军后,消耗1层%d6901111%d对该敌军释放【真·凌剑·追锋】\n\n【真·凌剑·追锋】:对指定敌军造成100%的物理伤害,并施加%d13%d\n战斗后移动到自身当前位置,以目标为中心的中心对称位置,若无法移动,则返回原位", + "img": "wangyue_beidong1", + "isShow": 1, + "condition": "601&1|605&2|506&0|613&1|300&1&6901111", + "aim": 1, + "percent": 100, + "node": 14, + "type": 601, + "gainvalue": "690231&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "2&2024&1", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 6902312, + "name": 0, + "info": "清除1层%d6901111%d", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 7, + "type": 137, + "gainvalue": "1&6901111", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 6902321, + "name": "真·凌剑·争彼2", + "info": "在友军主动攻击自身三格内的敌军后,消耗1层%d6901111%d对该敌军释放【真·凌剑·追锋】\n若【真·凌剑·追锋】暴击,则不消耗%d6901111%d\n连携攻击的暴击伤害+25%\n\n【真·凌剑·追锋】:对指定敌军造成100%的物理伤害,并施加%d13%d\n战斗后移动到自身当前位置,以目标为中心的中心对称位置,若无法移动,则返回原位", + "img": "wangyue_beidong1", + "isShow": 1, + "condition": "601&1|605&2|506&0|613&1|300&1&6901111", + "aim": 1, + "percent": 100, + "node": 14, + "type": 601, + "gainvalue": "690232&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "2&2024&1", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "wangyue_beidong1", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 6902322, + "name": 0, + "info": "清除1层%d6901111%d", + "img": 1, + "isShow": 0, + "condition": "711&0", + "aim": 0, + "percent": 100, + "node": 7, + "type": 137, + "gainvalue": "1&6901111", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 6902323, + "name": 0, + "info": "清除1层%d6901111%d", + "img": 1, + "isShow": 0, + "condition": "711&1", + "aim": 0, + "percent": 100, + "node": 7, + "type": 137, + "gainvalue": "1&6901111", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 6902324, + "name": 0, + "info": "连携攻击暴击伤害+25%", + "img": 1, + "isShow": 0, + "condition": "602&7", + "aim": 0, + "percent": 100, + "node": 7, + "type": 200, + "gainvalue": "18&25&25", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 6902331, + "name": "真·凌剑·争彼3", + "info": "在友军主动攻击自身三格内的敌军后,消耗1层%d6901111%d对该敌军释放【真·凌剑·追锋】\n若【真·凌剑·追锋】暴击,则不消耗%d6901111%d,且获得1层%d6901311%d\n连携攻击的暴击伤害+50%\n\n【真·凌剑·追锋】:对指定敌军造成100%的物理伤害,并施加%d13%d\n战斗后移动到自身当前位置,以目标为中心的中心对称位置,若无法移动,则返回原位", + "img": "wangyue_beidong1", + "isShow": 1, + "condition": "601&1|605&2|506&0|613&1|300&1&6901111", + "aim": 1, + "percent": 100, + "node": 14, + "type": 601, + "gainvalue": "690233&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "2&2024&1", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "wangyue_beidong1", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 6902332, + "name": 0, + "info": "若【真·凌剑·追锋】暴击,则不消耗%d6901111%d,且获得1层%d6901311%d", + "img": 1, + "isShow": 0, + "condition": "711&2", + "aim": 0, + "percent": 100, + "node": 7, + "type": 116, + "gainvalue": "1&6901311", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 6902333, + "name": 0, + "info": "连携攻击暴击伤害+50%", + "img": 1, + "isShow": 0, + "condition": "602&7", + "aim": 0, + "percent": 100, + "node": 7, + "type": 200, + "gainvalue": "18&50&50", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 6902511, + "name": "真·凌剑·墨守", + "info": "受到敌方普通攻击时,逆转攻守状态,并获得1层%d6901311%d\n每拥有1层%d6901311%d,获得5点暴击", + "img": "wangyue_beidong3", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 7, + "type": 999, + "gainvalue": "6901512&6901513&6902512", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "wangyue_zhenbeidong3", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 6902512, + "name": 0, + "info": "每拥有1层%d6901311%d,获得5点暴击", + "img": 1, + "isShow": 0, + "condition": "307&1&1&6901311", + "aim": 0, + "percent": 100, + "node": 16, + "type": 200, + "gainvalue": "10&5&15", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, { "id": 101101111, "name": "固若金汤1", - "info": "物攻抗性+20、策攻抗性+20\r\n格挡+10", + "info": "物攻抗性+20、策攻抗性+20\n格挡+10", "img": "bubing_beidong2_guruojintang", "isShow": 1, "condition": "&", @@ -38090,7 +39938,7 @@ { "id": 101101121, "name": "固若金汤2", - "info": "物攻抗性+40、策攻抗性+40\r\n格挡+20", + "info": "物攻抗性+40、策攻抗性+40\n格挡+20", "img": "bubing_beidong2_guruojintang", "isShow": 1, "condition": "&", @@ -38114,7 +39962,7 @@ { "id": 101201111, "name": "锋锐无当1", - "info": "物攻强度+20\r\n攻击时无视目标5%的物防", + "info": "物攻强度+20\n攻击时无视目标5%的物防", "img": "qiangbing_beidong2_fengruiwudang", "isShow": 1, "condition": "&", @@ -38186,7 +40034,7 @@ { "id": 101201121, "name": "锋锐无当2", - "info": "物攻强度+20\r\n攻击时无视目标10%的物防\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n攻击时无视目标10%的物防\n物攻抗性+20、策攻抗性+20", "img": "qiangbing_beidong2_fengruiwudang", "isShow": 1, "condition": "&", @@ -38210,7 +40058,7 @@ { "id": 101201122, "name": "锋锐无当2", - "info": "物攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n物攻抗性+20、策攻抗性+20", "img": 1, "isShow": 0, "condition": "&", @@ -38282,7 +40130,7 @@ { "id": 101301121, "name": "冲锋陷阵2", - "info": "物攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n物攻抗性+20、策攻抗性+20", "img": "qibing_beidong2_chongfengxianzhen", "isShow": 1, "condition": "&", @@ -38330,7 +40178,7 @@ { "id": 101401121, "name": "强弓劲弩2", - "info": "物攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n物攻抗性+20、策攻抗性+20", "img": "gongbing_beidong2_qianggongjingnu", "isShow": 1, "condition": "&", @@ -38378,7 +40226,7 @@ { "id": 101501121, "name": "江湖豪侠2", - "info": "物攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n物攻抗性+20、策攻抗性+20", "img": "youxia_beidong2_jianghuhaoxia", "isShow": 1, "condition": "&", @@ -38426,7 +40274,7 @@ { "id": 101601121, "name": "运筹帷幄2", - "info": "策攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "策攻强度+20\n物攻抗性+20、策攻抗性+20", "img": "ceshi_beidong2_yunchouweiwo", "isShow": 1, "condition": "&", @@ -38474,7 +40322,7 @@ { "id": 101701121, "name": "救死扶伤2", - "info": "治疗效果+20%\r\n物攻抗性+20、策攻抗性+20", + "info": "治疗效果+20%\n物攻抗性+20、策攻抗性+20", "img": "yisheng_beidong2_jiusifushang", "isShow": 1, "condition": "&", @@ -39122,7 +40970,7 @@ { "id": 113101111, "name": "千里冰封", - "info": "借用白狼神的力量,召唤暴风寒霜覆盖整片战场\r\n对所有敌军造成20%最大生命值的真实伤害\r\n施加3层%d61101%d", + "info": "借用白狼神的力量,召唤暴风寒霜覆盖整片战场\n对所有敌军造成20%最大生命值的真实伤害\n施加3层%d61101%d", "img": "aliya_qianlibingfeng", "isShow": 1, "condition": "&", @@ -39290,7 +41138,7 @@ { "id": 113301111, "name": "霜狼爆炸", - "info": "死亡后体内积蓄的冰霜力量产生霜爆\r\n对范围内敌军造成10%生命上限的伤害\r\n施加2层%d61101%d", + "info": "死亡后体内积蓄的冰霜力量产生霜爆\n对范围内敌军造成10%生命上限的伤害\n施加2层%d61101%d", "img": "shuanglang_binglangshuangbao", "isShow": 1, "condition": "&", @@ -39986,7 +41834,7 @@ { "id": 117301321, "name": "凉州文英2", - "info": "使用技能治疗时,若自身没有增益状态,则自身获得1个增益状态\r\n使用技能治疗时,自身每拥有1个增益状态,治疗效果+5%,最多25%", + "info": "使用技能治疗时,若自身没有增益状态,则自身获得1个增益状态\n使用技能治疗时,自身每拥有1个增益状态,治疗效果+5%,最多25%", "img": "liubei_beidong1_shuhanzhihu", "isShow": 1, "condition": "&", @@ -40010,7 +41858,7 @@ { "id": 117301331, "name": "凉州文英3", - "info": "使用技能治疗时,若自身没有增益状态,则自身获得1个增益状态\r\n使用技能治疗时,自身每拥有1个增益状态,治疗效果+10%,最多50%", + "info": "使用技能治疗时,若自身没有增益状态,则自身获得1个增益状态\n使用技能治疗时,自身每拥有1个增益状态,治疗效果+10%,最多50%", "img": "liubei_beidong1_shuhanzhihu", "isShow": 1, "condition": "&", @@ -40034,7 +41882,7 @@ { "id": 117301511, "name": "西凉智士", - "info": "自身移动力+1\r\n范围内友军,回合开始时获得1个随机增益状态", + "info": "自身移动力+1\n范围内友军,回合开始时获得1个随机增益状态", "img": "liubei_beidong3_weixianweide", "isShow": 1, "condition": "&", @@ -40274,7 +42122,7 @@ { "id": 120501311, "name": "风伯之力", - "info": "主动攻击时,对目标所在格子施加状态%d120500311%d\r\n攻击时,对处于拥有%d120500314%d的格子中的敌军造成2倍的伤害\r\n攻击时,对处于拥有%d120500311%d的格子中的敌军造成1.5倍的伤害\r\n攻击时,对处于拥有%d120500312%d的格子中的敌军造成0.5倍的伤害", + "info": "主动攻击时,对目标所在格子施加状态%d120500311%d\n攻击时,对处于拥有%d120500314%d的格子中的敌军造成2倍的伤害\n攻击时,对处于拥有%d120500311%d的格子中的敌军造成1.5倍的伤害\n攻击时,对处于拥有%d120500312%d的格子中的敌军造成0.5倍的伤害", "img": "jingmanwushifeng_beidong1_fengbozhili", "isShow": 1, "condition": "&", @@ -40706,7 +42554,7 @@ { "id": 120601311, "name": "蚩尤之力", - "info": "主动攻击时,对目标所在格子施加状态%d120500312%d\r\n攻击时,对处于拥有%d120500313%d的格子中的敌军造成2倍的伤害\r\n攻击时,对处于拥有%d120500312%d的格子中的敌军造成1.5倍的伤害\r\n攻击时,对处于拥有%d120500311%d的格子中的敌军造成0.5倍的伤害", + "info": "主动攻击时,对目标所在格子施加状态%d120500312%d\n攻击时,对处于拥有%d120500313%d的格子中的敌军造成2倍的伤害\n攻击时,对处于拥有%d120500312%d的格子中的敌军造成1.5倍的伤害\n攻击时,对处于拥有%d120500311%d的格子中的敌军造成0.5倍的伤害", "img": "jingmanwushilei_beidong1_hanbazhili", "isShow": 1, "condition": "&", @@ -40850,7 +42698,7 @@ { "id": 120701311, "name": "雨师之力", - "info": "主动攻击时,对目标所在格子施加状态%d120500313%d\r\n攻击时,对处于拥有%d120500312%d的格子中的敌军造成2倍的伤害\r\n攻击时,对处于拥有%d120500313%d的格子中的敌军造成1.5倍的伤害\r\n攻击时,对处于拥有%d120500314%d的格子中的敌军造成0.5倍的伤害", + "info": "主动攻击时,对目标所在格子施加状态%d120500313%d\n攻击时,对处于拥有%d120500312%d的格子中的敌军造成2倍的伤害\n攻击时,对处于拥有%d120500313%d的格子中的敌军造成1.5倍的伤害\n攻击时,对处于拥有%d120500314%d的格子中的敌军造成0.5倍的伤害", "img": "jingmanwushishui_beidong1_yushizhili", "isShow": 1, "condition": "&", @@ -40994,7 +42842,7 @@ { "id": 120801311, "name": "旱魃之力", - "info": "主动攻击时,对目标所在格子施加状态%d120500314%d\r\n攻击时,对处于拥有%d120500311%d的格子中的敌军造成2倍的伤害\r\n攻击时,对处于拥有%d120500314%d的格子中的敌军造成1.5倍的伤害\r\n攻击时,对处于拥有%d120500313%d的格子中的敌军造成0.5倍的伤害", + "info": "主动攻击时,对目标所在格子施加状态%d120500314%d\n攻击时,对处于拥有%d120500311%d的格子中的敌军造成2倍的伤害\n攻击时,对处于拥有%d120500314%d的格子中的敌军造成1.5倍的伤害\n攻击时,对处于拥有%d120500313%d的格子中的敌军造成0.5倍的伤害", "img": "jingmanwushihuo_beidong1_chiyouzhili", "isShow": 1, "condition": "&", @@ -41138,7 +42986,7 @@ { "id": 120901311, "name": "应龙之力", - "info": "主动攻击时,若自身拥有%d120900311%d,对其所处格子施加%d120500311%d\r\n主动攻击时,若自身拥有%d120900312%d,对其所处格子施加%d120500312%d\r\n主动攻击时,若自身拥有%d120900313%d,对其所处格子施加%d120500313%d\r\n主动攻击时,若自身拥有%d120900314%d,对其所处格子施加%d120500314%d", + "info": "主动攻击时,若自身拥有%d120900311%d,对其所处格子施加%d120500311%d\n主动攻击时,若自身拥有%d120900312%d,对其所处格子施加%d120500312%d\n主动攻击时,若自身拥有%d120900313%d,对其所处格子施加%d120500313%d\n主动攻击时,若自身拥有%d120900314%d,对其所处格子施加%d120500314%d", "img": "shamoke_beidong1_yinglongzhili", "isShow": 1, "condition": "&", @@ -41354,7 +43202,7 @@ { "id": 120901411, "name": "属性转化", - "info": "战斗开始时,随机获得%d120900311%d %d120900312%d %d120900313%d %d120900314%d中的一种\r\n行动结束时,重新随机%d120900311%d %d120900312%d %d120900313%d %d120900314%d中的一种", + "info": "战斗开始时,随机获得%d120900311%d %d120900312%d %d120900313%d %d120900314%d中的一种\n行动结束时,重新随机%d120900311%d %d120900312%d %d120900313%d %d120900314%d中的一种", "img": "shamoke_beidong1_shuxingzhuanhua", "isShow": 1, "condition": "&", @@ -41426,7 +43274,7 @@ { "id": 120901511, "name": "元素光环", - "info": "我方武将拥有%d120900311%d时,攻击处于%d120500311%d格子上的武将时,对其相邻的格子施加%d120500311%d\r\n我方武将拥有%d120900312%d时,攻击处于%d120500312%d格子上的武将时,对其相邻的格子施加%d120500312%d\r\n我方武将拥有%d120900313%d时,攻击处于%d120500313%d格子上的武将时,对其相邻的格子施加%d120500313%d\r\n我方武将拥有%d120900314%d时,攻击处于%d120500314%d格子上的武将时,对其相邻的格子施加%d120500314%d", + "info": "我方武将拥有%d120900311%d时,攻击处于%d120500311%d格子上的武将时,对其相邻的格子施加%d120500311%d\n我方武将拥有%d120900312%d时,攻击处于%d120500312%d格子上的武将时,对其相邻的格子施加%d120500312%d\n我方武将拥有%d120900313%d时,攻击处于%d120500313%d格子上的武将时,对其相邻的格子施加%d120500313%d\n我方武将拥有%d120900314%d时,攻击处于%d120500314%d格子上的武将时,对其相邻的格子施加%d120500314%d", "img": "shamoke_beidong1_yuansuguanghuan", "isShow": 1, "condition": "&", @@ -41522,7 +43370,7 @@ { "id": 121001111, "name": "元素吸收", - "info": "恢复攻击力300%生命值\r\n清除范围内格子的%d120500311%d %d120500312%d %d120500313%d %d120500314%d,每清除1个状态恢复自身30%攻击力的生命值", + "info": "恢复攻击力300%生命值\n清除范围内格子的%d120500311%d %d120500312%d %d120500313%d %d120500314%d,每清除1个状态恢复自身30%攻击力的生命值", "img": 1, "isShow": 1, "condition": "&", @@ -41762,7 +43610,7 @@ { "id": 121201311, "name": "四方巫祝", - "info": "骨吉利在行动结束时,会随机从%d121200311%d %d121200312%d %d121200313%d %d121200314%d中获得1至4种\r\n骨吉利在回合开始时,对所有处在拥有%d120500311%d %d120500312%d %d120500313%d %d120500314%d的格子中的敌军造成一次75%的策略伤害\r\n骨吉利拥有同属性的【四方巫祝】状态,在【四方巫祝】与【元素充盈】相同的情况下,额外造成75%的伤害\r\n每额外拥有1个【四方巫祝】状态,额外对敌军造成150%的伤害,造成此次伤害后清除所有的【四方巫祝】状态", + "info": "骨吉利在行动结束时,会随机从%d121200311%d %d121200312%d %d121200313%d %d121200314%d中获得1至4种\n骨吉利在回合开始时,对所有处在拥有%d120500311%d %d120500312%d %d120500313%d %d120500314%d的格子中的敌军造成一次75%的策略伤害\n骨吉利拥有同属性的【四方巫祝】状态,在【四方巫祝】与【元素充盈】相同的情况下,额外造成75%的伤害\n每额外拥有1个【四方巫祝】状态,额外对敌军造成150%的伤害,造成此次伤害后清除所有的【四方巫祝】状态", "img": "gujili_beidong1_sifangwuzhu", "isShow": 1, "condition": "&", @@ -42098,7 +43946,7 @@ { "id": 121201411, "name": "真·应龙之力", - "info": "主动攻击时,对目标所在格子随机施加%d120500311%d %d120500312%d %d120500313%d %d120500314%d状态中的一种\r\n主动攻击时,若目标所处格子中已存在%d120500311%d %d120500312%d %d120500313%d %d120500314%d状态,则会使该状态向十字方向扩散1格", + "info": "主动攻击时,对目标所在格子随机施加%d120500311%d %d120500312%d %d120500313%d %d120500314%d状态中的一种\n主动攻击时,若目标所处格子中已存在%d120500311%d %d120500312%d %d120500313%d %d120500314%d状态,则会使该状态向十字方向扩散1格", "img": "gujili_beidong1_zhenyinglongzhili", "isShow": 1, "condition": "&", @@ -42335,6 +44183,30 @@ "rangeUi": 0, "passiveType": 0 }, + { + "id": 121201611, + "name": "祖灵庇佑", + "info": "所有地屏被击破之前,免疫任何伤害", + "img": "yinglongshaonv_beidong1_wulingjiejie", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 17, + "type": 999, + "gainvalue": "71&72&73&74", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, { "id": 160101111, "name": "全屏", @@ -43418,7 +45290,7 @@ { "id": 202401211, "name": "寂灭魔斩", - "info": "对指定敌军造成500%的物理伤害\r\n击退2格\r\n施加状态%d202101211%d", + "info": "对指定敌军造成500%的物理伤害\n击退2格\n施加状态%d202101211%d", "img": 1, "isShow": 0, "condition": "&", @@ -43586,7 +45458,7 @@ { "id": 203101111, "name": "巨牙天突", - "info": "对指定敌军造成140威力的物理伤害\r\n若攻击方向2格内有敌军,则对其造成500%的物理伤害", + "info": "对指定敌军造成140威力的物理伤害\n若攻击方向2格内有敌军,则对其造成500%的物理伤害", "img": 1, "isShow": 0, "condition": "601&0", @@ -43634,7 +45506,7 @@ { "id": 203201111, "name": 0, - "info": "对距离最远的目标施放\r\n移动到目标最近的格子", + "info": "对距离最远的目标施放\n移动到目标最近的格子", "img": 1, "isShow": 0, "condition": "&", @@ -43730,7 +45602,7 @@ { "id": 203401111, "name": "冲虎怒刺", - "info": "对距离最远的目标施放\r\n对其造成220%的物理伤害\r\n每距离1格,物理增伤+5\r\n攻击后移动到目标最近的格子", + "info": "对距离最远的目标施放\n对其造成220%的物理伤害\n每距离1格,物理增伤+5\n攻击后移动到目标最近的格子", "img": 1, "isShow": 0, "condition": "&", @@ -44258,7 +46130,7 @@ { "id": 205401311, "name": "保命1", - "info": "行动结束时,若3格范围内有%d205101113%d,清除1个治疗锦囊\r\n若清除成功,恢复郭嘉10%的最大生命值", + "info": "行动结束时,若3格范围内有%d205101113%d,清除1个治疗锦囊\n若清除成功,恢复郭嘉10%的最大生命值", "img": "shuyuanshibing_beidong_baoming", "isShow": 1, "condition": "&", @@ -44474,7 +46346,7 @@ { "id": 215401311, "name": "保命2", - "info": "行动结束时,若3格范围内有任意锦囊,随机清除1个锦囊\r\n若清除成功,恢复自身和郭嘉10%的最大生命值", + "info": "行动结束时,若3格范围内有任意锦囊,随机清除1个锦囊\n若清除成功,恢复自身和郭嘉10%的最大生命值", "img": "shuyuanshibing_beidong_baoming", "isShow": 1, "condition": "&", @@ -44954,7 +46826,7 @@ { "id": 207101411, "name": "凭恃1", - "info": "若自身生命值高于50%\r\n回合开始时,若赵范距离自身至多3格,获得1层%d207101111%d\r\n回合开始时,若赵范距离自身至少4格,失去1层%d207101111%d", + "info": "若自身生命值高于50%\n回合开始时,若赵范距离自身至多3格,获得1层%d207101111%d\n回合开始时,若赵范距离自身至少4格,失去1层%d207101111%d", "img": "fanshi_beidong1", "isShow": 1, "condition": "&", @@ -44978,7 +46850,7 @@ { "id": 207101412, "name": 0, - "info": "若自身生命值高于50%\r\n回合开始时,若赵范距离自身至多3格,获得1层%d207101111%d", + "info": "若自身生命值高于50%\n回合开始时,若赵范距离自身至多3格,获得1层%d207101111%d", "img": 1, "isShow": 0, "condition": "205&1&50|404&2025&2072|404&998&2072", @@ -45002,7 +46874,7 @@ { "id": 207101413, "name": 0, - "info": "若自身生命值高于50%\r\n回合开始时,若赵范距离自身至少4格,失去1层%d207101111%d", + "info": "若自身生命值高于50%\n回合开始时,若赵范距离自身至少4格,失去1层%d207101111%d", "img": 1, "isShow": 0, "condition": "205&1&50|405&2025&2072|404&998&2072", @@ -45026,7 +46898,7 @@ { "id": 207101511, "name": "疼惜1", - "info": "若自身生命值低于50%\r\n回合开始时,若赵范距离自身至少4格,获得1层%d207101111%d\r\n回合开始时,若赵范距离自身至多3格,失去1层%d207101111%d", + "info": "若自身生命值低于50%\n回合开始时,若赵范距离自身至少4格,获得1层%d207101111%d\n回合开始时,若赵范距离自身至多3格,失去1层%d207101111%d", "img": "fanshi_beidong2", "isShow": 1, "condition": "&", @@ -45050,7 +46922,7 @@ { "id": 207101512, "name": 0, - "info": "若自身生命值低于50%\r\n回合开始时,若赵范距离自身至少4格,获得1层%d207101111%d", + "info": "若自身生命值低于50%\n回合开始时,若赵范距离自身至少4格,获得1层%d207101111%d", "img": 1, "isShow": 0, "condition": "205&3&50|405&2025&2072|404&998&2072", @@ -45074,7 +46946,7 @@ { "id": 207101513, "name": 0, - "info": "若自身生命值低于50%\r\n回合开始时,若赵范距离自身至多3格,失去1层%d207101111%d", + "info": "若自身生命值低于50%\n回合开始时,若赵范距离自身至多3格,失去1层%d207101111%d", "img": 1, "isShow": 0, "condition": "205&3&50|404&2025&2072|404&998&2072", @@ -45098,7 +46970,7 @@ { "id": 207201411, "name": "心安1", - "info": "若自身生命值高于50%\r\n回合开始时,若樊氏距离自身至多3格,获得1层%d207201111%d\r\n回合开始时,若樊氏距离自身至少4格,失去1层%d207201111%d", + "info": "若自身生命值高于50%\n回合开始时,若樊氏距离自身至多3格,获得1层%d207201111%d\n回合开始时,若樊氏距离自身至少4格,失去1层%d207201111%d", "img": "zhaofan_beidong1", "isShow": 1, "condition": "&", @@ -45122,7 +46994,7 @@ { "id": 207201412, "name": 0, - "info": "若自身生命值高于50%\r\n回合开始时,若樊氏距离自身至多3格,获得1层%d207201111%d", + "info": "若自身生命值高于50%\n回合开始时,若樊氏距离自身至多3格,获得1层%d207201111%d", "img": 1, "isShow": 0, "condition": "205&1&50|404&2025&2071|404&998&2071", @@ -45146,7 +47018,7 @@ { "id": 207201413, "name": 0, - "info": "若自身生命值高于50%\r\n回合开始时,若樊氏距离自身至少4格,失去1层%d207201111%d", + "info": "若自身生命值高于50%\n回合开始时,若樊氏距离自身至少4格,失去1层%d207201111%d", "img": 1, "isShow": 0, "condition": "205&1&50|405&2025&2071|404&998&2071", @@ -45170,7 +47042,7 @@ { "id": 207201511, "name": "倚仗1", - "info": "若自身生命值低于50%\r\n回合开始时,若樊氏距离自身至少4格,获得1层%d207201111%d\r\n回合开始时,若樊氏距离自身至多3格,失去1层%d207201111%d", + "info": "若自身生命值低于50%\n回合开始时,若樊氏距离自身至少4格,获得1层%d207201111%d\n回合开始时,若樊氏距离自身至多3格,失去1层%d207201111%d", "img": "zhaofan_beidong2", "isShow": 1, "condition": "&", @@ -45194,7 +47066,7 @@ { "id": 207201512, "name": 0, - "info": "若自身生命值低于50%\r\n回合开始时,若樊氏距离自身至少4格,获得1层%d207201111%d", + "info": "若自身生命值低于50%\n回合开始时,若樊氏距离自身至少4格,获得1层%d207201111%d", "img": 1, "isShow": 0, "condition": "205&3&50|405&2025&2071|404&998&2071", @@ -45218,7 +47090,7 @@ { "id": 207201513, "name": 0, - "info": "若自身生命值低于50%\r\n回合开始时,若樊氏距离自身至多3格,失去1层%d207201111%d", + "info": "若自身生命值低于50%\n回合开始时,若樊氏距离自身至多3格,失去1层%d207201111%d", "img": 1, "isShow": 0, "condition": "205&3&50|404&2025&2071|404&998&2071", @@ -45242,7 +47114,7 @@ { "id": 207301411, "name": "凭恃2", - "info": "若自身生命值高于50%\r\n回合开始时,若赵范距离自身至多5格,获得1层%d207101111%d\r\n回合开始时,若赵范距离自身至少6格,失去1层%d207101111%d", + "info": "若自身生命值高于50%\n回合开始时,若赵范距离自身至多5格,获得1层%d207101111%d\n回合开始时,若赵范距离自身至少6格,失去1层%d207101111%d", "img": "fanshi_beidong1", "isShow": 1, "condition": "&", @@ -45266,7 +47138,7 @@ { "id": 207301412, "name": 0, - "info": "若自身生命值高于50%\r\n回合开始时,若赵范距离自身至多5格,获得1层%d207101111%d", + "info": "若自身生命值高于50%\n回合开始时,若赵范距离自身至多5格,获得1层%d207101111%d", "img": 1, "isShow": 0, "condition": "205&1&50|404&2061&2074|404&998&2074", @@ -45290,7 +47162,7 @@ { "id": 207301413, "name": 0, - "info": "若自身生命值高于50%\r\n回合开始时,若赵范距离自身至少6格,失去1层%d207101111%d", + "info": "若自身生命值高于50%\n回合开始时,若赵范距离自身至少6格,失去1层%d207101111%d", "img": 1, "isShow": 0, "condition": "205&1&50|405&2061&2074|404&998&2074", @@ -45314,7 +47186,7 @@ { "id": 207301511, "name": "疼惜2", - "info": "若自身生命值低于50%\r\n回合开始时,若赵范距离自身至少6格,获得1层%d207101111%d\r\n回合开始时,若赵范距离自身至多5格,失去1层%d207101111%d", + "info": "若自身生命值低于50%\n回合开始时,若赵范距离自身至少6格,获得1层%d207101111%d\n回合开始时,若赵范距离自身至多5格,失去1层%d207101111%d", "img": "fanshi_beidong2", "isShow": 1, "condition": "&", @@ -45338,7 +47210,7 @@ { "id": 207301512, "name": 0, - "info": "若自身生命值低于50%\r\n回合开始时,若赵范距离自身至少6格,获得1层%d207101111%d", + "info": "若自身生命值低于50%\n回合开始时,若赵范距离自身至少6格,获得1层%d207101111%d", "img": 1, "isShow": 0, "condition": "205&3&50|405&2061&2074|404&998&2074", @@ -45362,7 +47234,7 @@ { "id": 207301513, "name": 0, - "info": "若自身生命值低于50%\r\n回合开始时,若赵范距离自身至多5格,失去1层%d207101111%d", + "info": "若自身生命值低于50%\n回合开始时,若赵范距离自身至多5格,失去1层%d207101111%d", "img": 1, "isShow": 0, "condition": "205&3&50|404&2061&2074|404&998&2074", @@ -45386,7 +47258,7 @@ { "id": 207401411, "name": "心安2", - "info": "若自身生命值高于50%\r\n回合开始时,若樊氏距离自身至多5格,获得1层%d207201111%d\r\n回合开始时,若樊氏距离自身至少6格,失去1层%d207201111%d", + "info": "若自身生命值高于50%\n回合开始时,若樊氏距离自身至多5格,获得1层%d207201111%d\n回合开始时,若樊氏距离自身至少6格,失去1层%d207201111%d", "img": "zhaofan_beidong1", "isShow": 1, "condition": "&", @@ -45410,7 +47282,7 @@ { "id": 207401412, "name": 0, - "info": "若自身生命值高于50%\r\n回合开始时,若樊氏距离自身至多5格,获得1层%d207201111%d", + "info": "若自身生命值高于50%\n回合开始时,若樊氏距离自身至多5格,获得1层%d207201111%d", "img": 1, "isShow": 0, "condition": "205&1&50|404&2061&2073|404&998&2073", @@ -45434,7 +47306,7 @@ { "id": 207401413, "name": 0, - "info": "若自身生命值高于50%\r\n回合开始时,若樊氏距离自身至少6格,失去1层%d207201111%d", + "info": "若自身生命值高于50%\n回合开始时,若樊氏距离自身至少6格,失去1层%d207201111%d", "img": 1, "isShow": 0, "condition": "205&1&50|405&2061&2073|404&998&2073", @@ -45458,7 +47330,7 @@ { "id": 207401511, "name": "倚仗2", - "info": "若自身生命值低于50%\r\n回合开始时,若樊氏距离自身至少6格,获得1层%d207201111%d\r\n回合开始时,若樊氏距离自身至多5格,失去1层%d207201111%d", + "info": "若自身生命值低于50%\n回合开始时,若樊氏距离自身至少6格,获得1层%d207201111%d\n回合开始时,若樊氏距离自身至多5格,失去1层%d207201111%d", "img": "zhaofan_beidong2", "isShow": 1, "condition": "&", @@ -45482,7 +47354,7 @@ { "id": 207401512, "name": 0, - "info": "若自身生命值低于50%\r\n回合开始时,若樊氏距离自身至少6格,获得1层%d207201111%d", + "info": "若自身生命值低于50%\n回合开始时,若樊氏距离自身至少6格,获得1层%d207201111%d", "img": 1, "isShow": 0, "condition": "205&3&50|405&2061&2073|404&998&2073", @@ -45506,7 +47378,7 @@ { "id": 207401513, "name": 0, - "info": "若自身生命值低于50%\r\n回合开始时,若樊氏距离自身至多5格,失去1层%d207201111%d", + "info": "若自身生命值低于50%\n回合开始时,若樊氏距离自身至多5格,失去1层%d207201111%d", "img": 1, "isShow": 0, "condition": "205&3&50|404&2061&2073|404&998&2073", @@ -45530,7 +47402,7 @@ { "id": 207501412, "name": "凭恃3", - "info": "若自身生命值高于50%\r\n回合开始时,若赵范距离自身至多5格,获得1层%d207101111%d", + "info": "若自身生命值高于50%\n回合开始时,若赵范距离自身至多5格,获得1层%d207101111%d", "img": "fanshi_beidong1", "isShow": 1, "condition": "205&1&50|404&2061&2076|404&998&2076", @@ -45554,7 +47426,7 @@ { "id": 207501512, "name": "疼惜3", - "info": "若自身生命值低于50%\r\n回合开始时,若赵范距离自身至少6格,获得1层%d207101111%d", + "info": "若自身生命值低于50%\n回合开始时,若赵范距离自身至少6格,获得1层%d207101111%d", "img": "fanshi_beidong2", "isShow": 1, "condition": "205&3&50|405&2061&2076|404&998&2076", @@ -45578,7 +47450,7 @@ { "id": 207601412, "name": "心安3", - "info": "若自身生命值高于50%\r\n回合开始时,若樊氏距离自身至多5格,获得1层%d207201111%d", + "info": "若自身生命值高于50%\n回合开始时,若樊氏距离自身至多5格,获得1层%d207201111%d", "img": "zhaofan_beidong1", "isShow": 1, "condition": "205&1&50|404&2061&2075|404&998&2075", @@ -45602,7 +47474,7 @@ { "id": 207601512, "name": "倚仗3", - "info": "若自身生命值低于50%\r\n回合开始时,若樊氏距离自身至少6格,获得1层%d207201111%d", + "info": "若自身生命值低于50%\n回合开始时,若樊氏距离自身至少6格,获得1层%d207201111%d", "img": "zhaofan_beidong2", "isShow": 1, "condition": "205&3&50|405&2061&2075|404&998&2075", @@ -45674,7 +47546,7 @@ { "id": 208101411, "name": "江东之火1", - "info": "主动攻击时,对目标所在格子施加状态%d120500314%d\r\n攻击时,若目标所处格子中有%d120500313%d,该次伤害系数减半", + "info": "主动攻击时,对目标所在格子施加状态%d120500314%d\n攻击时,若目标所处格子中有%d120500313%d,该次伤害系数减半", "img": "chengpu_beidong1_jiangdongzhihuo", "isShow": 1, "condition": "&", @@ -45746,7 +47618,7 @@ { "id": 208401411, "name": "江东之火2", - "info": "主动攻击时,对目标所在格子施加状态%d120500314%d\r\n主动攻击处于拥有%d120500313%d格子中的敌军时,本次伤害减半\r\n主动攻击时处于拥有%d120500314%d格子中的敌军时,使陆逊获得100点怒气值", + "info": "主动攻击时,对目标所在格子施加状态%d120500314%d\n主动攻击处于拥有%d120500313%d格子中的敌军时,本次伤害减半\n主动攻击时处于拥有%d120500314%d格子中的敌军时,使陆逊获得100点怒气值", "img": "chengpu_beidong1_jiangdongzhihuo", "isShow": 1, "condition": "&", @@ -45818,7 +47690,7 @@ { "id": 208401414, "name": "江东之火2", - "info": "主动攻击时,对目标所在格子施加状态%d120500314%d\r\n主动攻击处于拥有%d120500313%d格子中的敌军时,本次伤害减半\r\n主动攻击时处于拥有%d120500314%d格子中的敌军时,使陆逊获得100点怒气值", + "info": "主动攻击时,对目标所在格子施加状态%d120500314%d\n主动攻击处于拥有%d120500313%d格子中的敌军时,本次伤害减半\n主动攻击时处于拥有%d120500314%d格子中的敌军时,使陆逊获得100点怒气值", "img": "chengpu_beidong1_jiangdongzhihuo", "isShow": 1, "condition": "&", @@ -45890,7 +47762,7 @@ { "id": 208301011, "name": "雨师之护", - "info": "主动攻击时,对目标所处格子施加%d120500313%d\r\n主动攻击时,若目标所处格子中有%d120500314%d,则清除%d120500314%d\r\n攻击时,若目标所处格子中有%d120500314%d,该次伤害系数减半\r\n主动攻击时,若目标所处格子中有%d120500313%d,使雨师祭司获得25点怒气值\r\n行动结束时,对自身所处的格子施加%d120500313%d", + "info": "主动攻击时,对目标所处格子施加%d120500313%d\n主动攻击时,若目标所处格子中有%d120500314%d,则清除%d120500314%d\n攻击时,若目标所处格子中有%d120500314%d,该次伤害系数减半\n主动攻击时,若目标所处格子中有%d120500313%d,使雨师祭司获得25点怒气值\n行动结束时,对自身所处的格子施加%d120500313%d", "img": 1, "isShow": 0, "condition": "&", @@ -46298,7 +48170,7 @@ { "id": 310101411, "name": 0, - "info": "物攻强度和策攻强度+3\r\n物攻抗性和策攻抗性-1", + "info": "物攻强度和策攻强度+3\n物攻抗性和策攻抗性-1", "img": 1, "isShow": 0, "condition": "&", @@ -46466,7 +48338,7 @@ { "id": 310101511, "name": 0, - "info": "物攻强度和策攻强度+3\r\n物攻抗性和策攻抗性-1", + "info": "物攻强度和策攻强度+3\n物攻抗性和策攻抗性-1", "img": 1, "isShow": 0, "condition": "&", @@ -46634,7 +48506,7 @@ { "id": 320101111, "name": "鬼魅惊惶", - "info": "行动开始时,对范围内敌军施加1层%d320101111%d\r\n%d320101111%d达到3层,转化为%d25%d", + "info": "行动开始时,对范围内敌军施加1层%d320101111%d\n%d320101111%d达到3层,转化为%d25%d", "img": "tangji_beidong1_guimeijinghuang", "isShow": 1, "condition": "&", @@ -46682,7 +48554,7 @@ { "id": 320101211, "name": "踏幽而至", - "info": "对距离最远的敌军造成400%的策略伤害\r\n若目标拥有惊慌,则额外造成200%的策略伤害\r\n战斗后施加1层%d320101111%d", + "info": "对距离最远的敌军造成400%的策略伤害\n若目标拥有惊慌,则额外造成200%的策略伤害\n战斗后施加1层%d320101111%d", "img": 1, "isShow": 0, "condition": "&", @@ -46802,7 +48674,7 @@ { "id": 320301311, "name": "磨刀霍霍", - "info": "当场上每存在1个持有%d320401111%d标记的敌军\r\n物攻强度、策攻强度、物攻抗性、策攻抗性+5", + "info": "当场上每存在1个持有%d320401111%d标记的敌军\n物攻强度、策攻强度、物攻抗性、策攻抗性+5", "img": "hejin_beidong1_modaohuohuo", "isShow": 1, "condition": "400&998&320401111&0", @@ -46826,7 +48698,7 @@ { "id": 320401111, "name": "我为刀俎", - "info": "行动开始时,对范围内敌军施加1层%d320401111%d\r\n若%d320401111%d达到2层,转化为%d23%d", + "info": "行动开始时,对范围内敌军施加1层%d320401111%d\n若%d320401111%d达到2层,转化为%d23%d", "img": "huanggongjinweigui_beidong1_woweidaozu", "isShow": 1, "condition": "&", @@ -46874,7 +48746,7 @@ { "id": 320401211, "name": "汝为鱼肉", - "info": "本回合每移动1格,损失1%生命值\r\n每损失1%的生命,物攻强度+2%", + "info": "本回合每移动1格,损失1%生命值\n每损失1%的生命,物攻强度+2%", "img": "huanggongjinweigui_beidong2_ruweiyurou", "isShow": 1, "condition": "&", @@ -47042,7 +48914,7 @@ { "id": 320501115, "name": "花葬吾身", - "info": "每存在一个宫女亡魂,策攻抗性+5\r\n每存在一个皇宫禁卫鬼侍,物攻抗性+5\r\n每存在一个白色彼岸花,策攻抗性-5\r\n每存在一个红色彼岸花,物攻抗性-5", + "info": "每存在一个宫女亡魂,策攻抗性+5\n每存在一个皇宫禁卫鬼侍,物攻抗性+5\n每存在一个白色彼岸花,策攻抗性-5\n每存在一个红色彼岸花,物攻抗性-5", "img": "hetaihou_beidong1_huazangwushen", "isShow": 1, "condition": "&", @@ -47138,7 +49010,7 @@ { "id": 320501124, "name": "魂归黄泉", - "info": "战斗开始时,对随机4名敌军施加%d320501413%d\r\n范围内敌军死亡时,若是物理职业,则化为红色彼岸花\r\n范围内敌军死亡时,若是策略职业,则化为白色彼岸花", + "info": "战斗开始时,对随机4名敌军施加%d320501413%d\n范围内敌军死亡时,若是物理职业,则化为红色彼岸花\n范围内敌军死亡时,若是策略职业,则化为白色彼岸花", "img": "hetaihou_beidong2_hunguihuangquan", "isShow": 1, "condition": "&", @@ -47450,7 +49322,7 @@ { "id": 320801131, "name": "阴泉润滋", - "info": "行动结束时,获得1层%d320501417%d\r\n行动开始时,尝试清除范围内的%d320501414%d,若清除成功,则获得3层%d320501417%d\r\n当%d320501417%d层数达到3层时,复生", + "info": "行动结束时,获得1层%d320501417%d\n行动开始时,尝试清除范围内的%d320501414%d,若清除成功,则获得3层%d320501417%d\n当%d320501417%d层数达到3层时,复生", "img": "bianhua_beidong3_yinquanrunzhi", "isShow": 1, "condition": "&", @@ -47618,7 +49490,7 @@ { "id": 320801151, "name": "彼岸花藤蔓", - "info": "在何后释放【巨藤绞杀】后,释放【绞杀】\r\n\r\n【绞杀】:\r\n对范围内敌军造成150%的物理伤害\r\n将敌军向自身拉取1格\r\n施加【定身】", + "info": "在何后释放【巨藤绞杀】后,释放【绞杀】\n\n【绞杀】:\n对范围内敌军造成150%的物理伤害\n将敌军向自身拉取1格\n施加【定身】", "img": "hetaihou_skill2_jutengjiaosha", "isShow": 0, "condition": "300&1&320501415", @@ -48362,7 +50234,7 @@ { "id": 330801111, "name": "攻击指示", - "info": "取不同的两名敌军分别施加%d330801111%d\r\n和%d330801112%d", + "info": "取不同的两名敌军分别施加%d330801111%d\n和%d330801112%d", "img": 1, "isShow": 0, "condition": "&", @@ -49226,7 +51098,7 @@ { "id": 340401111, "name": 0, - "info": "对指定敌军造成180%的物理伤害\r\n瞬移到目标最近的格子处\r\n优先对拥有%d340101211%d的敌军释放\r\n\r\n狼灵祝福:\r\n若目标有%d340101211%d则额外造成320%的物理伤害", + "info": "对指定敌军造成180%的物理伤害\n瞬移到目标最近的格子处\n优先对拥有%d340101211%d的敌军释放\n\n狼灵祝福:\n若目标有%d340101211%d则额外造成320%的物理伤害", "img": 1, "isShow": 0, "condition": "&", @@ -49394,7 +51266,7 @@ { "id": 340401211, "name": 0, - "info": "对指定范围的敌军造成80%的策略伤害\r\n\r\n狼灵祝福:\r\n对受到伤害的目标施加%d340101211%d", + "info": "对指定范围的敌军造成80%的策略伤害\n\n狼灵祝福:\n对受到伤害的目标施加%d340101211%d", "img": 1, "isShow": 0, "condition": "303&340901311|601&1", @@ -49418,7 +51290,7 @@ { "id": 340701211, "name": 0, - "info": "对随机3名敌军造成100%的物理伤害\r\n并对其所在位置施加%d340701212%d", + "info": "对随机3名敌军造成100%的物理伤害\n并对其所在位置施加%d340701212%d", "img": 1, "isShow": 0, "condition": "&", @@ -49514,7 +51386,7 @@ { "id": 340701311, "name": 0, - "info": "对随机3名敌军造成100%的物理伤害\r\n并对其所在位置施加%d340701312%d", + "info": "对随机3名敌军造成100%的物理伤害\n并对其所在位置施加%d340701312%d", "img": 1, "isShow": 0, "condition": "&", @@ -49994,7 +51866,7 @@ { "id": 350401411, "name": "龙脉庇佑", - "info": "受到致命伤害时不会死亡,但不可行动且失去对周边区域的控制\r\n回合开始时恢复20%生命值\r\n当场上所有陈兰同时进入%d350401411%d时,一起死亡", + "info": "受到致命伤害时不会死亡,但不可行动且失去对周边区域的控制\n回合开始时恢复20%生命值\n当场上所有陈兰同时进入%d350401411%d时,一起死亡", "img": "qianghua_2", "isShow": 1, "condition": "&", @@ -50810,7 +52682,7 @@ { "id": 360201311, "name": "墨艺-钢牙", - "info": "技能攻击后,对目标施加%d2012%d和%d2212%d\r\n死亡后,其他机关兽获得此被动 ", + "info": "技能攻击后,对目标施加%d2012%d和%d2212%d\n死亡后,其他机关兽获得此被动 ", "img": "xianhuang_beidong1_moyigangya", "isShow": 1, "condition": "&", @@ -50906,7 +52778,7 @@ { "id": 360401311, "name": "墨艺-铁蹄", - "info": "技能攻击后,对目标施加%d25%d\r\n死亡后,其他机关兽获得此被动", + "info": "技能攻击后,对目标施加%d25%d\n死亡后,其他机关兽获得此被动", "img": "fuzhu_beidong1_moyitieti", "isShow": 1, "condition": "&", @@ -52226,7 +54098,7 @@ { "id": 370301111, "name": "熊怒气技", - "info": "击退敌军4格\r\n若击退被阻挡,额外造成300%的物理伤害并施加%d25%d", + "info": "击退敌军4格\n若击退被阻挡,额外造成300%的物理伤害并施加%d25%d", "img": 1, "isShow": 0, "condition": "&", @@ -52634,7 +54506,7 @@ { "id": 370601211, "name": "瘟疫层数检测", - "info": "若目标%d370601411%d层数大于2,则在目标周围生成1只小蜘蛛\r\n若目标%d370601411%d层数大于4,则对目标施加%d26%d", + "info": "若目标%d370601411%d层数大于2,则在目标周围生成1只小蜘蛛\n若目标%d370601411%d层数大于4,则对目标施加%d26%d", "img": 1, "isShow": 0, "condition": "&", @@ -52706,7 +54578,7 @@ { "id": 370601311, "name": 0, - "info": "施加1层%d370601411%d\r\n场中每有1个%d370501311%d额外造成10%的策略伤害\r\n清除场上所有的%d370501311%d", + "info": "施加1层%d370601411%d\n场中每有1个%d370501311%d额外造成10%的策略伤害\n清除场上所有的%d370501311%d", "img": 1, "isShow": 0, "condition": "&", @@ -52826,7 +54698,7 @@ { "id": 380101111, "name": "断魂血咒1", - "info": "对目标敌军造成500%的策略伤害\r\n目标所处的格子若有%d120500311%d %d120500312%d %d120500313%d %d120500314%d状态,则地图中每有一块相同属性的格子,额外造成20%的策略伤害", + "info": "对目标敌军造成500%的策略伤害\n目标所处的格子若有%d120500311%d %d120500312%d %d120500313%d %d120500314%d状态,则地图中每有一块相同属性的格子,额外造成20%的策略伤害", "img": 1, "isShow": 0, "condition": "&", @@ -52946,7 +54818,7 @@ { "id": 380101121, "name": "断魂血咒2", - "info": "对目标敌军造成500%的策略伤害\r\n目标所处的地面若有%d120500311%d %d120500312%d %d120500313%d %d120500314%d状态,则地图中每有一块相同属性的格子,额外造成20%的策略伤害\r\n,无视目标2%的策防", + "info": "对目标敌军造成500%的策略伤害\n目标所处的地面若有%d120500311%d %d120500312%d %d120500313%d %d120500314%d状态,则地图中每有一块相同属性的格子,额外造成20%的策略伤害\n,无视目标2%的策防", "img": 1, "isShow": 0, "condition": "&", @@ -53066,7 +54938,7 @@ { "id": 380101211, "name": "四方巫祝·逆", - "info": "对范围内的敌军造成200%的策略伤害\r\n对效果范围内1至10个格子,随机施加%d120500311%d %d120500312%d %d120500313%d %d120500314%d", + "info": "对范围内的敌军造成200%的策略伤害\n对效果范围内1至10个格子,随机施加%d120500311%d %d120500312%d %d120500313%d %d120500314%d", "img": 1, "isShow": 0, "condition": "&", @@ -53090,7 +54962,7 @@ { "id": 380101311, "name": "真·属性转化", - "info": "主动攻击后,随机获得%d380100311%d %d380100312%d %d380100313%d %d380100314%d中的1至4个\r\n\r\n根据自己当前属性获得对应的增益:\r\n狂风:地图中每有一个拥有%d120500311%d的格子,物攻抗性和策攻抗性+10\r\n惊雷:地图中每有一个拥有%d120500312%d的格子,暴击+10\r\n凝冰:回合开始时,地图中每有一个拥有%d120500313%d的格子,自身恢复3%最大生命值\r\n厉火:地图中每有一个拥有%d120500314%d的格子,策攻强度+10", + "info": "主动攻击后,随机获得%d380100311%d %d380100312%d %d380100313%d %d380100314%d中的1至4个\n\n根据自己当前属性获得对应的增益:\n狂风:地图中每有一个拥有%d120500311%d的格子,物攻抗性和策攻抗性+10\n惊雷:地图中每有一个拥有%d120500312%d的格子,暴击+10\n凝冰:回合开始时,地图中每有一个拥有%d120500313%d的格子,自身恢复3%最大生命值\n厉火:地图中每有一个拥有%d120500314%d的格子,策攻强度+10", "img": "yinglongshaonv_beidong1_zhenshuxingzhuanhua", "isShow": 1, "condition": "&", @@ -53330,7 +55202,7 @@ { "id": 380101411, "name": "极·应龙之力", - "info": "主动攻击时,对目标所在格子随机施加%d120500311%d %d120500312%d %d120500313%d %d120500314%d状态中的一种\r\n\r\n攻击时,若格子中已有%d120500311%d %d120500312%d %d120500313%d %d120500314%d,则会对相邻的格子随机施加上述状态的一种,每个格子独立随机", + "info": "主动攻击时,对目标所在格子随机施加%d120500311%d %d120500312%d %d120500313%d %d120500314%d状态中的一种\n\n攻击时,若格子中已有%d120500311%d %d120500312%d %d120500313%d %d120500314%d,则会对相邻的格子随机施加上述状态的一种,每个格子独立随机", "img": "yinglongshaonv_beidong1_jiyinglongzhili", "isShow": 1, "condition": "&", @@ -53618,7 +55490,7 @@ { "id": 380201321, "name": "应龙守护2", - "info": "受到的伤害减少100%", + "info": "受到的伤害减少90%", "img": "mohua_beidong1_yinglongshouhu", "isShow": 1, "condition": "&", @@ -53626,7 +55498,7 @@ "percent": 100, "node": 8, "type": 204, - "gainvalue": "-100&", + "gainvalue": "-90&", "times_turn": 0, "times_battle": 0, "cd": 0, @@ -53641,7 +55513,7 @@ }, { "id": 380201411, - "name": "风多火熄", + "name": "风多火熄1", "info": "位于拥有%d120500311%d格子中的武将,对自身造成3倍伤害", "img": "mohua_beidong1_fengduohuoxi", "isShow": 1, @@ -53663,6 +55535,30 @@ "rangeUi": 0, "passiveType": 0 }, + { + "id": 380201421, + "name": "风多火熄2", + "info": "位于拥有%d120500311%d格子中的武将,对自身造成10倍伤害", + "img": "mohua_beidong1_fengduohuoxi", + "isShow": 1, + "condition": "321&1&120500311", + "aim": 1, + "percent": 100, + "node": 8, + "type": 204, + "gainvalue": "900&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": "&", + "haloLevel": 0, + "seidNameImage": "mohua_fengduohuoxi", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, { "id": 380201511, "name": "灵气逸散-火", @@ -53689,7 +55585,7 @@ }, { "id": 380301411, - "name": "雷多水涸", + "name": "雷多水涸1", "info": "位于拥有%d120500312%d格子中的武将,对自身造成3倍伤害", "img": "mohua_beidong1_leiduoshuihe", "isShow": 1, @@ -53711,6 +55607,30 @@ "rangeUi": 0, "passiveType": 0 }, + { + "id": 380301421, + "name": "雷多水涸2", + "info": "位于拥有%d120500312%d格子中的武将,对自身造成10倍伤害", + "img": "mohua_beidong1_leiduoshuihe", + "isShow": 1, + "condition": "321&1&120500312", + "aim": 1, + "percent": 100, + "node": 8, + "type": 204, + "gainvalue": "900&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": "&", + "haloLevel": 0, + "seidNameImage": "mohua_leiduoshuihe", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, { "id": 380301511, "name": "灵气逸散-水", @@ -53737,7 +55657,7 @@ }, { "id": 380401411, - "name": "火多风平", + "name": "火多风平1", "info": "位于拥有%d120500314%d格子中的武将,对自身造成3倍伤害", "img": "mohua_beidong1_huoduofengping", "isShow": 1, @@ -53759,6 +55679,30 @@ "rangeUi": 0, "passiveType": 0 }, + { + "id": 380401421, + "name": "火多风平2", + "info": "位于拥有%d120500314%d格子中的武将,对自身造成10倍伤害", + "img": "mohua_beidong1_huoduofengping", + "isShow": 1, + "condition": "321&1&120500314", + "aim": 1, + "percent": 100, + "node": 8, + "type": 204, + "gainvalue": "900&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": "&", + "haloLevel": 0, + "seidNameImage": "mohua_huoduofengping", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, { "id": 380401511, "name": "灵气逸散-风", @@ -53785,7 +55729,7 @@ }, { "id": 380501411, - "name": "水多雷消", + "name": "水多雷消1", "info": "位于拥有%d120500313%d格子中的武将,对自身造成3倍伤害", "img": "mohua_beidong1_shuiduoleixiao", "isShow": 1, @@ -53807,6 +55751,30 @@ "rangeUi": 0, "passiveType": 0 }, + { + "id": 380501421, + "name": "水多雷消2", + "info": "位于拥有%d120500313%d格子中的武将,对自身造成10倍伤害", + "img": "mohua_beidong1_shuiduoleixiao", + "isShow": 1, + "condition": "321&1&120500313", + "aim": 1, + "percent": 100, + "node": 8, + "type": 204, + "gainvalue": "900&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": "&", + "haloLevel": 0, + "seidNameImage": "mohua_shuiduoleixiao", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, { "id": 380501511, "name": "灵气逸散-雷", @@ -54338,7 +56306,7 @@ { "id": 380601311, "name": "假仙", - "info": "血量降低到一定比例时,更换阶段\r\n受到致命伤害时不会死亡", + "info": "血量降低到一定比例时,更换阶段\n受到致命伤害时不会死亡", "img": "zhoucang_beidong2", "isShow": 0, "condition": "&", @@ -54817,14 +56785,14 @@ }, { "id": 381601113, - "name": "判断状态", + "name": "抵消失败后", "info": 0, "img": 1, "isShow": 0, "condition": "&", "aim": 0, "percent": 100, - "node": 7, + "node": 37, "type": 700, "gainvalue": "381601114&1&381601115", "times_turn": 0, @@ -54848,7 +56816,7 @@ "condition": "300&2&381901313", "aim": 1, "percent": 100, - "node": 7, + "node": 37, "type": 115, "gainvalue": "381901313&", "times_turn": 0, @@ -55130,7 +57098,7 @@ { "id": 500000003, "name": 0, - "info": "物攻强度和策攻强度+3\r\n物攻抗性和策攻抗性-3", + "info": "物攻强度和策攻强度+3\n物攻抗性和策攻抗性-3", "img": 1, "isShow": 0, "condition": "&", @@ -55250,7 +57218,7 @@ { "id": 500000011, "name": 0, - "info": "物攻强度和策攻强度+3\r\n物攻抗性和策攻抗性-3", + "info": "物攻强度和策攻强度+3\n物攻抗性和策攻抗性-3", "img": 1, "isShow": 0, "condition": "&", @@ -55370,7 +57338,7 @@ { "id": 500000021, "name": 0, - "info": "物攻强度和策攻强度+3\r\n物攻抗性和策攻抗性-3", + "info": "物攻强度和策攻强度+3\n物攻抗性和策攻抗性-3", "img": 1, "isShow": 0, "condition": "&", @@ -55658,7 +57626,7 @@ { "id": 520101311, "name": "花葬吾身", - "info": "每存在一个宫女亡魂,物攻抗性和策攻抗性+20\r\n每存在一个白色彼岸花,物攻抗性和策攻抗性-20", + "info": "每存在一个宫女亡魂,物攻抗性和策攻抗性+20\n每存在一个白色彼岸花,物攻抗性和策攻抗性-20", "img": "hetaihou_beidong1_huazangwushen", "isShow": 1, "condition": "&", @@ -55730,7 +57698,7 @@ { "id": 520201411, "name": "花葬吾身", - "info": "每存在一个皇宫禁卫鬼侍,物攻抗性和策攻抗性+20\r\n每存在一个红色彼岸花,物攻抗性和策攻抗性-20", + "info": "每存在一个皇宫禁卫鬼侍,物攻抗性和策攻抗性+20\n每存在一个红色彼岸花,物攻抗性和策攻抗性-20", "img": "hetaihou_beidong1_huazangwushen", "isShow": 1, "condition": "&", @@ -55802,7 +57770,7 @@ { "id": 520301311, "name": 0, - "info": "每存在一个宫女亡魂,策攻抗性+20\r\n每存在一个皇宫禁卫鬼侍,物攻抗性+20\r\n每存在一个白色彼岸花,策攻抗性-20\r\n每存在一个红色彼岸花,物攻抗性-20", + "info": "每存在一个宫女亡魂,策攻抗性+20\n每存在一个皇宫禁卫鬼侍,物攻抗性+20\n每存在一个白色彼岸花,策攻抗性-20\n每存在一个红色彼岸花,物攻抗性-20", "img": "hetaihou_beidong1_huazangwushen", "isShow": 1, "condition": "&", @@ -57770,7 +59738,7 @@ { "id": 570401211, "name": "瘟疫层数检测", - "info": "若目标%d570401411%d层数大于2,则在目标周围生成1只小蜘蛛\r\n若目标%d570401411%d层数大于4,则对目标施加%d26%d", + "info": "若目标%d570401411%d层数大于2,则在目标周围生成1只小蜘蛛\n若目标%d570401411%d层数大于4,则对目标施加%d26%d", "img": 1, "isShow": 0, "condition": "&", @@ -57842,7 +59810,7 @@ { "id": 570401311, "name": 0, - "info": "施加1层%d570401411%d\r\n场中每有1个%d370501311%d额外造成10%的策略伤害\r\n清除场上所有的%d370501311%d", + "info": "施加1层%d570401411%d\n场中每有1个%d370501311%d额外造成10%的策略伤害\n清除场上所有的%d370501311%d", "img": 1, "isShow": 0, "condition": "&", @@ -58442,7 +60410,7 @@ { "id": 1010201011, "name": "护卫", - "info": "范围内友军受到攻击时,代替该友军进行战斗\r\n每回合最多生效2次\r\n使光环覆盖范围内的友军,不受敌方武将优先攻击的影响\r\n效果会被【高级护卫】覆盖", + "info": "范围内友军受到攻击时,代替该友军进行战斗\n每回合最多生效2次\n使光环覆盖范围内的友军,不受敌方武将优先攻击的影响\n效果会被【高级护卫】覆盖", "img": "bubing_tianfu_huwei", "isShow": 1, "condition": "&", @@ -58466,7 +60434,7 @@ { "id": 1010202011, "name": "筑城", - "info": "范围内友军物攻抗性+5、策攻抗性+5\r\n效果会被【高级筑城】覆盖", + "info": "范围内友军物攻抗性+5、策攻抗性+5\n效果会被【高级筑城】覆盖", "img": "bubing_tianfu_zhucheng", "isShow": 1, "condition": "&", @@ -58490,7 +60458,7 @@ { "id": 1010203011, "name": "同袍", - "info": "范围内友军受到主动攻击时,伤害的20%转移给自身\r\n效果会被【高级同袍】覆盖", + "info": "范围内友军受到主动攻击时,伤害的20%转移给自身\n效果会被【高级同袍】覆盖", "img": "bubing_tianfu_tongpao", "isShow": 1, "condition": "605&1|602&0&1&2|613&1", @@ -58730,7 +60698,7 @@ { "id": 1010801011, "name": "高级护卫", - "info": "范围内友军受到攻击时,代替该友军进行战斗\r\n使光环覆盖范围内的友军,不受敌方武将优先攻击的影响", + "info": "范围内友军受到攻击时,代替该友军进行战斗\n使光环覆盖范围内的友军,不受敌方武将优先攻击的影响", "img": "bubing_tianfu_huwei", "isShow": 1, "condition": "&", @@ -58802,7 +60770,7 @@ { "id": 1020101011, "name": "刺击", - "info": "普通攻击时可对指定敌军及其身后1格的敌军造成75%的物理伤害\r\n仅能指定相邻敌军为目标", + "info": "普通攻击时可对指定敌军及其身后1格的敌军造成75%的物理伤害\n仅能指定相邻敌军为目标", "img": "pugong_ciji", "isShow": 0, "condition": "&", @@ -58826,7 +60794,7 @@ { "id": 1020201011, "name": "破盾", - "info": "使范围内敌军格挡-10\r\n效果会被【高级破盾】覆盖", + "info": "使范围内敌军格挡-10\n效果会被【高级破盾】覆盖", "img": "qiangbing_tianfu_podun", "isShow": 1, "condition": "&", @@ -58850,7 +60818,7 @@ { "id": 1020202011, "name": "破阵", - "info": "使范围内敌军物攻抗性-10\r\n效果会被【高级破阵】覆盖", + "info": "使范围内敌军物攻抗性-10\n效果会被【高级破阵】覆盖", "img": "qiangbing_tianfu_pozhen", "isShow": 1, "condition": "&", @@ -58874,7 +60842,7 @@ { "id": 1020203011, "name": "破甲", - "info": "使范围内敌军抗暴-5\r\n效果会被【高级破甲】覆盖", + "info": "使范围内敌军抗暴-5\n效果会被【高级破甲】覆盖", "img": "qiangbing_tianfu_pojia", "isShow": 1, "condition": "&", @@ -59306,7 +61274,7 @@ { "id": 1030602011, "name": "策马", - "info": "若本回合主动移动至少3格,主动攻击时额外获得25点怒气\r\n若本回合主动移动至少5格,主动攻击时额外获得75点怒气", + "info": "若本回合主动移动至少3格,主动攻击时额外获得25点怒气\n若本回合主动移动至少5格,主动攻击时额外获得75点怒气", "img": "nuqi_2", "isShow": 1, "condition": "&", @@ -59474,7 +61442,7 @@ { "id": 1040101011, "name": "飞射", - "info": "普通攻击可对距离2格的指定敌军造成100%的物理伤害\r\n无法指定相邻敌军作为目标", + "info": "普通攻击可对距离2格的指定敌军造成100%的物理伤害\n无法指定相邻敌军作为目标", "img": "pugong_feishe", "isShow": 0, "condition": "&", @@ -59546,7 +61514,7 @@ { "id": 1040203011, "name": "劲弩", - "info": "普攻额外造成10%的物理伤害\r\n\r\n多段攻击技能仅第一段伤害有效", + "info": "普攻额外造成10%的物理伤害\n\n多段攻击技能仅第一段伤害有效", "img": "gongbing_tianfu_jingnu", "isShow": 1, "condition": "602&0", @@ -59570,7 +61538,7 @@ { "id": 1040401011, "name": "弩击", - "info": "主动攻击时,若与目标之间无障碍,额外造成10%物理伤害\r\n\r\n多段攻击技能仅第一段伤害有效", + "info": "主动攻击时,若与目标之间无障碍,额外造成10%物理伤害\n\n多段攻击技能仅第一段伤害有效", "img": "gongbing_tianfu_nuji", "isShow": 1, "condition": "801&|602&0&1&2", @@ -59594,7 +61562,7 @@ { "id": 1040402011, "name": "抛射", - "info": "主动攻击时,若与目标之间有障碍,额外造成10%物理伤害\r\n\r\n多段攻击技能仅第一段伤害有效", + "info": "主动攻击时,若与目标之间有障碍,额外造成10%物理伤害\n\n多段攻击技能仅第一段伤害有效", "img": "gongbing_tianfu_paoshe", "isShow": 1, "condition": "803&|602&0&1&2", @@ -59618,7 +61586,7 @@ { "id": 1040403011, "name": "远矢", - "info": "主动攻击时,若与目标之间至少2格,额外造成10%物理伤害\r\n\r\n多段攻击技能仅第一段伤害有效", + "info": "主动攻击时,若与目标之间至少2格,额外造成10%物理伤害\n\n多段攻击技能仅第一段伤害有效", "img": "gongbing_tianfu_yuanshi", "isShow": 1, "condition": "804&1|602&0&1&2", @@ -59738,7 +61706,7 @@ { "id": 1040802011, "name": "高级短刃", - "info": "可以对相邻敌军发动反击\r\n反击伤害+50%", + "info": "可以对相邻敌军发动反击\n反击伤害+50%", "img": "gongbing_tianfu_duanren", "isShow": 1, "condition": "&", @@ -59786,7 +61754,7 @@ { "id": 1040803011, "name": "高级劲弩", - "info": "普攻额外造成20%的物理伤害\r\n\r\n多段攻击技能仅第一段伤害有效", + "info": "普攻额外造成20%的物理伤害\n\n多段攻击技能仅第一段伤害有效", "img": "gongbing_tianfu_jingnu", "isShow": 1, "condition": "&", @@ -59834,7 +61802,7 @@ { "id": 1050201011, "name": "轻身", - "info": "怒气技的攻击范围扩大\r\n攻击后移动到目标最近的格子上", + "info": "怒气技的攻击范围扩大\n攻击后移动到目标最近的格子上", "img": "youxia_tianfu_qingshen", "isShow": 1, "condition": "602&1", @@ -59978,7 +61946,7 @@ { "id": 1050402011, "name": "短打", - "info": "主动攻击远程职业时,额外造成10%的物理伤害\r\n\r\n多段攻击技能仅第一段伤害有效", + "info": "主动攻击远程职业时,额外造成10%的物理伤害\n\n多段攻击技能仅第一段伤害有效", "img": "youxia_tianfu_duanda", "isShow": 1, "condition": "606&2&4&6&7|602&0&1&2", @@ -60098,7 +62066,7 @@ { "id": 1050801011, "name": "高级轻身", - "info": "怒气技的攻击范围扩大\r\n攻击后移动到目标最近的格子上", + "info": "怒气技的攻击范围扩大\n攻击后移动到目标最近的格子上", "img": "youxia_tianfu_qingshen", "isShow": 1, "condition": "602&1", @@ -60242,7 +62210,7 @@ { "id": 1060201011, "name": "杀阵", - "info": "范围内我军的物攻强度+5、策攻强度+5\r\n效果会被【高级杀阵】覆盖", + "info": "范围内我军的物攻强度+5、策攻强度+5\n效果会被【高级杀阵】覆盖", "img": "ceshi_tianfu_shazhen", "isShow": 1, "condition": "&", @@ -60266,7 +62234,7 @@ { "id": 1060202011, "name": "少智", - "info": "范围内敌军的策攻抗性-5\r\n效果会被【高级少智】覆盖", + "info": "范围内敌军的策攻抗性-5\n效果会被【高级少智】覆盖", "img": "ceshi_tianfu_shaozhi", "isShow": 1, "condition": "&", @@ -60290,7 +62258,7 @@ { "id": 1060203011, "name": "御阵", - "info": "范围内我军的策攻抗性+5\r\n效果会被【高级御阵】覆盖", + "info": "范围内我军的策攻抗性+5\n效果会被【高级御阵】覆盖", "img": "ceshi_tianfu_yuzhen", "isShow": 1, "condition": "&", @@ -60314,7 +62282,7 @@ { "id": 1060401011, "name": "保身", - "info": "与友军相邻时,额外造成10%的策略伤害\r\n\r\n多段攻击技能仅第一段伤害有效", + "info": "与友军相邻时,额外造成10%的策略伤害\n\n多段攻击技能仅第一段伤害有效", "img": "ceshi_tianfu_baoshen", "isShow": 1, "condition": "407&2004&1", @@ -60338,7 +62306,7 @@ { "id": 1060402011, "name": "筹算", - "info": "命中至少2名敌军时,额外造成10%的策略伤害\r\n\r\n多段攻击技能仅第一段伤害有效", + "info": "命中至少2名敌军时,额外造成10%的策略伤害\n\n多段攻击技能仅第一段伤害有效", "img": "ceshi_tianfu_chousuan", "isShow": 1, "condition": "713&1&1", @@ -60530,7 +62498,7 @@ { "id": 1070101011, "name": "医术", - "info": "普通攻击可对2格范围内的指定敌军造成70%的策略伤害\r\n同时恢复2格范围内生命值最低的友军自身攻击30%的生命值", + "info": "普通攻击可对2格范围内的指定敌军造成70%的策略伤害\n同时恢复2格范围内生命值最低的友军自身攻击30%的生命值", "img": "pugong_yishu", "isShow": 0, "condition": "&", @@ -60554,7 +62522,7 @@ { "id": 1070201011, "name": "金针", - "info": "普通攻击额外造成20%的策略伤害\r\n多段攻击技能仅第一段伤害有效", + "info": "普通攻击额外造成20%的策略伤害\n多段攻击技能仅第一段伤害有效", "img": "yisheng_tianfu_jinzhen", "isShow": 1, "condition": "602&0", @@ -60746,7 +62714,7 @@ { "id": 1070801011, "name": "高级金针", - "info": "普通攻击额外造成50%的策略伤害\r\n多段攻击技能仅第一段伤害有效", + "info": "普通攻击额外造成50%的策略伤害\n多段攻击技能仅第一段伤害有效", "img": "yisheng_tianfu_jinzhen", "isShow": 1, "condition": "602&0", @@ -61082,7 +63050,7 @@ { "id": 2010302011, "name": "雄刀裂甲", - "info": "回合技伤害提高30%\r\n\r\n多段攻击技能仅第一段伤害有效", + "info": "回合技伤害提高30%\n\n多段攻击技能仅第一段伤害有效", "img": "qianghua_2", "isShow": 1, "condition": "602&2", @@ -61346,7 +63314,7 @@ { "id": 2020201011, "name": "长蛇之势", - "info": "若攻击时只命中1个目标,额外造成25%的物理伤害\r\n\r\n多段攻击技能仅第一段伤害有效", + "info": "若攻击时只命中1个目标,额外造成25%的物理伤害\n\n多段攻击技能仅第一段伤害有效", "img": "qianghua_2", "isShow": 1, "condition": "713&2&1", @@ -61370,7 +63338,7 @@ { "id": 2020301011, "name": "断魂穿心", - "info": "怒气技额外造成15%的物理伤害\r\n\r\n多段攻击技能仅第一段伤害有效", + "info": "怒气技额外造成15%的物理伤害\n\n多段攻击技能仅第一段伤害有效", "img": "qianghua_2", "isShow": 1, "condition": "602&1", @@ -61682,7 +63650,7 @@ { "id": 2030301011, "name": "铁马奔腾", - "info": "本回合移动至少3格,怒气技额外造成20%的物理伤害\r\n\r\n多段攻击技能仅第一段伤害有效", + "info": "本回合移动至少3格,怒气技额外造成20%的物理伤害\n\n多段攻击技能仅第一段伤害有效", "img": "qianghua_2", "isShow": 1, "condition": "709&2&1|602&1", @@ -61994,7 +63962,7 @@ { "id": 2040301011, "name": "千钧利箭", - "info": "攻击非相邻敌军,怒气技额外造成20%的物理伤害\r\n\r\n多段攻击技能仅第一段伤害有效", + "info": "攻击非相邻敌军,怒气技额外造成20%的物理伤害\n\n多段攻击技能仅第一段伤害有效", "img": "qianghua_2", "isShow": 1, "condition": "804&1|602&1", @@ -62306,7 +64274,7 @@ { "id": 2050301011, "name": "博浪一击", - "info": "攻击远程职业时,怒气技额外造成20%的物理伤害\r\n\r\n多段攻击技能仅第一段伤害有效", + "info": "攻击远程职业时,怒气技额外造成20%的物理伤害\n\n多段攻击技能仅第一段伤害有效", "img": "qianghua_2", "isShow": 1, "condition": "606&2&4&6&7|602&1", @@ -62618,7 +64586,7 @@ { "id": 2060301011, "name": "以奇胜兵", - "info": "攻击非相邻敌军,怒气技额外造成20%的策略伤害\r\n\r\n多段攻击技能仅第一段伤害有效", + "info": "攻击非相邻敌军,怒气技额外造成20%的策略伤害\n\n多段攻击技能仅第一段伤害有效", "img": "qianghua_2", "isShow": 1, "condition": "804&1|602&1", @@ -66455,6 +68423,4374 @@ "rangeUi": 0, "passiveType": 0 }, + { + "id": 3011101311, + "name": 0, + "info": "自身释放怒气技每命中1名敌军,自身获得%d3011101311%d", + "img": "ru_beidong1", + "isShow": 1, + "condition": "602&1", + "aim": 0, + "percent": 100, + "node": 13, + "type": 100, + "gainvalue": "3011101311&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3011101312, + "name": 0, + "info": "暴击伤害+15%,最多150%", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 16, + "type": 200, + "gainvalue": "18&15&150", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3011102311, + "name": 0, + "info": "怒气技必定暴击", + "img": "ru_beidong1", + "isShow": 1, + "condition": "602&1", + "aim": 0, + "percent": 100, + "node": 7, + "type": 200, + "gainvalue": "10&999&999", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3011103311, + "name": 0, + "info": "自身释放怒气技时,物攻强度和策攻强度+200", + "img": "ru_beidong1", + "isShow": 1, + "condition": "602&1", + "aim": 0, + "percent": 100, + "node": 7, + "type": 200, + "gainvalue": "19&200&200&21&200&200", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3011104311, + "name": 0, + "info": "自身释放怒气技时,所有我方武将获得%d1302%d", + "img": "ru_beidong1", + "isShow": 1, + "condition": "602&1", + "aim": 0, + "percent": 100, + "node": 7, + "type": 107, + "gainvalue": "999&1&1302", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3011201311, + "name": 0, + "info": "自身释放怒气技每命中1名敌军,自身获得%d3011201311%d", + "img": "ru_beidong1", + "isShow": 1, + "condition": "602&1", + "aim": 0, + "percent": 100, + "node": 13, + "type": 100, + "gainvalue": "3011201311&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3011201312, + "name": 0, + "info": "暴击伤害+25%,最多250%", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 16, + "type": 200, + "gainvalue": "18&25&250", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3011202311, + "name": 0, + "info": "主动技能必定暴击", + "img": "ru_beidong1", + "isShow": 1, + "condition": "602&1&2", + "aim": 0, + "percent": 100, + "node": 7, + "type": 200, + "gainvalue": "10&999&999", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3011203311, + "name": 0, + "info": "自身释放怒气技时,物攻强度和策攻强度+260", + "img": "ru_beidong1", + "isShow": 1, + "condition": "602&1", + "aim": 0, + "percent": 100, + "node": 7, + "type": 200, + "gainvalue": "19&260&260&21&260&260", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3011204311, + "name": 0, + "info": "自身释放怒气技时,所有我方武将获得%d1304%d", + "img": "ru_beidong1", + "isShow": 1, + "condition": "602&1", + "aim": 0, + "percent": 100, + "node": 7, + "type": 107, + "gainvalue": "999&1&1304", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3012101311, + "name": 0, + "info": "自身怒气获取效率+50%", + "img": "ru_beidong2", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 16, + "type": 200, + "gainvalue": "30&50&50", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3012102311, + "name": 0, + "info": "场上每有一名友军,使我方所有武将释放怒气技时的物攻强度和策攻强度+5", + "img": "ru_beidong2", + "isShow": 1, + "condition": "400&999&0&1|602&1", + "aim": 0, + "percent": 100, + "node": 7, + "type": 200, + "gainvalue": "19&5&30&21&5&30", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "1&999&0", + "haloGroup": 3012102311, + "haloLevel": 1, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3012103311, + "name": 0, + "info": "击杀敌军时,我方所有武将获得300点怒气", + "img": "ru_beidong2", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 12, + "type": 211, + "gainvalue": "1&999&1&300", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3012104311, + "name": 0, + "info": "每有一个友军在场,自身释放怒气技时的物攻强度和策攻强度+10", + "img": "ru_beidong2", + "isShow": 1, + "condition": "400&999&0&1|602&1", + "aim": 0, + "percent": 100, + "node": 7, + "type": 200, + "gainvalue": "19&10&60&21&10&60", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3012105311, + "name": 0, + "info": "自身释放怒气技时,暴击+30", + "img": "ru_beidong2", + "isShow": 1, + "condition": "602&1", + "aim": 0, + "percent": 100, + "node": 7, + "type": 200, + "gainvalue": "10&30&30", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3012106311, + "name": 0, + "info": "我方武将在释放怒气技时,物攻强度和策攻强度+20", + "img": "ru_beidong2", + "isShow": 1, + "condition": "602&1", + "aim": 0, + "percent": 100, + "node": 7, + "type": 200, + "gainvalue": "19&20&20&21&20&20", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "1&999&0", + "haloGroup": 3012106311, + "haloLevel": 1, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3012201311, + "name": 0, + "info": "自身怒气获取效率+65%", + "img": "ru_beidong2", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 16, + "type": 200, + "gainvalue": "30&65&65", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3012202311, + "name": 0, + "info": "场上每有一名友军,使我方所有武将释放怒气技时的物攻强度和策攻强度+7", + "img": "ru_beidong2", + "isShow": 1, + "condition": "400&999&0&1|602&1", + "aim": 0, + "percent": 100, + "node": 7, + "type": 200, + "gainvalue": "19&7&42&21&7&42", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "1&999&0", + "haloGroup": 3012102311, + "haloLevel": 1, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3012203311, + "name": 0, + "info": "击杀敌军时,我方所有武将获得400点怒气", + "img": "ru_beidong2", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 12, + "type": 211, + "gainvalue": "1&999&1&400", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3012204311, + "name": 0, + "info": "每有一个友军在场,自身释放怒气技时的物攻强度和策攻强度+13", + "img": "ru_beidong2", + "isShow": 1, + "condition": "400&999&0&1|602&1", + "aim": 0, + "percent": 100, + "node": 7, + "type": 200, + "gainvalue": "19&13&75&21&13&75", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3012205311, + "name": 0, + "info": "自身释放怒气技时,暴击+40", + "img": "ru_beidong2", + "isShow": 1, + "condition": "602&1", + "aim": 0, + "percent": 100, + "node": 7, + "type": 200, + "gainvalue": "10&40&40", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3012206311, + "name": 0, + "info": "我方武将在释放怒气技时,物攻强度和策攻强度+26", + "img": "ru_beidong2", + "isShow": 1, + "condition": "602&1", + "aim": 0, + "percent": 100, + "node": 7, + "type": 200, + "gainvalue": "19&26&26&21&26&26", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "1&999&0", + "haloGroup": 3012106311, + "haloLevel": 1, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3013101311, + "name": 0, + "info": "我方武将怒气获取效率+20%", + "img": "ru_beidong3", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 16, + "type": 200, + "gainvalue": "30&20&20", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "1&999&0", + "haloGroup": 3013101311, + "haloLevel": 1, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3013102311, + "name": 0, + "info": "使范围内我方武将的物攻强度和策攻强度+10", + "img": "ru_beidong3", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 16, + "type": 200, + "gainvalue": "19&10&10&21&10&10", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "1&2025&0", + "haloGroup": 3013102311, + "haloLevel": 1, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 2025, + "passiveType": 0 + }, + { + "id": 3013103311, + "name": 0, + "info": "使范围内敌军的物攻抗性和策攻抗性-10", + "img": "ru_beidong3", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 16, + "type": 200, + "gainvalue": "20&-10&-10&22&-10&-10", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "1&2025&1", + "haloGroup": 3013013311, + "haloLevel": 1, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 2025, + "passiveType": 0 + }, + { + "id": 3013104311, + "name": 0, + "info": "普攻额外获得75点怒气", + "img": "ru_beidong3", + "isShow": 1, + "condition": "602&0", + "aim": 0, + "percent": 100, + "node": 7, + "type": 220, + "gainvalue": "29&75&75", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3013105311, + "name": 0, + "info": "战斗开始时,自身获得500点怒气", + "img": "ru_beidong3", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 1, + "type": 220, + "gainvalue": "29&500&500", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3013106311, + "name": 0, + "info": "回合技的冷却时间-1", + "img": "ru_beidong3", + "isShow": 1, + "condition": "602&2", + "aim": 0, + "percent": 100, + "node": 7, + "type": 616, + "gainvalue": "-1&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3013107311, + "name": 0, + "info": "自身主动攻击命中敌军时,所有我方武将获得100点怒气", + "img": "ru_beidong3", + "isShow": 1, + "condition": "602&0&1&2|605&2", + "aim": 0, + "percent": 100, + "node": 7, + "type": 211, + "gainvalue": "1&999&1&100", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3013108311, + "name": 0, + "info": "回合开始时,使所有我方武将获得50点怒气", + "img": "ru_beidong3", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 2, + "type": 211, + "gainvalue": "1&999&1&50", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3013201311, + "name": 0, + "info": "我方武将怒气获取效率+25%", + "img": "ru_beidong3", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 16, + "type": 200, + "gainvalue": "30&25&25", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "1&999&0", + "haloGroup": 3013101311, + "haloLevel": 1, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3013202311, + "name": 0, + "info": "使范围内我方武将的物攻强度和策攻强度+13", + "img": "ru_beidong3", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 16, + "type": 200, + "gainvalue": "19&13&13&21&13&13", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "1&2025&0", + "haloGroup": 3013102311, + "haloLevel": 1, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 2025, + "passiveType": 0 + }, + { + "id": 3013203311, + "name": 0, + "info": "使范围内敌军的物攻抗性和策攻抗性-13", + "img": "ru_beidong3", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 16, + "type": 200, + "gainvalue": "20&-13&-13&22&-13&-13", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "1&2025&1", + "haloGroup": 3013013311, + "haloLevel": 1, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 2025, + "passiveType": 0 + }, + { + "id": 3013204311, + "name": 0, + "info": "普攻额外获得100点怒气", + "img": "ru_beidong3", + "isShow": 1, + "condition": "602&0", + "aim": 0, + "percent": 100, + "node": 7, + "type": 220, + "gainvalue": "29&100&100", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3013205311, + "name": 0, + "info": "战斗开始时,自身获得650点怒气", + "img": "ru_beidong3", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 1, + "type": 220, + "gainvalue": "29&650&650", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3013206311, + "name": 0, + "info": "回合技的冷却时间-2", + "img": "ru_beidong3", + "isShow": 1, + "condition": "602&2", + "aim": 0, + "percent": 100, + "node": 7, + "type": 616, + "gainvalue": "-2&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3013207311, + "name": 0, + "info": "自身主动攻击命中敌军时,所有我方武将获得130点怒气", + "img": "ru_beidong3", + "isShow": 1, + "condition": "602&0&1&2|605&2", + "aim": 0, + "percent": 100, + "node": 7, + "type": 211, + "gainvalue": "1&999&1&130", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3013208311, + "name": 0, + "info": "回合开始时,使所有我方武将获得65点怒气", + "img": "ru_beidong3", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 2, + "type": 211, + "gainvalue": "1&999&1&65", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3014101111, + "name": 0, + "info": "若本技能击杀敌军,可再次攻击", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 11, + "type": 408, + "gainvalue": "&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3014102111, + "name": 0, + "info": "自身获得%d2004%d\n范围内友军获得%d1301%d", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 7, + "type": 999, + "gainvalue": "3014102112&3014102113", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3014102112, + "name": 0, + "info": "自身获得%d2004%d", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 7, + "type": 100, + "gainvalue": "2004&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3014102113, + "name": 0, + "info": "范围内友军获得%d1301%d", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 1, + "percent": 100, + "node": 7, + "type": 100, + "gainvalue": "1301&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3014103111, + "name": 0, + "info": "使指定友军获得1000点怒气", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 1, + "percent": 100, + "node": 7, + "type": 220, + "gainvalue": "29&1000&1000", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3015101211, + "name": 0, + "info": "是自身获得%d3015101211%d", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 7, + "type": 100, + "gainvalue": "3015101211&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3015101212, + "name": 0, + "info": "怒气消耗-1000", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 16, + "type": 209, + "gainvalue": "-1000&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3015101213, + "name": 0, + "info": "清除%d3015101211%d", + "img": 1, + "isShow": 0, + "condition": "602&1", + "aim": 0, + "percent": 100, + "node": 7, + "type": 115, + "gainvalue": "3015101211&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3015102211, + "name": 0, + "info": "施加%d25%d", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 1, + "percent": 100, + "node": 7, + "type": 100, + "gainvalue": "25&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3015103211, + "name": 0, + "info": "使目标获得200点怒气", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 1, + "percent": 100, + "node": 7, + "type": 220, + "gainvalue": "29&200&200", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3031100001, + "name": 0, + "info": "先攻", + "img": 1, + "isShow": 0, + "condition": "602&0|402&1", + "aim": 1, + "percent": 100, + "node": 4, + "type": 600, + "gainvalue": "303110001&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "taishici_moshouwuju", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3031100002, + "name": 0, + "info": "每层使【先攻】时的物攻强度+5", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 7, + "type": 200, + "gainvalue": "19&5&100", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3031100003, + "name": 0, + "info": "清除自身1层", + "img": 1, + "isShow": 0, + "condition": "602&5", + "aim": 0, + "percent": 100, + "node": 7, + "type": 137, + "gainvalue": "1&3031100001", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3031101311, + "name": 0, + "info": "自身每拥有1层%d3031100001%d,【先攻】的暴击伤害+10%", + "img": "bing_beidong1", + "isShow": 1, + "condition": "307&1&1&3031100001|602&5", + "aim": 0, + "percent": 100, + "node": 7, + "type": 200, + "gainvalue": "18&10&200", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "bingjia_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3031102311, + "name": 0, + "info": "我方武将拥有至少10层%d3031100001%d时,发动【先攻】时必定暴击", + "img": "bing_beidong1", + "isShow": 1, + "condition": "306&1&1&9&3031100001|602&5", + "aim": 0, + "percent": 100, + "node": 7, + "type": 200, + "gainvalue": "10&999&999", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "bingjia_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3031103311, + "name": 0, + "info": "我方武将在释放【先攻】时,每有1层%d3031100001%d,造成5%的物理伤害", + "img": "bing_beidong1", + "isShow": 1, + "condition": "307&1&1&3031100001|602&5", + "aim": 0, + "percent": 100, + "node": 7, + "type": 214, + "gainvalue": "5&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "bingjia_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3031104311, + "name": 0, + "info": "自身释放【先攻】时,额外造成100%的物理伤害", + "img": "bing_beidong1", + "isShow": 1, + "condition": "602&5", + "aim": 0, + "percent": 100, + "node": 7, + "type": 214, + "gainvalue": "100&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "bingjia_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3031201311, + "name": 0, + "info": "自身每拥有1层%d3031100001%d,【先攻】的暴击伤害+13%", + "img": "bing_beidong1", + "isShow": 1, + "condition": "307&1&1&3031100001|602&5", + "aim": 0, + "percent": 100, + "node": 7, + "type": 200, + "gainvalue": "18&13&260", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "bingjia_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3031202311, + "name": 0, + "info": "我方武将拥有至少7层%d3031100001%d时,发动【先攻】时必定暴击", + "img": "bing_beidong1", + "isShow": 1, + "condition": "306&1&1&6&3031100001|602&5", + "aim": 0, + "percent": 100, + "node": 7, + "type": 200, + "gainvalue": "10&999&999", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "bingjia_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3031203311, + "name": 0, + "info": "我方武将在释放【先攻】时,每有1层%d3031100001%d,造成7%的物理伤害", + "img": "bing_beidong1", + "isShow": 1, + "condition": "307&1&1&3031100001|602&5", + "aim": 0, + "percent": 100, + "node": 7, + "type": 214, + "gainvalue": "7&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "bingjia_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3031204311, + "name": 0, + "info": "自身释放【先攻】时,额外造成130%的物理伤害", + "img": "bing_beidong1", + "isShow": 1, + "condition": "602&5", + "aim": 0, + "percent": 100, + "node": 7, + "type": 214, + "gainvalue": "130&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "bingjia_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3032101311, + "name": 0, + "info": "我方武将释放【先攻】时,使受击者的怒气减少200", + "img": "bing_beidong2", + "isShow": 1, + "condition": "602&5", + "aim": 1, + "percent": 100, + "node": 7, + "type": 220, + "gainvalue": "29&-200&-200", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "bingjia_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3032102311, + "name": 0, + "info": "我方武将每回合开始时,获得1层%d3031100001%d", + "img": "bing_beidong2", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 2, + "type": 100, + "gainvalue": "3031100001&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "1&999&0", + "haloGroup": 3032102311, + "haloLevel": 1, + "seidNameImage": "bingjia_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3032103311, + "name": 0, + "info": "击杀敌军时,使我方武将获得2层%d3031100001%d", + "img": "bing_beidong2", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 11, + "type": 999, + "gainvalue": "3032103312&3032103313", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "bingjia_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3032103312, + "name": 0, + "info": "对我方武将施加1层%d3031100001%d", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 11, + "type": 107, + "gainvalue": "999&1&3031100001", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "bingjia_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3032103313, + "name": 0, + "info": "对我方武将施加1层%d3031100001%d", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 11, + "type": 107, + "gainvalue": "999&1&3031100001", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "bingjia_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3032104311, + "name": 0, + "info": "自身释放【先攻】时,使我方武将获得100点怒气", + "img": "bing_beidong2", + "isShow": 1, + "condition": "602&5", + "aim": 0, + "percent": 100, + "node": 7, + "type": 211, + "gainvalue": "1&999&1&100", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "bingjia_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3032105311, + "name": 0, + "info": "普攻范围+1", + "img": "bing_beidong2", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 16, + "type": 602, + "gainvalue": "1&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "bingjia_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3032106311, + "name": 0, + "info": "自身击杀敌军时,获得3层%d3031100001%d", + "img": "bing_beidong2", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 11, + "type": 116, + "gainvalue": "3&3031100001", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "bingjia_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3032201311, + "name": 0, + "info": "我方武将释放【先攻】时,使受击者的怒气减少250", + "img": "bing_beidong2", + "isShow": 1, + "condition": "602&5", + "aim": 1, + "percent": 100, + "node": 7, + "type": 220, + "gainvalue": "29&-250&-250", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "bingjia_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3032202311, + "name": 0, + "info": "我方武将每回合开始时,获得2层%d3031100001%d", + "img": "bing_beidong2", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 2, + "type": 116, + "gainvalue": "2&3031100001", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "1&999&0", + "haloGroup": 3032102311, + "haloLevel": 1, + "seidNameImage": "bingjia_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3032203311, + "name": 0, + "info": "击杀敌军时,使我方武将获得3层%d3031100001%d", + "img": "bing_beidong2", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 11, + "type": 999, + "gainvalue": "3032203312&3032203313&3032203314", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "bingjia_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3032203312, + "name": 0, + "info": "对我方武将施加1层%d3031100001%d", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 11, + "type": 107, + "gainvalue": "999&1&3031100001", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "bingjia_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3032203313, + "name": 0, + "info": "对我方武将施加1层%d3031100001%d", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 11, + "type": 107, + "gainvalue": "999&1&3031100001", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "bingjia_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3032203314, + "name": 0, + "info": "对我方武将施加1层%d3031100001%d", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 11, + "type": 107, + "gainvalue": "999&1&3031100001", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "bingjia_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3032204311, + "name": 0, + "info": "自身释放【先攻】时,使我方武将获得130点怒气", + "img": "bing_beidong2", + "isShow": 1, + "condition": "602&5", + "aim": 0, + "percent": 100, + "node": 7, + "type": 211, + "gainvalue": "1&999&1&130", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "bingjia_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3032205311, + "name": 0, + "info": "普通攻击的攻击范围+1\n反击的攻击范围+1", + "img": "bing_beidong2", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 16, + "type": 999, + "gainvalue": "3032205312&3032205313", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "bingjia_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3032205312, + "name": 0, + "info": "普通攻击的攻击范围+1", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 16, + "type": 602, + "gainvalue": "1&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "bingjia_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3032205313, + "name": 0, + "info": "反击的攻击范围+1", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 16, + "type": 609, + "gainvalue": "1024&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "bingjia_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3032206311, + "name": 0, + "info": "自身击杀敌军时,获得4层%d3031100001%d", + "img": "bing_beidong2", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 11, + "type": 116, + "gainvalue": "4&3031100001", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "bingjia_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3033101311, + "name": 0, + "info": "自身发动【先攻】时,使随机1名友军获得%d3031100001%d", + "img": "bing_beidong3", + "isShow": 1, + "condition": "602&5", + "aim": 0, + "percent": 100, + "node": 7, + "type": 107, + "gainvalue": "999&1&3031100001&101&1", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "bingjia_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3033102311, + "name": 0, + "info": "我方武将释放【先攻】时,暴击伤害+30%", + "img": "bing_beidong3", + "isShow": 1, + "condition": "602&5", + "aim": 0, + "percent": 100, + "node": 7, + "type": 200, + "gainvalue": "18&30&30", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "1&999&0", + "haloGroup": 3033102311, + "haloLevel": 1, + "seidNameImage": "bingjia_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3033103311, + "name": 0, + "info": "使用怒气技时,使我方武将获得1层%d3031100001%d", + "img": "bing_beidong3", + "isShow": 1, + "condition": "602&1", + "aim": 0, + "percent": 100, + "node": 7, + "type": 107, + "gainvalue": "999&1&3031100001", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "bingjia_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3033104311, + "name": 0, + "info": "自身释放【先攻】时,自身获得100点怒气", + "img": "bing_beidong3", + "isShow": 1, + "condition": "602&5", + "aim": 0, + "percent": 100, + "node": 7, + "type": 220, + "gainvalue": "29&100&100", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "bingjia_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3033105311, + "name": 0, + "info": "我方武将在释放【先攻】时,物攻强度+30", + "img": "bing_beidong3", + "isShow": 1, + "condition": "602&5", + "aim": 0, + "percent": 100, + "node": 7, + "type": 200, + "gainvalue": "19&30&30", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "1&999&0", + "haloGroup": 3033105311, + "haloLevel": 1, + "seidNameImage": "bingjia_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3033106311, + "name": 0, + "info": "我方武将在释放【先攻】时,额外造成50%的物理伤害", + "img": "bing_beidong3", + "isShow": 1, + "condition": "602&5", + "aim": 0, + "percent": 100, + "node": 7, + "type": 214, + "gainvalue": "50&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "1&999&0", + "haloGroup": 3033106311, + "haloLevel": 1, + "seidNameImage": "bingjia_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3033107311, + "name": 0, + "info": "我方武将击杀敌军时,击杀者获得1层%d3031100001%d", + "img": "bing_beidong3", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 11, + "type": 100, + "gainvalue": "3031100001&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "1&999&0", + "haloGroup": 3033107311, + "haloLevel": 1, + "seidNameImage": "bingjia_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3033108311, + "name": 0, + "info": "回合开始时,自身获得1层%d3031100001%d", + "img": "bing_beidong3", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 2, + "type": 100, + "gainvalue": "3031100001&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "bingjia_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3033201311, + "name": 0, + "info": "自身发动【先攻】时,使随机2名友军获得%d3031100001%d", + "img": "bing_beidong3", + "isShow": 1, + "condition": "602&5", + "aim": 0, + "percent": 100, + "node": 7, + "type": 107, + "gainvalue": "999&1&3031100001&101&2", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "bingjia_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3033202311, + "name": 0, + "info": "我方武将释放【先攻】时,暴击伤害+40%", + "img": "bing_beidong3", + "isShow": 1, + "condition": "602&5", + "aim": 0, + "percent": 100, + "node": 7, + "type": 200, + "gainvalue": "18&40&40", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "1&999&0", + "haloGroup": 3033102311, + "haloLevel": 1, + "seidNameImage": "bingjia_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3033203311, + "name": 0, + "info": "使用怒气技和回合技时,使我方武将获得1层%d3031100001%d", + "img": "bing_beidong3", + "isShow": 1, + "condition": "602&1&2", + "aim": 0, + "percent": 100, + "node": 7, + "type": 107, + "gainvalue": "999&1&3031100001", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "bingjia_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3033204311, + "name": 0, + "info": "自身释放【先攻】时,自身获得130点怒气", + "img": "bing_beidong3", + "isShow": 1, + "condition": "602&5", + "aim": 0, + "percent": 100, + "node": 7, + "type": 220, + "gainvalue": "29&130&130", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "bingjia_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3033205311, + "name": 0, + "info": "我方武将在释放【先攻】时,物攻强度+40", + "img": "bing_beidong3", + "isShow": 1, + "condition": "602&5", + "aim": 0, + "percent": 100, + "node": 7, + "type": 200, + "gainvalue": "19&40&40", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "1&999&0", + "haloGroup": 3033105311, + "haloLevel": 1, + "seidNameImage": "bingjia_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3033206311, + "name": 0, + "info": "我方武将在释放【先攻】时,额外造成65%的物理伤害", + "img": "bing_beidong3", + "isShow": 1, + "condition": "602&5", + "aim": 0, + "percent": 100, + "node": 7, + "type": 214, + "gainvalue": "65&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "1&999&0", + "haloGroup": 3033106311, + "haloLevel": 1, + "seidNameImage": "bingjia_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3033207311, + "name": 0, + "info": "我方武将击杀敌军时,击杀者获得2层%d3031100001%d", + "img": "bing_beidong3", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 11, + "type": 116, + "gainvalue": "2&3031100001", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "1&999&0", + "haloGroup": 3033107311, + "haloLevel": 1, + "seidNameImage": "bingjia_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3033208311, + "name": 0, + "info": "回合开始时,自身获得2层%d3031100001%d", + "img": "bing_beidong3", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 2, + "type": 116, + "gainvalue": "2&3031100001", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "bingjia_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3034101111, + "name": 0, + "info": "攻击后瞬移到目标最近的格子\n自身获得3层%d3031100001%d", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 1, + "type": 999, + "gainvalue": "3034101112&3034101113", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3034101112, + "name": 0, + "info": "攻击后瞬移到目标最近的格子", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 7, + "type": 407, + "gainvalue": "&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3034101113, + "name": 0, + "info": "自身获得3层%d3031100001%d", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 1, + "percent": 100, + "node": 7, + "type": 116, + "gainvalue": "3&3031100001", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3034102111, + "name": 0, + "info": "自身获得【物抗+】\n降低范围内敌军200点怒气", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 1, + "type": 999, + "gainvalue": "3034102112&3034102113", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3034102112, + "name": 0, + "info": "自身获得【物抗+】", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 7, + "type": 100, + "gainvalue": "2004&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3034102113, + "name": 0, + "info": "降低范围内敌军200点怒气", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 1, + "percent": 100, + "node": 7, + "type": 220, + "gainvalue": "29&-200&-200", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3034103111, + "name": 0, + "info": "使指定友军获得3层%d3031100001%d", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 1, + "percent": 100, + "node": 7, + "type": 116, + "gainvalue": "3&3031100001", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3035101211, + "name": 0, + "info": "自身获得1层%d3031100001%d", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 7, + "type": 100, + "gainvalue": "3031100001&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3035102211, + "name": 0, + "info": "施加【封技】", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 1, + "percent": 100, + "node": 7, + "type": 100, + "gainvalue": "21&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3035103211, + "name": 0, + "info": "使范围内友军获得1层%d3031100001%d", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 1, + "percent": 100, + "node": 7, + "type": 100, + "gainvalue": "3031100001&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3041100001, + "name": 0, + "info": "若触发再此攻击,清除状态", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 13, + "type": 700, + "gainvalue": "3041100002&0&3041100003", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": 0, + "rangeSeid": 0, + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": 0, + "passivespineName": 0, + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3041100002, + "name": 0, + "info": "主动攻击后,可再次发动攻击", + "img": 1, + "isShow": 0, + "condition": "602&0&1&2", + "aim": 0, + "percent": 100, + "node": 13, + "type": 408, + "gainvalue": "&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3041100003, + "name": 0, + "info": "主动攻击后清除%d3041100002%d", + "img": 1, + "isShow": 0, + "condition": "602&0&1&2", + "aim": 0, + "percent": 100, + "node": 13, + "type": 137, + "gainvalue": "1&3041100002", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3041101311, + "name": 0, + "info": "攻击前每移动一格,获得10层%d3041100001%d", + "img": "dao_beidong1", + "isShow": 1, + "condition": "717&1", + "aim": 0, + "percent": 100, + "node": 7, + "type": 116, + "gainvalue": "10&3041100001", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3041102311, + "name": 0, + "info": "我方武将在攻击前,每移动1格,攻击时额外造成30%的物理伤害", + "img": "dao_beidong1", + "isShow": 1, + "condition": "717&1|602&0&1&2", + "aim": 0, + "percent": 100, + "node": 7, + "type": 214, + "gainvalue": "30&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "1&999&0", + "haloGroup": 3041101311, + "haloLevel": 1, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3041103311, + "name": 0, + "info": "我方武将在主动攻击前至少移动5格,则本次攻击暴击伤害+100%", + "img": "dao_beidong1", + "isShow": 1, + "condition": "709&4&1", + "aim": 0, + "percent": 100, + "node": 7, + "type": 200, + "gainvalue": "18&100&100", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "1&999&0", + "haloGroup": 3041102311, + "haloLevel": 1, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3041104311, + "name": 0, + "info": "自身拥有%d3041100002%d时,释放技能时必定暴击", + "img": "dao_beidong1", + "isShow": 1, + "condition": "300&1&3041100002|602&1&2", + "aim": 0, + "percent": 100, + "node": 7, + "type": 200, + "gainvalue": "10&999&999", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3041201311, + "name": 0, + "info": "攻击前每移动一格,获得12层%d3041100001%d", + "img": "dao_beidong1", + "isShow": 1, + "condition": "717&1", + "aim": 0, + "percent": 100, + "node": 7, + "type": 116, + "gainvalue": "12&3041100001", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3041202311, + "name": 0, + "info": "我方武将在攻击前,每移动1格,攻击时额外造成40%的物理伤害", + "img": "dao_beidong1", + "isShow": 1, + "condition": "717&1|602&0&1&2", + "aim": 0, + "percent": 100, + "node": 7, + "type": 214, + "gainvalue": "40&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "1&999&0", + "haloGroup": 3041101311, + "haloLevel": 1, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3041203311, + "name": 0, + "info": "我方武将在主动攻击前至少移动5格,则本次攻击暴击伤害+130%", + "img": "dao_beidong1", + "isShow": 1, + "condition": "709&4&1", + "aim": 0, + "percent": 100, + "node": 7, + "type": 200, + "gainvalue": "18&130&130", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "1&999&0", + "haloGroup": 3041102311, + "haloLevel": 1, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3041204311, + "name": 0, + "info": "自身拥有%d3041100002%d时,主动攻击时必定暴击", + "img": "dao_beidong1", + "isShow": 1, + "condition": "300&1&3041100002|602&0&1&2", + "aim": 0, + "percent": 100, + "node": 7, + "type": 200, + "gainvalue": "10&999&999", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3042101311, + "name": 0, + "info": "我方拥有%d3041100002%d的武将,物攻强度+100", + "img": "dao_beidong2", + "isShow": 1, + "condition": "300&1&3041100002", + "aim": 0, + "percent": 100, + "node": 16, + "type": 200, + "gainvalue": "19&100&100", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "1&999&0", + "haloGroup": 3041104311, + "haloLevel": 1, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3042102311, + "name": 0, + "info": "我方武将攻击前每移动1格,物攻强度+20", + "img": "dao_beidong2", + "isShow": 1, + "condition": "717&1", + "aim": 0, + "percent": 100, + "node": 7, + "type": 200, + "gainvalue": "19&20&1000", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "1&999&0", + "haloGroup": 3042101311, + "haloLevel": 1, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3042103311, + "name": 0, + "info": "行动结束时,本回合每移动1格获得5层%d3041100001%d", + "img": "dao_beidong2", + "isShow": 1, + "condition": "703&1", + "aim": 0, + "percent": 100, + "node": 15, + "type": 116, + "gainvalue": "5&3041100001", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3042104311, + "name": 0, + "info": "击杀敌军时,自身获得30层%d3041100001%d", + "img": "dao_beidong2", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 11, + "type": 116, + "gainvalue": "30&3041100001", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3042105311, + "name": 0, + "info": "我方武将在主动攻击前每移动1格,本次攻击暴击伤害+10%", + "img": "dao_beidong2", + "isShow": 1, + "condition": "717&1", + "aim": 0, + "percent": 100, + "node": 7, + "type": 200, + "gainvalue": "18&10&100", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "1&999&0", + "haloGroup": 3042104311, + "haloLevel": 1, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3042106311, + "name": 0, + "info": "攻击前每移动一格,恢复自身1%的最大生命值", + "img": "dao_beidong2", + "isShow": 1, + "condition": "717&1", + "aim": 0, + "percent": 100, + "node": 7, + "type": 300, + "gainvalue": "6&1&100", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3042201311, + "name": 0, + "info": "我方拥有%d3041100002%d的武将,物攻强度+120", + "img": "dao_beidong2", + "isShow": 1, + "condition": "300&1&3041100002", + "aim": 0, + "percent": 100, + "node": 16, + "type": 200, + "gainvalue": "19&120&120", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "1&999&0", + "haloGroup": 3041104311, + "haloLevel": 1, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3042202311, + "name": 0, + "info": "我方武将攻击前每移动1格,物攻强度+25", + "img": "dao_beidong2", + "isShow": 1, + "condition": "717&1", + "aim": 0, + "percent": 100, + "node": 7, + "type": 200, + "gainvalue": "19&25&1000", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "1&999&0", + "haloGroup": 3042101311, + "haloLevel": 1, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3042203311, + "name": 0, + "info": "行动结束时,本回合每移动1格获得6层%d3041100001%d", + "img": "dao_beidong2", + "isShow": 1, + "condition": "703&1", + "aim": 0, + "percent": 100, + "node": 15, + "type": 116, + "gainvalue": "6&3041100001", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3042204311, + "name": 0, + "info": "击杀敌军时,自身获得40层%d3041100001%d", + "img": "dao_beidong2", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 11, + "type": 116, + "gainvalue": "40&3041100001", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3042205311, + "name": 0, + "info": "我方武将在主动攻击前每移动1格,本次攻击暴击伤害+13%", + "img": "dao_beidong2", + "isShow": 1, + "condition": "717&1", + "aim": 0, + "percent": 100, + "node": 7, + "type": 200, + "gainvalue": "18&13&130", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "1&999&0", + "haloGroup": 3042104311, + "haloLevel": 1, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3042206311, + "name": 0, + "info": "攻击前每移动一格,恢复自身2%的最大生命值", + "img": "dao_beidong2", + "isShow": 1, + "condition": "717&1", + "aim": 0, + "percent": 100, + "node": 7, + "type": 300, + "gainvalue": "6&2&100", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3043101311, + "name": 0, + "info": "主动攻击后可再移动2格", + "img": "dao_beidong3", + "isShow": 1, + "condition": "602&0&1&2", + "aim": 0, + "percent": 100, + "node": 7, + "type": 400, + "gainvalue": "2&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3043102311, + "name": 0, + "info": "若本回合主动移动至少3格,主动攻击时额外获得100点怒气", + "img": "dao_beidong3", + "isShow": 1, + "condition": "709&2&1|602&0&1&2", + "aim": 0, + "percent": 100, + "node": 7, + "type": 220, + "gainvalue": "29&100&100", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3043103311, + "name": 0, + "info": "击杀敌军后,可再移动3格", + "img": "dao_beidong3", + "isShow": 1, + "condition": "605&2", + "aim": 0, + "percent": 100, + "node": 11, + "type": 409, + "gainvalue": "3&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3043104311, + "name": 0, + "info": "回合开始时,获得20层%d3041100001%d", + "img": "dao_beidong3", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 2, + "type": 116, + "gainvalue": "20&3041100001", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3043105311, + "name": 0, + "info": "战斗开始时,自身获得1层%d3041100002%d", + "img": "dao_beidong3", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 2, + "type": 100, + "gainvalue": "3041100002&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3043106311, + "name": 0, + "info": "回合开始时,我方武将获得10层%d3041100001%d", + "img": "dao_beidong3", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 2, + "type": 116, + "gainvalue": "10&3041100001", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "1&999&0", + "haloGroup": 3043106311, + "haloLevel": 1, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3043107311, + "name": 0, + "info": "我方武将移动后发动主动攻击时,物攻强度+50", + "img": "dao_beidong3", + "isShow": 1, + "condition": "709&1&0", + "aim": 0, + "percent": 100, + "node": 7, + "type": 200, + "gainvalue": "19&50&50", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "1&999&0", + "haloGroup": 3043107311, + "haloLevel": 1, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3043108311, + "name": 0, + "info": "我方武将每有1层%d3041100001%d,物攻强度+1", + "img": "dao_beidong3", + "isShow": 1, + "condition": "307&1&1&3041100001", + "aim": 0, + "percent": 100, + "node": 16, + "type": 200, + "gainvalue": "19&1&100", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "1&999&0", + "haloGroup": 3043108311, + "haloLevel": 1, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3043201311, + "name": 0, + "info": "主动攻击后可再移动3格", + "img": "dao_beidong3", + "isShow": 1, + "condition": "602&0&1&2", + "aim": 0, + "percent": 100, + "node": 7, + "type": 400, + "gainvalue": "3&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3043202311, + "name": 0, + "info": "若本回合主动移动至少3格,主动攻击时额外获得150点怒气", + "img": "dao_beidong3", + "isShow": 1, + "condition": "709&2&1|602&0&1&2", + "aim": 0, + "percent": 100, + "node": 7, + "type": 220, + "gainvalue": "29&150&150", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3043203311, + "name": 0, + "info": "击杀敌军后,可再移动5格", + "img": "dao_beidong3", + "isShow": 1, + "condition": "605&2", + "aim": 0, + "percent": 100, + "node": 11, + "type": 409, + "gainvalue": "5&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3043204311, + "name": 0, + "info": "回合开始时,获得25层%d3041100001%d", + "img": "dao_beidong3", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 2, + "type": 116, + "gainvalue": "25&3041100001", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3043205311, + "name": 0, + "info": "战斗开始时,自身获得2层%d3041100002%d", + "img": "dao_beidong3", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 2, + "type": 116, + "gainvalue": "2&3041100002", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3043206311, + "name": 0, + "info": "回合开始时,我方武将获得15层%d3041100001%d", + "img": "dao_beidong3", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 2, + "type": 116, + "gainvalue": "15&3041100001", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "1&999&0", + "haloGroup": 3043106311, + "haloLevel": 1, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3043207311, + "name": 0, + "info": "我方武将移动后发动主动攻击时,物攻强度+65", + "img": "dao_beidong3", + "isShow": 1, + "condition": "709&1&0", + "aim": 0, + "percent": 100, + "node": 7, + "type": 200, + "gainvalue": "19&65&65", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "1&999&0", + "haloGroup": 3043107311, + "haloLevel": 1, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3043208311, + "name": 0, + "info": "我方武将每有1层%d3041100001%d,物攻强度+2", + "img": "dao_beidong3", + "isShow": 1, + "condition": "307&1&1&3041100001", + "aim": 0, + "percent": 100, + "node": 16, + "type": 200, + "gainvalue": "19&2&200", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "1&999&0", + "haloGroup": 3043108311, + "haloLevel": 1, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3044101111, + "name": 0, + "info": "释放后可再次发动攻击", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 13, + "type": 408, + "gainvalue": "&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3044102111, + "name": 0, + "info": "自身获得%d2004%d\n范围内友军获得%d801%d", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 7, + "type": 999, + "gainvalue": "3044102112&3044102113", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3044102112, + "name": 0, + "info": "自身获得%d2004%d", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 7, + "type": 100, + "gainvalue": "2004&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3044102113, + "name": 0, + "info": "范围内友军获得%d801%d", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 1, + "percent": 100, + "node": 7, + "type": 100, + "gainvalue": "801&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3044103111, + "name": 0, + "info": "使指定友军获得1层%d3041100002%d", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 1, + "percent": 100, + "node": 7, + "type": 100, + "gainvalue": "3041100002&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3045101211, + "name": 0, + "info": "自身获得1层%d3041100002%d", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 7, + "type": 100, + "gainvalue": "3041100002&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3045102211, + "name": 0, + "info": "施加%d29%d", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 1, + "percent": 100, + "node": 7, + "type": 100, + "gainvalue": "29&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3045103211, + "name": 0, + "info": "使范围内友军获得%d41%d", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 1, + "percent": 100, + "node": 7, + "type": 100, + "gainvalue": "41&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3071100001, + "name": 0, + "info": "对指定敌军造成100%的物理伤害", + "img": 1, + "isShow": 0, + "condition": "402&1|601&1|605&2|506&0|613&1|606&1&1&2&3&4&5", + "aim": 1, + "percent": 100, + "node": 14, + "type": 601, + "gainvalue": "307000001&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "4&998&1", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3071100002, + "name": 0, + "info": "对指定敌军造成100%的策略伤害", + "img": 1, + "isShow": 0, + "condition": "402&1|601&1|605&2|506&0|613&1|606&1&6&7", + "aim": 1, + "percent": 100, + "node": 14, + "type": 601, + "gainvalue": "307000002&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "4&998&1", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3071100003, + "name": 0, + "info": "清除自身1层", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 7, + "type": 137, + "gainvalue": "1&3071100001", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3071100011, + "name": 0, + "info": "每层使物攻抗性和策攻抗性-5,最多5层", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 16, + "type": 200, + "gainvalue": "20&-5&-25&22&-5&-25", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3071100012, + "name": 0, + "info": "自身行动开始时清除", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 2, + "type": 115, + "gainvalue": "3071100011&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3071101311, + "name": 0, + "info": "我方武将使用【连携攻击】击杀敌军时,使所有我方武将获得1层%d3071100001%d", + "img": "zongheng_beidong1", + "isShow": 1, + "condition": "602&7", + "aim": 0, + "percent": 100, + "node": 11, + "type": 107, + "gainvalue": "999&1&3071100001", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "1&999&0", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "zongheng_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3071102311, + "name": 0, + "info": "自身击杀敌军时,获得3层%d3071100001%d", + "img": "zongheng_beidong1", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 11, + "type": 116, + "gainvalue": "3&3071100001", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "zongheng_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3071103311, + "name": 0, + "info": "回合开始时,使我方武将获得%d3071100001%d", + "img": "zongheng_beidong1", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 2, + "type": 108, + "gainvalue": "1&999&1&3071100001", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3071104311, + "name": 0, + "info": "我方武将释放【连携攻击】时,若发生暴击,释放者获得%d3071100001%d", + "img": "zongheng_beidong1", + "isShow": 1, + "condition": "711&2|602&7", + "aim": 0, + "percent": 100, + "node": 9, + "type": 100, + "gainvalue": "3071100001&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "1&999&0", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "zongheng_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3072101311, + "name": 0, + "info": "我方武将释放【连携攻击】时,物攻强度+50", + "img": "zongheng_beidong2", + "isShow": 1, + "condition": "602&7", + "aim": 0, + "percent": 100, + "node": 7, + "type": 200, + "gainvalue": "19&50&50", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "1&999&0", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "zongheng_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3072102311, + "name": 0, + "info": "我方武将释放【连携攻击】时,目标每有1层%d3071100011%d,暴击+20", + "img": "zongheng_beidong2", + "isShow": 1, + "condition": "300&2&3071100011", + "aim": 0, + "percent": 100, + "node": 7, + "type": 200, + "gainvalue": "10&20&100", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "1&999&0", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3072103311, + "name": 0, + "info": "自身使用【连携攻击】时,若目标拥有%d3071100011%d,额外造成100%的伤害", + "img": "zongheng_beidong2", + "isShow": 1, + "condition": "602&7", + "aim": 0, + "percent": 100, + "node": 7, + "type": 214, + "gainvalue": "100&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "zongheng_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3072104311, + "name": 0, + "info": "自身每拥有1层%d3071100001%d,释放【连携攻击】时,暴击伤害+25%,最多100%", + "img": "zongheng_beidong2", + "isShow": 1, + "condition": "300&1&3071100001|602&7", + "aim": 0, + "percent": 100, + "node": 7, + "type": 200, + "gainvalue": "18&25&100", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "zongheng_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3072105311, + "name": 0, + "info": "我方拥有%d3071100001%d的武将,物攻强度和策攻强度+25", + "img": "zongheng_beidong2", + "isShow": 1, + "condition": "300&1&3071100001", + "aim": 0, + "percent": 100, + "node": 16, + "type": 200, + "gainvalue": "19&25&25&21&25&25", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "1&999&0", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "zongheng_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3072106311, + "name": 0, + "info": "自身释放%d3071100001%d时,使我方所有武将获得100怒气", + "img": "zongheng_beidong2", + "isShow": 1, + "condition": "602&7", + "aim": 0, + "percent": 100, + "node": 7, + "type": 211, + "gainvalue": "1&999&1&100", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "zongheng_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3073101311, + "name": 0, + "info": "我方武将使用【连携攻击】时,对目标施加%d3071100011%d", + "img": "zongheng_beidong3", + "isShow": 1, + "condition": "602&7", + "aim": 1, + "percent": 100, + "node": 7, + "type": 100, + "gainvalue": "3071100011&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "1&999&0", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3073102311, + "name": 0, + "info": "回合开始时,自身获得%d3071100001%d", + "img": "zongheng_beidong3", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 2, + "type": 100, + "gainvalue": "3071100001&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3073103311, + "name": 0, + "info": "自身释放【连携攻击】时,自身获得100点怒气", + "img": "zongheng_beidong3", + "isShow": 1, + "condition": "602&7", + "aim": 0, + "percent": 100, + "node": 7, + "type": 220, + "gainvalue": "29&100&100", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3073104311, + "name": 0, + "info": "自身主动攻击时,获得1层%d3071100001%d", + "img": "zongheng_beidong3", + "isShow": 1, + "condition": "602&0&1&2", + "aim": 0, + "percent": 100, + "node": 7, + "type": 100, + "gainvalue": "3071100001&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3073105311, + "name": 0, + "info": "自身释放怒气技时,所有我方武将获得1层%d3071100001%d", + "img": "zongheng_beidong3", + "isShow": 1, + "condition": "602&1", + "aim": 0, + "percent": 100, + "node": 7, + "type": 108, + "gainvalue": "1&999&1&3071100001", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3073106311, + "name": 0, + "info": "释放连携攻击时,自身恢复2%的生命值", + "img": "zongheng_beidong3", + "isShow": 1, + "condition": "602&7", + "aim": 0, + "percent": 100, + "node": 7, + "type": 300, + "gainvalue": "6&2&100", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "zongheng_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3073107311, + "name": 0, + "info": "自身主动攻击敌军时,施加2层%d3071100011%d", + "img": "zongheng_beidong3", + "isShow": 1, + "condition": "602&0&1&2", + "aim": 1, + "percent": 100, + "node": 7, + "type": 116, + "gainvalue": "2&3071100011", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3073108311, + "name": 0, + "info": "战斗开始时,自身获得3层%d3071100001%d", + "img": "zongheng_beidong3", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 1, + "type": 116, + "gainvalue": "3&3071100001", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "zongheng_beidong", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3074101111, + "name": 0, + "info": "自身获得3层%d3071100001%d", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 7, + "type": 116, + "gainvalue": "3&3071100001", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3074102111, + "name": 0, + "info": "自身获得%d2004%d\n范围内敌军获得%d3071100011%d", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 1, + "type": 999, + "gainvalue": "3074102112&3074102113", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3074102112, + "name": 0, + "info": "自身获得%d2004%d", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 7, + "type": 100, + "gainvalue": "2004&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3074102113, + "name": 0, + "info": "范围内敌军获得%d3071100011%d", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 1, + "percent": 100, + "node": 7, + "type": 100, + "gainvalue": "3071100011&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3074103111, + "name": 0, + "info": "使指定友军获得3层%d3071100001%d", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 1, + "percent": 100, + "node": 7, + "type": 116, + "gainvalue": "3&3071100001", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3075101211, + "name": 0, + "info": "自身获得1层%d3071100001%d", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 7, + "type": 100, + "gainvalue": "3071100001&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3075102211, + "name": 0, + "info": "施加3层%d3071100011%d", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 1, + "percent": 100, + "node": 7, + "type": 116, + "gainvalue": "3&3071100011", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 3075103211, + "name": 0, + "info": "使范围内友军获得%d3071100001%d", + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 1, + "percent": 100, + "node": 7, + "type": 100, + "gainvalue": "3071100011&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, { "id": 4121701111, "name": 0, @@ -66602,7 +72938,7 @@ { "id": 4121701331, "name": "百战无前3", - "info": "自身每拥有一个增益状态,自身物攻抗性和策攻抗性+3\r\n自身拥有至少5个增益状态时,自身格挡+20", + "info": "自身每拥有一个增益状态,自身物攻抗性和策攻抗性+3\n自身拥有至少5个增益状态时,自身格挡+20", "img": "buzhangfei_beidong1_baizhanwuqian", "isShow": 1, "condition": "&", @@ -66650,7 +72986,7 @@ { "id": 4121701411, "name": "固若金汤1", - "info": "物攻抗性+20、策攻抗性+20\r\n格挡+10", + "info": "物攻抗性+20、策攻抗性+20\n格挡+10", "img": "bubing_beidong2_guruojintang", "isShow": 1, "condition": "&", @@ -66674,7 +73010,7 @@ { "id": 4121701421, "name": "固若金汤2", - "info": "物攻抗性+40、策攻抗性+40\r\n格挡+20", + "info": "物攻抗性+40、策攻抗性+40\n格挡+20", "img": "bubing_beidong2_guruojintang", "isShow": 1, "condition": "&", @@ -66698,7 +73034,7 @@ { "id": 4121701511, "name": "悍勇奋战", - "info": "受到攻击时,自身获得2个随机增益状态\r\n若受击时触发护卫,则护卫对象也获得1个随机增益状态", + "info": "受到攻击时,自身获得2个随机增益状态\n若受击时触发护卫,则护卫对象也获得1个随机增益状态", "img": "buzhangfei_beidong3_hanyongfenzhan", "isShow": 1, "condition": "&", @@ -66770,7 +73106,7 @@ { "id": 4121701611, "name": "熊虎之将", - "info": "%d2%d\r\n我方武将物攻抗性和策攻抗性+10\r\n自身每拥有1个增益状态,我方武将物攻抗性和策攻抗性+5,最多20", + "info": "%d2%d\n我方武将物攻抗性和策攻抗性+10\n自身每拥有1个增益状态,我方武将物攻抗性和策攻抗性+5,最多20", "img": "buzhagnfei_jiban_xionghuzhijiang", "isShow": 1, "condition": "&", @@ -66789,7 +73125,7 @@ "seidNameImage": "&", "passivespineName": "&", "rangeUi": 0, - "passiveType": 1 + "passiveType": 4 }, { "id": 4121701612, @@ -66842,7 +73178,7 @@ { "id": 4121702311, "name": "真·百战无前1", - "info": "自身每拥有一个增益状态,自身物攻抗性和策攻抗性+1\r\n自身拥有至少5个增益状态时,自身格挡+20", + "info": "自身每拥有一个增益状态,自身物攻抗性和策攻抗性+1\n自身拥有至少5个增益状态时,自身格挡+20", "img": "buzhangfei_beidong1_baizhanwuqian", "isShow": 1, "condition": "&", @@ -66869,7 +73205,7 @@ "info": "自身每拥有一个增益状态,自身物攻抗性和策攻抗性+1", "img": 1, "isShow": 0, - "condition": "302&1", + "condition": "304&1&1", "aim": 0, "percent": 100, "node": 16, @@ -66914,7 +73250,7 @@ { "id": 4121702321, "name": "真·百战无前2", - "info": "自身每拥有一个增益状态,自身物攻抗性和策攻抗性+3\r\n自身拥有至少5个增益状态时,自身格挡+30", + "info": "自身每拥有一个增益状态,自身物攻抗性和策攻抗性+3\n自身拥有至少5个增益状态时,自身格挡+30", "img": "buzhangfei_beidong1_baizhanwuqian", "isShow": 1, "condition": "&", @@ -66941,7 +73277,7 @@ "info": "自身每拥有一个增益状态,自身物攻抗性和策攻抗性+3", "img": 1, "isShow": 1, - "condition": "302&1", + "condition": "304&1&1", "aim": 0, "percent": 100, "node": 16, @@ -66986,7 +73322,7 @@ { "id": 4121702331, "name": "真·百战无前3", - "info": "自身每拥有一个增益状态,自身物攻抗性和策攻抗性+3\r\n自身拥有至少5个增益状态时,自身格挡+40", + "info": "自身每拥有一个增益状态,自身物攻抗性和策攻抗性+3\n自身拥有至少5个增益状态时,自身格挡+40", "img": "buzhangfei_beidong1_baizhanwuqian", "isShow": 1, "condition": "&", @@ -67034,7 +73370,7 @@ { "id": 4121702511, "name": "真·悍勇奋战", - "info": "受到攻击时,自身获得2个随机增益状态\r\n若受击时触发护卫,则护卫对象也获得1个随机增益状态\r\n行动结束时,我方武将每拥有1个增益状态,恢复自身1%的生命值,最多10%", + "info": "受到攻击时,自身获得2个随机增益状态\n若受击时触发护卫,则护卫对象也获得1个随机增益状态\n行动结束时,我方武将每拥有1个增益状态,恢复自身1%的生命值,最多10%", "img": "buzhangfei_beidong3_hanyongfenzhan", "isShow": 1, "condition": "&", @@ -67274,7 +73610,7 @@ { "id": 4120201421, "name": "冲锋陷阵2", - "info": "物攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n物攻抗性+20、策攻抗性+20", "img": "qibing_beidong2_chongfengxianzhen", "isShow": 1, "condition": "&", @@ -67325,7 +73661,7 @@ "info": "【相机而动】或【真·相机而动】生效时,自身获得100点怒气", "img": "qizhaoyun_jiban_longqiangbaima", "isShow": 1, - "condition": "602&5", + "condition": "602&7", "aim": 0, "percent": 100, "node": 7, @@ -67586,7 +73922,7 @@ { "id": 4112201311, "name": "百步先机1", - "info": "回合开始时,随机对5格距离内的1名敌军施加%d4112201311%d\r\n主动攻击%d4112201311%d敌军时,暴击+15、物攻强度+15", + "info": "回合开始时,随机对5格距离内的1名敌军施加%d4112201311%d\n主动攻击%d4112201311%d敌军时,暴击+15、物攻强度+15", "img": "gongzhugeliang_beidong1_baibuxianji", "isShow": 1, "condition": "&", @@ -67658,7 +73994,7 @@ { "id": 4112201321, "name": "百步先机2", - "info": "回合开始时,随机对5格距离内的1名敌军施加%d4112201311%d\r\n主动攻击%d4112201311%d敌军时,暴击+30、物攻强度+30", + "info": "回合开始时,随机对5格距离内的1名敌军施加%d4112201311%d\n主动攻击%d4112201311%d敌军时,暴击+30、物攻强度+30", "img": "gongzhugeliang_beidong1_baibuxianji", "isShow": 1, "condition": "&", @@ -67706,7 +74042,7 @@ { "id": 4112201331, "name": "百步先机3", - "info": "回合开始时,随机对5格距离内的3名敌军施加%d4112201311%d\r\n主动攻击%d4112201311%d敌军时,暴击+30、物攻强度+30", + "info": "回合开始时,随机对5格距离内的3名敌军施加%d4112201311%d\n主动攻击%d4112201311%d敌军时,暴击+30、物攻强度+30", "img": "gongzhugeliang_beidong1_baibuxianji", "isShow": 1, "condition": "&", @@ -67778,7 +74114,7 @@ { "id": 4112201421, "name": "强弓劲弩2", - "info": "物攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n物攻抗性+20、策攻抗性+20", "img": "gongbing_beidong2_qianggongjingnu", "isShow": 1, "condition": "&", @@ -67826,7 +74162,7 @@ { "id": 4112201611, "name": "武英在握", - "info": "%d1%d我方武将主动攻击时,自身每有1个增益状态,随机获得以下状态之一,每种最多5层\r\n%d4112201612%d,%d4112201613%d,%d4112201614%d,%d4112201615%d,%d4112201616%d,%d4112201617%d", + "info": "%d1%d我方武将主动攻击时,自身每有1个增益状态,随机获得以下状态之一,每种最多5层\n%d4112201612%d,%d4112201613%d,%d4112201614%d,%d4112201615%d,%d4112201616%d,%d4112201617%d", "img": "gongzhugeliang_jiban_wuyingzaiwo", "isShow": 1, "condition": "602&0&1&2|304&1&1", @@ -67845,7 +74181,7 @@ "seidNameImage": "gongzhugeliang_wuyingzaiwo", "passivespineName": "&", "rangeUi": 0, - "passiveType": 1 + "passiveType": 3 }, { "id": 4112201612, @@ -67853,7 +74189,7 @@ "info": "物攻强度+10", "img": 1, "isShow": 0, - "condition": "&", + "condition": "426&999&41122&0", "aim": 0, "percent": 100, "node": 16, @@ -67877,7 +74213,7 @@ "info": "策攻强度+10", "img": 1, "isShow": 0, - "condition": "&", + "condition": "426&999&41122&0", "aim": 0, "percent": 100, "node": 16, @@ -67901,7 +74237,7 @@ "info": "物攻抗性+4", "img": 1, "isShow": 0, - "condition": "&", + "condition": "426&999&41122&0", "aim": 0, "percent": 100, "node": 16, @@ -67925,7 +74261,7 @@ "info": "策攻抗性+4", "img": 1, "isShow": 0, - "condition": "&", + "condition": "426&999&41122&0", "aim": 0, "percent": 100, "node": 16, @@ -67949,7 +74285,7 @@ "info": "暴击+7", "img": 1, "isShow": 0, - "condition": "&", + "condition": "426&999&41122&0", "aim": 0, "percent": 100, "node": 16, @@ -67973,7 +74309,7 @@ "info": "暴击伤害+7%", "img": 1, "isShow": 0, - "condition": "&", + "condition": "426&999&41122&0", "aim": 0, "percent": 100, "node": 16, @@ -68018,7 +74354,7 @@ { "id": 4112202611, "name": "真·武英在握", - "info": "%d1%d我方武将主动攻击时,自身每有1个增益状态,随机获得以下状态之一,每种最多5层\r\n%d4112201612%d,%d4112201613%d,%d4112201614%d,%d4112201615%d,%d4112201616%d,%d4112201617%d\r\n回合开始时,我方武将随机获得以上状态中的1个", + "info": "%d1%d我方武将主动攻击时,自身每有1个增益状态,随机获得以下状态之一,每种最多5层\n%d4112201612%d,%d4112201613%d,%d4112201614%d,%d4112201615%d,%d4112201616%d,%d4112201617%d\n回合开始时,我方武将随机获得以上状态中的1个", "img": "gongzhugeliang_jiban_wuyingzaiwo", "isShow": 1, "condition": "&", @@ -68037,7 +74373,7 @@ "seidNameImage": "gongzhugeliang_zhenwuyingzaiwo", "passivespineName": "&", "rangeUi": 0, - "passiveType": 1 + "passiveType": 3 }, { "id": 4112202612, @@ -68186,7 +74522,7 @@ { "id": 4123501311, "name": "神焰灼灼1", - "info": "攻击敌军时,施加2层【燃烧】\r\n技能攻击时,物攻强度+10", + "info": "攻击敌军时,施加2层【燃烧】\n技能攻击时,物攻强度+10", "img": "taishiciqiang_beidong1_shenyanzhuozhuo", "isShow": 1, "condition": "&", @@ -68258,7 +74594,7 @@ { "id": 4123501321, "name": "神焰灼灼2", - "info": "攻击敌军时,施加2层【燃烧】\r\n技能攻击时,物攻强度+20", + "info": "攻击敌军时,施加2层【燃烧】\n技能攻击时,物攻强度+20", "img": "taishiciqiang_beidong1_shenyanzhuozhuo", "isShow": 1, "condition": "&", @@ -68306,7 +74642,7 @@ { "id": 4123501331, "name": "神焰灼灼3", - "info": "攻击敌军时,施加2层【燃烧】\r\n技能攻击时,物攻强度+30", + "info": "攻击敌军时,施加2层【燃烧】\n技能攻击时,物攻强度+30", "img": "taishiciqiang_beidong1_shenyanzhuozhuo", "isShow": 1, "condition": "&", @@ -68354,7 +74690,7 @@ { "id": 4123501411, "name": "锋锐无当1", - "info": "物攻强度+20\r\n攻击时无视目标5%的物防", + "info": "物攻强度+20\n攻击时无视目标5%的物防", "img": "qiangbing_beidong2_fengruiwudang", "isShow": 1, "condition": "&", @@ -68426,7 +74762,7 @@ { "id": 4123501421, "name": "锋锐无当2", - "info": "物攻强度+20\r\n攻击时无视目标10%的物防\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n攻击时无视目标10%的物防\n物攻抗性+20、策攻抗性+20", "img": "qiangbing_beidong2_fengruiwudang", "isShow": 1, "condition": "&", @@ -68450,7 +74786,7 @@ { "id": 4123501422, "name": "锋锐无当2", - "info": "物攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n物攻抗性+20、策攻抗性+20", "img": 1, "isShow": 0, "condition": "&", @@ -68498,7 +74834,7 @@ { "id": 4123501511, "name": "灵蕴神法", - "info": "回合结束时,自身每拥有100点怒气,恢复自身2%的生命值", + "info": "回合结束时,自身每拥有100点怒气,恢复自身2%的生命值,最多20%", "img": "taishiciqiang_beidong3_lingyunshenfa", "isShow": 1, "condition": "204&100", @@ -68546,7 +74882,7 @@ { "id": 4123502311, "name": "真·神焰灼灼1", - "info": "攻击敌军时,施加2层【燃烧】\r\n物攻强度+20", + "info": "攻击敌军时,施加2层【燃烧】\n物攻强度+20", "img": "taishiciqiang_beidong1_shenyanzhuozhuo", "isShow": 1, "condition": "&", @@ -68618,7 +74954,7 @@ { "id": 4123502321, "name": "真·神焰灼灼2", - "info": "攻击敌军时,施加2层【燃烧】\r\n物攻强度+35", + "info": "攻击敌军时,施加2层【燃烧】\n物攻强度+35", "img": "taishiciqiang_beidong1_shenyanzhuozhuo", "isShow": 1, "condition": "&", @@ -68666,7 +75002,7 @@ { "id": 4123502331, "name": "真·神焰灼灼3", - "info": "攻击敌军时,施加2层【燃烧】\r\n物攻强度+50", + "info": "攻击敌军时,施加2层【燃烧】\n物攻强度+50", "img": "taishiciqiang_beidong1_shenyanzhuozhuo", "isShow": 1, "condition": "&", @@ -68714,7 +75050,7 @@ { "id": 4123502511, "name": "真·灵蕴神法", - "info": "回合结束时,自身每拥有100点怒气,恢复自身2%的生命值\r\n自身每拥有100点怒气,格挡+2", + "info": "回合结束时,自身每拥有100点怒气,恢复自身2%的生命值,最多20%\n自身每拥有100点怒气,格挡+2", "img": "taishiciqiang_beidong3_lingyunshenfa", "isShow": 1, "condition": "&", @@ -68930,7 +75266,7 @@ { "id": 4114401311, "name": "赤兔雄风1", - "info": "回合开始时,获得1层%d4114401111%d\r\n行动结束时,若处于危险范围,获得1层%d4114401111%d", + "info": "回合开始时,获得1层%d4114401111%d\n行动结束时,若处于危险范围,获得1层%d4114401111%d", "img": "qilvbu_beidong1_chituxiongfeng", "isShow": 1, "condition": "&", @@ -69002,7 +75338,7 @@ { "id": 4114401321, "name": "赤兔雄风2", - "info": "回合开始时,获得1层%d4114401111%d\r\n行动结束时,若处于危险范围,获得1层%d4114401111%d\r\n本回合移动至少3格,主动攻击时,获得1层%d4114401111%d", + "info": "回合开始时,获得1层%d4114401111%d\n行动结束时,若处于危险范围,获得1层%d4114401111%d\n本回合移动至少3格,主动攻击时,获得1层%d4114401111%d", "img": "qilvbu_beidong1_chituxiongfeng", "isShow": 1, "condition": "&", @@ -69050,7 +75386,7 @@ { "id": 4114401331, "name": "赤兔雄风3", - "info": "回合开始时,获得1层%d4114401111%d\r\n行动结束时,若处于危险范围,获得1层%d4114401111%d\r\n本回合移动至少3格,主动攻击时,获得1层%d4114401111%d,若移动至少5格,则获得2层%d4114401111%d", + "info": "回合开始时,获得1层%d4114401111%d\n行动结束时,若处于危险范围,获得1层%d4114401111%d\n本回合移动至少3格,主动攻击时,获得1层%d4114401111%d,若移动至少5格,则获得2层%d4114401111%d", "img": "qilvbu_beidong1_chituxiongfeng", "isShow": 1, "condition": "&", @@ -69122,7 +75458,7 @@ { "id": 4114401421, "name": "冲锋陷阵2", - "info": "物攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n物攻抗性+20、策攻抗性+20", "img": "qibing_beidong2_chongfengxianzhen", "isShow": 1, "condition": "&", @@ -69170,10 +75506,10 @@ { "id": 4114401611, "name": "虢虎之勇", - "info": "其他武将释放怒气技每命中1个敌军,吕布获得1层%d4114401111%d", + "info": "其他武将释放怒气技每对其怒气技效果范围内的1名敌军造成伤害时,吕布获得1层%d4114401111%d", "img": "qilvbu_jiban_guohuzhiyong", "isShow": 1, - "condition": "602&1|605&2", + "condition": "602&1|605&2|600&1&2", "aim": 0, "percent": 100, "node": 22, @@ -69194,7 +75530,7 @@ { "id": 4114402311, "name": "真·赤兔雄风1", - "info": "回合开始时,获得1层%d4114401111%d\r\n行动结束时,若处于危险范围,获得1层%d4114401111%d\r\n每拥有1层%d4114401111%d,物攻抗性+1", + "info": "回合开始时,获得1层%d4114401111%d\n行动结束时,若处于危险范围,获得1层%d4114401111%d\n每拥有1层%d4114401111%d,物攻抗性+1", "img": "qilvbu_beidong1_chituxiongfeng", "isShow": 1, "condition": "&", @@ -69290,7 +75626,7 @@ { "id": 4114402321, "name": "真·赤兔雄风2", - "info": "回合开始时,获得1层%d4114401111%d\r\n行动结束时,若处于危险范围,获得1层%d4114401111%d\r\n本回合移动至少3格,主动攻击时,获得1层%d4114401111%d\r\n每拥有1层%d4114401111%d,物攻抗性+1", + "info": "回合开始时,获得1层%d4114401111%d\n行动结束时,若处于危险范围,获得1层%d4114401111%d\n本回合移动至少3格,主动攻击时,获得1层%d4114401111%d\n每拥有1层%d4114401111%d,物攻抗性+1", "img": "qilvbu_beidong1_chituxiongfeng", "isShow": 1, "condition": "&", @@ -69338,7 +75674,7 @@ { "id": 4114402331, "name": "真·赤兔雄风3", - "info": "回合开始时,获得1层%d4114401111%d\r\n行动结束时,若处于危险范围,获得1层%d4114401111%d\r\n本回合移动至少3格,主动攻击时,获得1层%d4114401111%d,若移动至少5格,则获得2层%d4114401111%d\r\n每拥有1层%d4114401111%d,物攻抗性+1", + "info": "回合开始时,获得1层%d4114401111%d\n行动结束时,若处于危险范围,获得1层%d4114401111%d\n本回合移动至少3格,主动攻击时,获得1层%d4114401111%d,若移动至少5格,则获得2层%d4114401111%d\n每拥有1层%d4114401111%d,物攻抗性+1", "img": "qilvbu_beidong1_chituxiongfeng", "isShow": 1, "condition": "&", @@ -69386,7 +75722,7 @@ { "id": 4114402511, "name": "真·恃勇久战", - "info": "击杀敌军时,怒气+500\r\n每层战意使【神杀诛灭】额外造成10%的物理伤害", + "info": "击杀敌军时,怒气+500\n每层战意使【神杀诛灭】额外造成10%的物理伤害", "img": "qilvbu_beidong3_shiyongjiuzhan", "isShow": 1, "condition": "&", @@ -69650,7 +75986,7 @@ { "id": 4125601321, "name": "镜影重重2", - "info": "主动攻击时,施加随机减益状态\r\n攻击有减益状态的敌军时,策攻强度+30", + "info": "主动攻击时,施加随机减益状态\n攻击有减益状态的敌军时,策攻强度+30", "img": "diaochance_beidong1_jingyingchongchong", "isShow": 1, "condition": "&", @@ -69698,7 +76034,7 @@ { "id": 4125601331, "name": "镜影重重3", - "info": "主动攻击时,施加随机减益状态\r\n攻击有减益状态的敌军时,策攻强度+30\r\n若目标有至少3个减益状态,暴击+30", + "info": "主动攻击时,施加随机减益状态\n攻击有减益状态的敌军时,策攻强度+30\n若目标有至少3个减益状态,暴击+30", "img": "diaochance_beidong1_jingyingchongchong", "isShow": 1, "condition": "&", @@ -69770,7 +76106,7 @@ { "id": 4125601421, "name": "运筹帷幄2", - "info": "策攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "策攻强度+20\n物攻抗性+20、策攻抗性+20", "img": "ceshi_beidong2_yunchouweiwo", "isShow": 1, "condition": "&", @@ -69938,7 +76274,7 @@ { "id": 4125602321, "name": "真·镜影重重2", - "info": "主动攻击时,施加2个随机减益状态\r\n攻击有减益状态的敌军时,策攻强度+30\r\n攻击拥有%d4125600011%d的敌军时,暴击伤害+15%", + "info": "主动攻击时,施加2个随机减益状态\n攻击有减益状态的敌军时,策攻强度+30\n攻击拥有%d4125600011%d的敌军时,暴击伤害+15%", "img": "diaochance_beidong1_jingyingchongchong", "isShow": 1, "condition": "&", @@ -70010,7 +76346,7 @@ { "id": 4125602331, "name": "真·镜影重重3", - "info": "主动攻击时,施加2个随机减益状态\r\n攻击有减益状态的敌军时,策攻强度+30,暴击+30\r\n攻击拥有%d4125600011%d的敌军时,暴击伤害+30%", + "info": "主动攻击时,施加2个随机减益状态\n攻击有减益状态的敌军时,策攻强度+30,暴击+30\n攻击拥有%d4125600011%d的敌军时,暴击伤害+30%", "img": "diaochance_beidong1_jingyingchongchong", "isShow": 1, "condition": "&", @@ -70514,7 +76850,7 @@ { "id": 4110201411, "name": "锋锐无当1", - "info": "物攻强度+20\r\n攻击时无视目标5%的物防", + "info": "物攻强度+20\n攻击时无视目标5%的物防", "img": "qiangbing_beidong2_fengruiwudang", "isShow": 1, "condition": "&", @@ -70586,7 +76922,7 @@ { "id": 4110201421, "name": "锋锐无当2", - "info": "物攻强度+20\r\n攻击时无视目标10%的物防\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n攻击时无视目标10%的物防\n物攻抗性+20、策攻抗性+20", "img": "qiangbing_beidong2_fengruiwudang", "isShow": 1, "condition": "&", @@ -70610,7 +76946,7 @@ { "id": 4110201422, "name": "锋锐无当2", - "info": "物攻强度+20\r\n物攻抗性+20、策攻抗性+20", + "info": "物攻强度+20\n物攻抗性+20、策攻抗性+20", "img": 1, "isShow": 0, "condition": "&", @@ -70874,7 +77210,7 @@ { "id": 5100101411, "name": "煞气侵蚀", - "info": "物攻强度和策攻强度+3\r\n物攻抗性和策攻抗性-1", + "info": "物攻强度和策攻强度+3\n物攻抗性和策攻抗性-1", "img": 1, "isShow": 0, "condition": "&", @@ -71042,7 +77378,7 @@ { "id": 5100101511, "name": "煞气侵蚀", - "info": "物攻强度和策攻强度+3\r\n物攻抗性和策攻抗性-1", + "info": "物攻强度和策攻强度+3\n物攻抗性和策攻抗性-1", "img": 1, "isShow": 0, "condition": "&", @@ -71858,7 +78194,7 @@ { "id": 5400101111, "name": "攻击指示", - "info": "取不同的两名敌军分别施加%d5400101111%d\r\n和%d5400101112%d", + "info": "取不同的两名敌军分别施加%d5400101111%d\n和%d5400101112%d", "img": 1, "isShow": 0, "condition": "&", @@ -72890,7 +79226,7 @@ { "id": 5500101211, "name": 0, - "info": "对随机3名敌军造成100%的物理伤害\r\n并对其所在位置施加%d5500101212%d", + "info": "对随机3名敌军造成100%的物理伤害\n并对其所在位置施加%d5500101212%d", "img": 1, "isShow": 0, "condition": "&", @@ -72986,7 +79322,7 @@ { "id": 5500101311, "name": 0, - "info": "对随机3名敌军造成100%的物理伤害\r\n并对其所在位置施加%d5500101312%d", + "info": "对随机3名敌军造成100%的物理伤害\n并对其所在位置施加%d5500101312%d", "img": 1, "isShow": 0, "condition": "&", @@ -74138,7 +80474,7 @@ { "id": 5800101211, "name": "瘟疫层数检测", - "info": "若目标%d5800101411%d层数大于2,则在目标周围生成1只小蜘蛛\r\n若目标%d5800101411%d层数大于4,则对目标施加%d26%d", + "info": "若目标%d5800101411%d层数大于2,则在目标周围生成1只小蜘蛛\n若目标%d5800101411%d层数大于4,则对目标施加%d26%d", "img": 1, "isShow": 0, "condition": "&", @@ -74210,7 +80546,7 @@ { "id": 5800101311, "name": 0, - "info": "施加1层%d5800101411%d\r\n场中每有1个%d5800201311%d额外造成10%的策略伤害\r\n清除场上所有的%d5800201311%d", + "info": "施加1层%d5800101411%d\n场中每有1个%d5800201311%d额外造成10%的策略伤害\n清除场上所有的%d5800201311%d", "img": 1, "isShow": 0, "condition": "&", @@ -74398,5 +80734,629 @@ "passivespineName": "&", "rangeUi": 0, "passiveType": 0 + }, + { + "id": 620201111, + "name": "白花身寄魂", + "info": "死亡后原地召唤一个白色彼岸花", + "img": "gongnv_beidong_2_jihun", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 12, + "type": 804, + "gainvalue": "6204&", + "times_turn": 1, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 620301111, + "name": "红花身寄魂", + "info": "死亡后原地召唤一个红色彼岸花", + "img": "huanggongjinweigui_beidong3_jihun", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 12, + "type": 804, + "gainvalue": "6205&", + "times_turn": 1, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 620401111, + "name": "白花身还魂", + "info": "死亡后原地召唤一个宫女亡魂", + "img": "baihua_beidong1_huanhun", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 12, + "type": 804, + "gainvalue": "6202&", + "times_turn": 1, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 620501111, + "name": "红花身还魂", + "info": "死亡后原地召唤一个皇宫禁卫鬼侍", + "img": "honghua_beidong1_huanhun", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 12, + "type": 804, + "gainvalue": "6203&", + "times_turn": 1, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 630101711, + "name": "幽冥之身", + "info": "回合开始时,若有手处于%d331001411%d状态,牺牲自身5%生命值并清除1层%d330801611%d,恢复其100%的生命值并解除%d331001411%d", + "img": "qianghua_2", + "isShow": 1, + "condition": "&", + "aim": 0, + "percent": 100, + "node": 1, + "type": 999, + "gainvalue": "630101712&630101713&630101714&630101715&630101716&630101717&630101718&630101719", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 630101712, + "name": 0, + "info": "牺牲自身10%生命值-左", + "img": 1, + "isShow": 0, + "condition": "415&998&1&331001411&108&6302&1|300&1&330801611", + "aim": 0, + "percent": 100, + "node": 2, + "type": 300, + "gainvalue": "7&5", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 630101713, + "name": 0, + "info": "清除1层%d330801611%d-左", + "img": 1, + "isShow": 0, + "condition": "415&998&1&331001411&108&6302&1|300&1&330801611", + "aim": 0, + "percent": 100, + "node": 2, + "type": 120, + "gainvalue": "999&1&1&330801611&108&6301&1", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 630101714, + "name": 0, + "info": "恢复其100%的生命值并解除-左", + "img": 1, + "isShow": 0, + "condition": "415&998&1&331001411&108&6302&1|300&1&330801611", + "aim": 0, + "percent": 100, + "node": 2, + "type": 303, + "gainvalue": "1&998&1&6&100&108&6302&1", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 630101715, + "name": 0, + "info": "牺牲自身10%生命值-右", + "img": 1, + "isShow": 0, + "condition": "415&998&1&331001411&108&6303&1|300&1&330801611", + "aim": 0, + "percent": 100, + "node": 2, + "type": 300, + "gainvalue": "7&5", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 630101716, + "name": 0, + "info": "清除1层%d330801611%d-右", + "img": 1, + "isShow": 0, + "condition": "415&998&1&331001411&108&6303&1|300&1&330801611", + "aim": 0, + "percent": 100, + "node": 2, + "type": 120, + "gainvalue": "999&1&1&330801611&108&6301&1", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 630101717, + "name": 0, + "info": "恢复其100%的生命值并解除-右", + "img": 1, + "isShow": 0, + "condition": "415&998&1&331001411&108&6303&1|300&1&330801611", + "aim": 0, + "percent": 100, + "node": 2, + "type": 303, + "gainvalue": "1&998&1&6&100&108&6303&1", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 630101718, + "name": 0, + "info": "清除左手%d331001411%d", + "img": 1, + "isShow": 0, + "condition": "415&998&1&331001411&108&6302&1|300&1&330801611", + "aim": 0, + "percent": 100, + "node": 2, + "type": 123, + "gainvalue": "998&1&331001411&108&6302&1", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 630101719, + "name": 0, + "info": "清除右手%d331001411%d", + "img": 1, + "isShow": 0, + "condition": "415&998&1&331001411&108&6303&1|300&1&330801611", + "aim": 0, + "percent": 100, + "node": 2, + "type": 123, + "gainvalue": "998&1&331001411&108&6303&1", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 660301121, + "name": "解除生", + "info": 0, + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 1, + "percent": 100, + "node": 12, + "type": 999, + "gainvalue": "660301124&660301122&660301123", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 660301122, + "name": "解除生", + "info": 0, + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 1, + "percent": 100, + "node": 12, + "type": 123, + "gainvalue": "998&1&361401111&108&6601&1", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 660301123, + "name": "解除护盾", + "info": 0, + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 1, + "percent": 100, + "node": 12, + "type": 120, + "gainvalue": "998&1&1&361001411&108&6601&1", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 660301124, + "name": "无视金身", + "info": 0, + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 1, + "percent": 100, + "node": 12, + "type": 901, + "gainvalue": "&", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 660401121, + "name": "解除老", + "info": 0, + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 1, + "percent": 100, + "node": 12, + "type": 999, + "gainvalue": "660301124&660401122&660401123", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 660401122, + "name": "解除老", + "info": 0, + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 1, + "percent": 100, + "node": 12, + "type": 123, + "gainvalue": "998&1&361501111&108&6601&1", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 660401123, + "name": "解除护盾", + "info": 0, + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 1, + "percent": 100, + "node": 12, + "type": 120, + "gainvalue": "998&1&1&361001411&108&6601&1", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 660501121, + "name": "解除病", + "info": 0, + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 1, + "percent": 100, + "node": 12, + "type": 999, + "gainvalue": "660301124&660501122&660501123", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 660501122, + "name": "解除病", + "info": 0, + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 1, + "percent": 100, + "node": 12, + "type": 123, + "gainvalue": "998&1&361601111&108&6601&1", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 660501123, + "name": "解除护盾", + "info": 0, + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 1, + "percent": 100, + "node": 12, + "type": 120, + "gainvalue": "998&1&1&361001411&108&6601&1", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 660601121, + "name": "解除死", + "info": 0, + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 1, + "percent": 100, + "node": 12, + "type": 999, + "gainvalue": "660301124&660601122&660601123", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 660601122, + "name": "解除死", + "info": 0, + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 1, + "percent": 100, + "node": 12, + "type": 123, + "gainvalue": "998&1&361701111&108&6601&1", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 + }, + { + "id": 660601123, + "name": "解除护盾", + "info": 0, + "img": 1, + "isShow": 0, + "condition": "&", + "aim": 1, + "percent": 100, + "node": 12, + "type": 120, + "gainvalue": "998&1&1&361001411&108&6601&1", + "times_turn": 0, + "times_battle": 0, + "cd": 0, + "auroaspineName": "&", + "rangeSeid": "&", + "haloGroup": 0, + "haloLevel": 0, + "seidNameImage": "&", + "passivespineName": "&", + "rangeUi": 0, + "passiveType": 0 } ] \ No newline at end of file