From e5bbd112b72cb9c0e8a5df3f41c90e6a5a21ed5b Mon Sep 17 00:00:00 2001 From: zhangxk Date: Fri, 8 Sep 2023 14:07:52 +0800 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(=E7=A8=B7=E4=B8=8B=E5=AD=A6?= =?UTF-8?q?=E5=AE=AB):=20=E4=BF=AE=E6=94=B9=E5=B8=A6=E5=87=BA=E8=8B=B1?= =?UTF-8?q?=E7=81=B5=E5=A5=96=E5=8A=B1=E6=95=B0=E9=87=8F,=20=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=E7=89=B9=E6=80=A7=E5=8D=A1=E9=9A=8F=E6=9C=BA=E6=9D=83?= =?UTF-8?q?=E9=87=8D(=E6=B5=81=E6=B4=BE=E3=80=81=E5=93=81=E8=B4=A8?= =?UTF-8?q?=E3=80=81=E7=AD=89=E7=BA=A7=E7=9B=B8=E5=85=B3)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../servers/battle/handler/rougeHandler.ts | 10 +- .../app/services/battle/rougeService.ts | 33 +- shared/consts/constModules/sysConst.ts | 4 +- shared/db/RougelikeRecordDetail.ts | 2 + shared/pubUtils/data.ts | 4 +- .../pubUtils/dictionary/DicRougeLayerPlan.ts | 4 +- .../dictionary/DicRougePassiveWeight.ts | 28 + .../resource/jsons/dic_rougeLayer_plan.json | 1310 +- .../jsons/dic_rougePassive_cardPlan.json | 13952 ++++++++-------- .../jsons/dic_rougePassive_weight.json | 386 + 10 files changed, 8077 insertions(+), 7656 deletions(-) create mode 100644 shared/pubUtils/dictionary/DicRougePassiveWeight.ts create mode 100644 shared/resource/jsons/dic_rougePassive_weight.json diff --git a/game-server/app/servers/battle/handler/rougeHandler.ts b/game-server/app/servers/battle/handler/rougeHandler.ts index 9b52225a1..b1686a300 100644 --- a/game-server/app/servers/battle/handler/rougeHandler.ts +++ b/game-server/app/servers/battle/handler/rougeHandler.ts @@ -218,7 +218,7 @@ export class RougeHandler { const { takeoutReward = [], score = 0, tech = 0, spiritPlan } = clone(layerReward); addScore += score, addTech += tech; for (const { id, count } of takeoutReward) takeoutRewardMap.set(id, takeoutRewardMap.get(id) || 0 + count); - spiritIds.push(...getRandomSpirit(spiritPlan)); + for (const { id, count } of spiritPlan) { spiritIds.push(...getRandomSpirit(id, count)); } } let spiritMap = new Map(); spiritIds.forEach((spiritId) => { @@ -506,10 +506,12 @@ export class RougeHandler { 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 replaceReward = await getLayerNodeReward(roleId, gameCode, dbRecord.authorType, dbDetail.nodeId, layerPlanData.rewardPlan, dbDetail.layer, dbDetail.questType); let { rewards } = dbDetail; - let newRewards = [...rewards.filter(reward => reward.rewardType != rewardType), ...replaceReward.rewards.filter(reward => reward.rewardType == rewardType)].map(reward => ({ ...reward, reRandRewardCnt: 1 })).sort((a, b) => a.groupIndex - b.groupIndex); - dbDetail = await RougelikeRecordDetailModel.updateByCode(gameCode, detailCode, { $set: { rewards: newRewards } }); + if (replaceReward && replaceReward.rewards.length > 0) { + let newRewards = [...rewards.filter(reward => reward.rewardType != rewardType), ...replaceReward.rewards.filter(reward => reward.rewardType == rewardType)].map(reward => ({ ...reward, reRandRewardCnt: 1 })).sort((a, b) => a.groupIndex - b.groupIndex); + dbDetail = await RougelikeRecordDetailModel.updateByCode(gameCode, detailCode, { $set: { rewards: newRewards } }); + } return resResult(STATUS.SUCCESS, { rewards: dbDetail.rewards }); } diff --git a/game-server/app/services/battle/rougeService.ts b/game-server/app/services/battle/rougeService.ts index fe576551b..7ac957d89 100644 --- a/game-server/app/services/battle/rougeService.ts +++ b/game-server/app/services/battle/rougeService.ts @@ -595,7 +595,7 @@ export async function getPassiveCardPlan(passiveCardPlan: number, passiveCardRan 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 } = {}; + let weightRecord: { originalWight?: number, passiveRedWight?: number, holyAddWeight?: number, passiveLableNum?: number, authorAddWeight?: number, passiveLableNumAddWeight?: number, finalWeight?: number } = {}; if (!obj) continue; let { cardId, weight } = obj; if (!cardId || !weight) continue; @@ -617,11 +617,17 @@ export async function getPassiveCardPlan(passiveCardPlan: number, passiveCardRan } + const holyAddWeight = await getAddPassiveWeight(roleId, gameCode, type); + weight += holyAddWeight; + weightRecord.holyAddWeight = holyAddWeight; - weight += await getAddPassiveWeight(roleId, gameCode, type); - if ((passiveCardData?.authorType || 0) == type) { - weight += ROUGELIKE.AUTHOR_ADD_RANDOM; - weightRecord.authorAddWeight = ROUGELIKE.AUTHOR_ADD_RANDOM; + const { authorType = 0, quality = 0, lv = 0 } = passiveCardData; + if (authorType == type) { + const passiveWeightData = gameData.rougePassiveWeight.get(authorType + '_' + quality + '_' + lv); + if (passiveWeightData && passiveWeightData.authorTypeWeightAdd) { + weight += passiveWeightData.authorTypeWeightAdd; + weightRecord.authorAddWeight = passiveWeightData.authorTypeWeightAdd; + } } @@ -632,13 +638,6 @@ export async function getPassiveCardPlan(passiveCardPlan: number, passiveCardRan 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 }); @@ -861,7 +860,7 @@ export async function updateChalleng(dbRecord: RougelikeRecordType, roleId: stri } export function getLayerRewardOneData(type: number, grade: number, layer: number, nodeType: number) { - let result: { takeoutReward?: RewardInter[], coin?: number, score?: number, tech?: number, spiritPlan?: number } = {}; + let result: { takeoutReward?: RewardInter[], coin?: number, score?: number, tech?: number, spiritPlan?: RewardInter[] } = {}; const typeGradeData = gameData.rougeTypeGrade.get(type + '_' + grade); if (!typeGradeData) return result; const layerPlanData = gameData.rougeLayerPlan.get(typeGradeData.layerPlan + '_' + layer); @@ -871,15 +870,15 @@ export function getLayerRewardOneData(type: number, grade: number, layer: number const layerRewardData = gameData.rougeLayerRewardPlan.get(layerPlanData.rewardPlan + '_' + nodeType); if (!layerRewardData) return result; result = { ...layerRewardData, ...result }; - + return result; } -export function getRandomSpirit(spiritPlan: number) { +export function getRandomSpirit(spiritPlan: number, randomNum: 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); + if (randomNum == 0 || !spiritPlanData || spiritPlanData.length == 0) return spiritId; + let random = getRandEelmWithWeightAndNum(spiritPlanData, randomNum); spiritId = random.map(cur => { return cur.dic.spiritId }); return spiritId; diff --git a/shared/consts/constModules/sysConst.ts b/shared/consts/constModules/sysConst.ts index b3f9f2ed7..dca679fae 100644 --- a/shared/consts/constModules/sysConst.ts +++ b/shared/consts/constModules/sysConst.ts @@ -676,6 +676,7 @@ export const FILENAME = { 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_PASSIVE_WEIGHT: "dic_rougePassive_weight", DIC_ROUGE_CHALLANGE: "dic_rougeChallenge", DIC_ROUGE_CHALLANGE_PLAN: "dic_rougeChallengePlan", DIC_ROUGE_QUESTION_MARK_PLAN: "dic_rougeQuestionMarkPlan", @@ -686,7 +687,6 @@ export const FILENAME = { 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", @@ -962,7 +962,7 @@ export enum GACHA_TYPE { ASSIGN = 3, // 指定卡池 GUIDE = 4, // 限时 ACTIVITY = 5, // 新武将活动 - TAUTOR=6, // 百家争鸣祈灵 + TAUTOR = 6, // 百家争鸣祈灵 } export enum GACHA_PLAN_TYPE { diff --git a/shared/db/RougelikeRecordDetail.ts b/shared/db/RougelikeRecordDetail.ts index dfbcdf03e..919ab1f4c 100644 --- a/shared/db/RougelikeRecordDetail.ts +++ b/shared/db/RougelikeRecordDetail.ts @@ -116,6 +116,8 @@ export class WeightRecord { holyLableNumAddWeight?: number; @prop({ required: false, default: 0 }) finalWeight?: number; + @prop({ required: false, default: 0 }) + holyAddWeight?: number; } export class RandomRec { @prop({ required: false, default: 0 }) diff --git a/shared/pubUtils/data.ts b/shared/pubUtils/data.ts index 2c6f44043..0c7a5c917 100644 --- a/shared/pubUtils/data.ts +++ b/shared/pubUtils/data.ts @@ -172,6 +172,7 @@ import { dicRougeScoreNum, dicRougeScoreReward, loadRougeScoreReward } from "./d import { dicRougeEffect, loadRougeEffect } from "./dictionary/DicRougeEffect"; import { dicRougeEffectType, loadRougeEffectType } from "./dictionary/DicRougeEffectType"; import { dicSpiritPlan, loadSpiritPlan } from "./dictionary/DicSpiritPlan"; +import { dicRougePassiveWeight, loadRougePassiveWeight } from "./dictionary/DicRougePassiveWeight"; export const gameData = { daily: dicDaily, @@ -414,7 +415,7 @@ export const gameData = { rougeCharaCardPlan: dicRougeCharaCardPlan, rougePassiveCardPlan: dicRougePassiveCardPlan, rougeHolyCardPlan: dicRougeHolyCardPlan, - + rougePassiveWeight: dicRougePassiveWeight, rougeChallenge: dicRougeChallenge, rougeChallengePlan: dicRougeChallengePlan, rougeQuestionMarkPlan: dicRougeQuestionMarkPlan, @@ -1776,6 +1777,7 @@ function loadDatas(type?: string) { if (type == undefined || type == 'loadRougeCharaCardPlan') loadRougeCharaCardPlan(); if (type == undefined || type == 'loadRougePassiveCardPlan') loadRougePassiveCardPlan(); if (type == undefined || type == 'loadRougeHolyCardPlan') loadRougeHolyCardPlan(); + if (type == undefined || type == 'loadRougePassiveWeight') loadRougePassiveWeight(); if (type == undefined || type === 'loadRougeChallenge') loadRougeChallenge(); if (type == undefined || type == 'loadRougeChallengePlan') loadRougeChallengePlan(); if (type == undefined || type == 'loadRougeQuestionMarkPlan') loadRougeQuestionMarkPlan(); diff --git a/shared/pubUtils/dictionary/DicRougeLayerPlan.ts b/shared/pubUtils/dictionary/DicRougeLayerPlan.ts index ef1ffe0f9..523165035 100644 --- a/shared/pubUtils/dictionary/DicRougeLayerPlan.ts +++ b/shared/pubUtils/dictionary/DicRougeLayerPlan.ts @@ -15,7 +15,7 @@ export interface DicRougeLayerPlan { readonly rewardPlan: number; // 每层可以赠送的奖励 readonly shopPlan: number; // 该层可以随机到的商店方案 readonly takeoutReward: RewardInter[]; //额外奖励 - readonly spiritPlan: number; //英灵随机奖励 + readonly spiritPlan: RewardInter[]; //英灵随机奖励 } export const dicRougeLayerPlan = new Map(); export const dicRougeLayerPlanByPlanId = new Map(); @@ -29,6 +29,8 @@ export function loadRougeLayerPlan() { arr.forEach(o => { o.takeoutReward = parseGoodStr(o.takeoutReward); + o.spiritPlan = parseGoodStr(o.spiritPlan); + dicRougeLayerPlan.set(o.planId + '_' + o.layerIndex, o); if (!dicRougeLayerPlanByPlanId.get(o.planId)) dicRougeLayerPlanByPlanId.set(o.planId, []); diff --git a/shared/pubUtils/dictionary/DicRougePassiveWeight.ts b/shared/pubUtils/dictionary/DicRougePassiveWeight.ts new file mode 100644 index 000000000..a378770d0 --- /dev/null +++ b/shared/pubUtils/dictionary/DicRougePassiveWeight.ts @@ -0,0 +1,28 @@ +/** + * 流派增加权重 + */ + +import { readFileAndParse } from '../util' +import { FILENAME } from '../../consts' + +export interface DicRougePassiveWeight { + readonly id: number; + readonly authorType: number; // 流派类型 + readonly quality: number; // 品质 + readonly level: number; // 等级 + readonly authorTypeWeightAdd: number; // 流派增加权重 +} +export const dicRougePassiveWeight = new Map(); + +export function loadRougePassiveWeight() { + dicRougePassiveWeight.clear(); + + let arr = readFileAndParse(FILENAME.DIC_ROUGE_PASSIVE_WEIGHT); + + arr.forEach(o => { + + dicRougePassiveWeight.set(o.authorType + '_' + o.quality + '_' + o.level, o); + + }); + arr = undefined; +} \ No newline at end of file diff --git a/shared/resource/jsons/dic_rougeLayer_plan.json b/shared/resource/jsons/dic_rougeLayer_plan.json index 6de65c1e6..4c2885733 100644 --- a/shared/resource/jsons/dic_rougeLayer_plan.json +++ b/shared/resource/jsons/dic_rougeLayer_plan.json @@ -8,7 +8,7 @@ "rewardPlan": 10101, "shopPlan": 10101, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 2, @@ -19,7 +19,7 @@ "rewardPlan": 10102, "shopPlan": 10102, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 3, @@ -30,7 +30,7 @@ "rewardPlan": 10103, "shopPlan": 10103, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 4, @@ -41,7 +41,7 @@ "rewardPlan": 10104, "shopPlan": 10104, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 5, @@ -52,7 +52,7 @@ "rewardPlan": 10105, "shopPlan": 10105, "takeoutReward": "31002&500", - "spiritPlan": 101 + "spiritPlan": "101&5|201&3" }, { "id": 6, @@ -63,7 +63,7 @@ "rewardPlan": 20101, "shopPlan": 20101, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 7, @@ -74,7 +74,7 @@ "rewardPlan": 20102, "shopPlan": 20102, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 8, @@ -85,7 +85,7 @@ "rewardPlan": 20103, "shopPlan": 20103, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 9, @@ -96,7 +96,7 @@ "rewardPlan": 20104, "shopPlan": 20104, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 10, @@ -107,7 +107,7 @@ "rewardPlan": 20105, "shopPlan": 20105, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 11, @@ -118,7 +118,7 @@ "rewardPlan": 20106, "shopPlan": 20106, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 12, @@ -129,7 +129,7 @@ "rewardPlan": 20107, "shopPlan": 20107, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 13, @@ -140,7 +140,7 @@ "rewardPlan": 20108, "shopPlan": 20108, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 14, @@ -151,7 +151,7 @@ "rewardPlan": 20109, "shopPlan": 20109, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 15, @@ -162,7 +162,7 @@ "rewardPlan": 20110, "shopPlan": 20110, "takeoutReward": "31002&500", - "spiritPlan": 201 + "spiritPlan": "201&5|301&3" }, { "id": 16, @@ -173,7 +173,7 @@ "rewardPlan": 30101, "shopPlan": 30101, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 17, @@ -184,7 +184,7 @@ "rewardPlan": 30102, "shopPlan": 30102, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 18, @@ -195,7 +195,7 @@ "rewardPlan": 30103, "shopPlan": 30103, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 19, @@ -206,7 +206,7 @@ "rewardPlan": 30104, "shopPlan": 30104, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 20, @@ -217,7 +217,7 @@ "rewardPlan": 30105, "shopPlan": 30105, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 21, @@ -228,7 +228,7 @@ "rewardPlan": 30106, "shopPlan": 30106, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 22, @@ -239,7 +239,7 @@ "rewardPlan": 30107, "shopPlan": 30107, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 23, @@ -250,7 +250,7 @@ "rewardPlan": 30108, "shopPlan": 30108, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 24, @@ -261,7 +261,7 @@ "rewardPlan": 30109, "shopPlan": 30109, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 25, @@ -272,7 +272,7 @@ "rewardPlan": 30110, "shopPlan": 30110, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 26, @@ -283,7 +283,7 @@ "rewardPlan": 30111, "shopPlan": 30111, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 27, @@ -294,7 +294,7 @@ "rewardPlan": 30112, "shopPlan": 30112, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 28, @@ -305,7 +305,7 @@ "rewardPlan": 30113, "shopPlan": 30113, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 29, @@ -316,7 +316,7 @@ "rewardPlan": 30114, "shopPlan": 30114, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 30, @@ -327,7 +327,7 @@ "rewardPlan": 30115, "shopPlan": 30115, "takeoutReward": "31002&500", - "spiritPlan": 301 + "spiritPlan": "301&5|302&3" }, { "id": 31, @@ -338,7 +338,7 @@ "rewardPlan": 30201, "shopPlan": 30201, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 32, @@ -349,7 +349,7 @@ "rewardPlan": 30202, "shopPlan": 30202, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 33, @@ -360,7 +360,7 @@ "rewardPlan": 30203, "shopPlan": 30203, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 34, @@ -371,7 +371,7 @@ "rewardPlan": 30204, "shopPlan": 30204, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 35, @@ -382,7 +382,7 @@ "rewardPlan": 30205, "shopPlan": 30205, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 36, @@ -393,7 +393,7 @@ "rewardPlan": 30206, "shopPlan": 30206, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 37, @@ -404,7 +404,7 @@ "rewardPlan": 30207, "shopPlan": 30207, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 38, @@ -415,7 +415,7 @@ "rewardPlan": 30208, "shopPlan": 30208, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 39, @@ -426,7 +426,7 @@ "rewardPlan": 30209, "shopPlan": 30209, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 40, @@ -437,7 +437,7 @@ "rewardPlan": 30210, "shopPlan": 30210, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 41, @@ -448,7 +448,7 @@ "rewardPlan": 30211, "shopPlan": 30211, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 42, @@ -459,7 +459,7 @@ "rewardPlan": 30212, "shopPlan": 30212, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 43, @@ -470,7 +470,7 @@ "rewardPlan": 30213, "shopPlan": 30213, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 44, @@ -481,7 +481,7 @@ "rewardPlan": 30214, "shopPlan": 30214, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 45, @@ -492,7 +492,7 @@ "rewardPlan": 30215, "shopPlan": 30215, "takeoutReward": "31002&500", - "spiritPlan": 302 + "spiritPlan": "302&5|303&3" }, { "id": 46, @@ -503,7 +503,7 @@ "rewardPlan": 30301, "shopPlan": 30301, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 47, @@ -514,7 +514,7 @@ "rewardPlan": 30302, "shopPlan": 30302, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 48, @@ -525,7 +525,7 @@ "rewardPlan": 30303, "shopPlan": 30303, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 49, @@ -536,7 +536,7 @@ "rewardPlan": 30304, "shopPlan": 30304, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 50, @@ -547,7 +547,7 @@ "rewardPlan": 30305, "shopPlan": 30305, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 51, @@ -558,7 +558,7 @@ "rewardPlan": 30306, "shopPlan": 30306, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 52, @@ -569,7 +569,7 @@ "rewardPlan": 30307, "shopPlan": 30307, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 53, @@ -580,7 +580,7 @@ "rewardPlan": 30308, "shopPlan": 30308, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 54, @@ -591,7 +591,7 @@ "rewardPlan": 30309, "shopPlan": 30309, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 55, @@ -602,7 +602,7 @@ "rewardPlan": 30310, "shopPlan": 30310, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 56, @@ -613,7 +613,7 @@ "rewardPlan": 30311, "shopPlan": 30311, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 57, @@ -624,7 +624,7 @@ "rewardPlan": 30312, "shopPlan": 30312, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 58, @@ -635,7 +635,7 @@ "rewardPlan": 30313, "shopPlan": 30313, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 59, @@ -646,7 +646,7 @@ "rewardPlan": 30314, "shopPlan": 30314, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 60, @@ -657,7 +657,7 @@ "rewardPlan": 30315, "shopPlan": 30315, "takeoutReward": "31002&500", - "spiritPlan": 303 + "spiritPlan": "303&6" }, { "id": 61, @@ -668,7 +668,7 @@ "rewardPlan": 30401, "shopPlan": 30401, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 62, @@ -679,7 +679,7 @@ "rewardPlan": 30402, "shopPlan": 30402, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 63, @@ -690,7 +690,7 @@ "rewardPlan": 30403, "shopPlan": 30403, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 64, @@ -701,7 +701,7 @@ "rewardPlan": 30404, "shopPlan": 30404, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 65, @@ -712,7 +712,7 @@ "rewardPlan": 30405, "shopPlan": 30405, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 66, @@ -723,7 +723,7 @@ "rewardPlan": 30406, "shopPlan": 30406, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 67, @@ -734,7 +734,7 @@ "rewardPlan": 30407, "shopPlan": 30407, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 68, @@ -745,7 +745,7 @@ "rewardPlan": 30408, "shopPlan": 30408, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 69, @@ -756,7 +756,7 @@ "rewardPlan": 30409, "shopPlan": 30409, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 70, @@ -767,7 +767,7 @@ "rewardPlan": 30410, "shopPlan": 30410, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 71, @@ -778,7 +778,7 @@ "rewardPlan": 30411, "shopPlan": 30411, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 72, @@ -789,7 +789,7 @@ "rewardPlan": 30412, "shopPlan": 30412, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 73, @@ -800,7 +800,7 @@ "rewardPlan": 30413, "shopPlan": 30413, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 74, @@ -811,7 +811,7 @@ "rewardPlan": 30414, "shopPlan": 30414, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 75, @@ -822,7 +822,7 @@ "rewardPlan": 30415, "shopPlan": 30415, "takeoutReward": "31002&500", - "spiritPlan": 304 + "spiritPlan": "304&6" }, { "id": 76, @@ -833,7 +833,7 @@ "rewardPlan": 30501, "shopPlan": 30501, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 77, @@ -844,7 +844,7 @@ "rewardPlan": 30502, "shopPlan": 30502, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 78, @@ -855,7 +855,7 @@ "rewardPlan": 30503, "shopPlan": 30503, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 79, @@ -866,7 +866,7 @@ "rewardPlan": 30504, "shopPlan": 30504, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 80, @@ -877,7 +877,7 @@ "rewardPlan": 30505, "shopPlan": 30505, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 81, @@ -888,7 +888,7 @@ "rewardPlan": 30506, "shopPlan": 30506, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 82, @@ -899,7 +899,7 @@ "rewardPlan": 30507, "shopPlan": 30507, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 83, @@ -910,7 +910,7 @@ "rewardPlan": 30508, "shopPlan": 30508, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 84, @@ -921,7 +921,7 @@ "rewardPlan": 30509, "shopPlan": 30509, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 85, @@ -932,7 +932,7 @@ "rewardPlan": 30510, "shopPlan": 30510, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 86, @@ -943,7 +943,7 @@ "rewardPlan": 30511, "shopPlan": 30511, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 87, @@ -954,7 +954,7 @@ "rewardPlan": 30512, "shopPlan": 30512, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 88, @@ -965,7 +965,7 @@ "rewardPlan": 30513, "shopPlan": 30513, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 89, @@ -976,7 +976,7 @@ "rewardPlan": 30514, "shopPlan": 30514, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 90, @@ -987,7 +987,7 @@ "rewardPlan": 30515, "shopPlan": 30515, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 91, @@ -998,7 +998,7 @@ "rewardPlan": 30516, "shopPlan": 30516, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 92, @@ -1009,7 +1009,7 @@ "rewardPlan": 30517, "shopPlan": 30517, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 93, @@ -1020,7 +1020,7 @@ "rewardPlan": 30518, "shopPlan": 30518, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 94, @@ -1031,7 +1031,7 @@ "rewardPlan": 30519, "shopPlan": 30519, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 95, @@ -1042,7 +1042,7 @@ "rewardPlan": 30520, "shopPlan": 30520, "takeoutReward": "31002&500", - "spiritPlan": 305 + "spiritPlan": "305&6" }, { "id": 96, @@ -1053,7 +1053,7 @@ "rewardPlan": 40101, "shopPlan": 40101, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 97, @@ -1064,7 +1064,7 @@ "rewardPlan": 40102, "shopPlan": 40102, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 98, @@ -1075,7 +1075,7 @@ "rewardPlan": 40103, "shopPlan": 40103, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 99, @@ -1086,7 +1086,7 @@ "rewardPlan": 40104, "shopPlan": 40104, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 100, @@ -1097,7 +1097,7 @@ "rewardPlan": 40105, "shopPlan": 40105, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 101, @@ -1108,7 +1108,7 @@ "rewardPlan": 40106, "shopPlan": 40106, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 102, @@ -1119,7 +1119,7 @@ "rewardPlan": 40107, "shopPlan": 40107, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 103, @@ -1130,7 +1130,7 @@ "rewardPlan": 40108, "shopPlan": 40108, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 104, @@ -1141,7 +1141,7 @@ "rewardPlan": 40109, "shopPlan": 40109, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 105, @@ -1152,7 +1152,7 @@ "rewardPlan": 40110, "shopPlan": 40110, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 106, @@ -1163,7 +1163,7 @@ "rewardPlan": 40111, "shopPlan": 40111, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 107, @@ -1174,7 +1174,7 @@ "rewardPlan": 40112, "shopPlan": 40112, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 108, @@ -1185,7 +1185,7 @@ "rewardPlan": 40113, "shopPlan": 40113, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 109, @@ -1196,7 +1196,7 @@ "rewardPlan": 40114, "shopPlan": 40114, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 110, @@ -1207,7 +1207,7 @@ "rewardPlan": 40115, "shopPlan": 40115, "takeoutReward": "31002&500", - "spiritPlan": 401 + "spiritPlan": "401&6" }, { "id": 111, @@ -1218,7 +1218,7 @@ "rewardPlan": 40201, "shopPlan": 40201, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 112, @@ -1229,7 +1229,7 @@ "rewardPlan": 40202, "shopPlan": 40202, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 113, @@ -1240,7 +1240,7 @@ "rewardPlan": 40203, "shopPlan": 40203, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 114, @@ -1251,7 +1251,7 @@ "rewardPlan": 40204, "shopPlan": 40204, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 115, @@ -1262,7 +1262,7 @@ "rewardPlan": 40205, "shopPlan": 40205, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 116, @@ -1273,7 +1273,7 @@ "rewardPlan": 40206, "shopPlan": 40206, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 117, @@ -1284,7 +1284,7 @@ "rewardPlan": 40207, "shopPlan": 40207, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 118, @@ -1295,7 +1295,7 @@ "rewardPlan": 40208, "shopPlan": 40208, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 119, @@ -1306,7 +1306,7 @@ "rewardPlan": 40209, "shopPlan": 40209, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 120, @@ -1317,7 +1317,7 @@ "rewardPlan": 40210, "shopPlan": 40210, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 121, @@ -1328,7 +1328,7 @@ "rewardPlan": 40211, "shopPlan": 40211, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 122, @@ -1339,7 +1339,7 @@ "rewardPlan": 40212, "shopPlan": 40212, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 123, @@ -1350,7 +1350,7 @@ "rewardPlan": 40213, "shopPlan": 40213, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 124, @@ -1361,7 +1361,7 @@ "rewardPlan": 40214, "shopPlan": 40214, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 125, @@ -1372,7 +1372,7 @@ "rewardPlan": 40215, "shopPlan": 40215, "takeoutReward": "31002&500", - "spiritPlan": 402 + "spiritPlan": "402&6" }, { "id": 126, @@ -1383,7 +1383,7 @@ "rewardPlan": 40301, "shopPlan": 40301, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 127, @@ -1394,7 +1394,7 @@ "rewardPlan": 40302, "shopPlan": 40302, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 128, @@ -1405,7 +1405,7 @@ "rewardPlan": 40303, "shopPlan": 40303, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 129, @@ -1416,7 +1416,7 @@ "rewardPlan": 40304, "shopPlan": 40304, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 130, @@ -1427,7 +1427,7 @@ "rewardPlan": 40305, "shopPlan": 40305, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 131, @@ -1438,7 +1438,7 @@ "rewardPlan": 40306, "shopPlan": 40306, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 132, @@ -1449,7 +1449,7 @@ "rewardPlan": 40307, "shopPlan": 40307, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 133, @@ -1460,7 +1460,7 @@ "rewardPlan": 40308, "shopPlan": 40308, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 134, @@ -1471,7 +1471,7 @@ "rewardPlan": 40309, "shopPlan": 40309, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 135, @@ -1482,7 +1482,7 @@ "rewardPlan": 40310, "shopPlan": 40310, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 136, @@ -1493,7 +1493,7 @@ "rewardPlan": 40311, "shopPlan": 40311, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 137, @@ -1504,7 +1504,7 @@ "rewardPlan": 40312, "shopPlan": 40312, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 138, @@ -1515,7 +1515,7 @@ "rewardPlan": 40313, "shopPlan": 40313, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 139, @@ -1526,7 +1526,7 @@ "rewardPlan": 40314, "shopPlan": 40314, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 140, @@ -1537,7 +1537,7 @@ "rewardPlan": 40315, "shopPlan": 40315, "takeoutReward": "31002&500", - "spiritPlan": 403 + "spiritPlan": "403&6" }, { "id": 141, @@ -1548,7 +1548,7 @@ "rewardPlan": 40401, "shopPlan": 40401, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 142, @@ -1559,7 +1559,7 @@ "rewardPlan": 40402, "shopPlan": 40402, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 143, @@ -1570,7 +1570,7 @@ "rewardPlan": 40403, "shopPlan": 40403, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 144, @@ -1581,7 +1581,7 @@ "rewardPlan": 40404, "shopPlan": 40404, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 145, @@ -1592,7 +1592,7 @@ "rewardPlan": 40405, "shopPlan": 40405, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 146, @@ -1603,7 +1603,7 @@ "rewardPlan": 40406, "shopPlan": 40406, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 147, @@ -1614,7 +1614,7 @@ "rewardPlan": 40407, "shopPlan": 40407, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 148, @@ -1625,7 +1625,7 @@ "rewardPlan": 40408, "shopPlan": 40408, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 149, @@ -1636,7 +1636,7 @@ "rewardPlan": 40409, "shopPlan": 40409, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 150, @@ -1647,7 +1647,7 @@ "rewardPlan": 40410, "shopPlan": 40410, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 151, @@ -1658,7 +1658,7 @@ "rewardPlan": 40411, "shopPlan": 40411, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 152, @@ -1669,7 +1669,7 @@ "rewardPlan": 40412, "shopPlan": 40412, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 153, @@ -1680,7 +1680,7 @@ "rewardPlan": 40413, "shopPlan": 40413, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 154, @@ -1691,7 +1691,7 @@ "rewardPlan": 40414, "shopPlan": 40414, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 155, @@ -1702,7 +1702,7 @@ "rewardPlan": 40415, "shopPlan": 40415, "takeoutReward": "31002&500", - "spiritPlan": 404 + "spiritPlan": "404&6" }, { "id": 156, @@ -1713,7 +1713,7 @@ "rewardPlan": 40501, "shopPlan": 40501, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 157, @@ -1724,7 +1724,7 @@ "rewardPlan": 40502, "shopPlan": 40502, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 158, @@ -1735,7 +1735,7 @@ "rewardPlan": 40503, "shopPlan": 40503, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 159, @@ -1746,7 +1746,7 @@ "rewardPlan": 40504, "shopPlan": 40504, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 160, @@ -1757,7 +1757,7 @@ "rewardPlan": 40505, "shopPlan": 40505, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 161, @@ -1768,7 +1768,7 @@ "rewardPlan": 40506, "shopPlan": 40506, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 162, @@ -1779,7 +1779,7 @@ "rewardPlan": 40507, "shopPlan": 40507, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 163, @@ -1790,7 +1790,7 @@ "rewardPlan": 40508, "shopPlan": 40508, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 164, @@ -1801,7 +1801,7 @@ "rewardPlan": 40509, "shopPlan": 40509, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 165, @@ -1812,7 +1812,7 @@ "rewardPlan": 40510, "shopPlan": 40510, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 166, @@ -1823,7 +1823,7 @@ "rewardPlan": 40511, "shopPlan": 40511, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 167, @@ -1834,7 +1834,7 @@ "rewardPlan": 40512, "shopPlan": 40512, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 168, @@ -1845,7 +1845,7 @@ "rewardPlan": 40513, "shopPlan": 40513, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 169, @@ -1856,7 +1856,7 @@ "rewardPlan": 40514, "shopPlan": 40514, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 170, @@ -1867,7 +1867,7 @@ "rewardPlan": 40515, "shopPlan": 40515, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 171, @@ -1878,7 +1878,7 @@ "rewardPlan": 40516, "shopPlan": 40516, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 172, @@ -1889,7 +1889,7 @@ "rewardPlan": 40517, "shopPlan": 40517, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 173, @@ -1900,7 +1900,7 @@ "rewardPlan": 40518, "shopPlan": 40518, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 174, @@ -1911,7 +1911,7 @@ "rewardPlan": 40519, "shopPlan": 40519, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 175, @@ -1922,7 +1922,7 @@ "rewardPlan": 40520, "shopPlan": 40520, "takeoutReward": "31002&500", - "spiritPlan": 405 + "spiritPlan": "405&6" }, { "id": 176, @@ -1933,7 +1933,7 @@ "rewardPlan": 50101, "shopPlan": 50101, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 177, @@ -1944,7 +1944,7 @@ "rewardPlan": 50102, "shopPlan": 50102, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 178, @@ -1955,7 +1955,7 @@ "rewardPlan": 50103, "shopPlan": 50103, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 179, @@ -1966,7 +1966,7 @@ "rewardPlan": 50104, "shopPlan": 50104, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 180, @@ -1977,7 +1977,7 @@ "rewardPlan": 50105, "shopPlan": 50105, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 181, @@ -1988,7 +1988,7 @@ "rewardPlan": 50106, "shopPlan": 50106, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 182, @@ -1999,7 +1999,7 @@ "rewardPlan": 50107, "shopPlan": 50107, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 183, @@ -2010,7 +2010,7 @@ "rewardPlan": 50108, "shopPlan": 50108, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 184, @@ -2021,7 +2021,7 @@ "rewardPlan": 50109, "shopPlan": 50109, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 185, @@ -2032,7 +2032,7 @@ "rewardPlan": 50110, "shopPlan": 50110, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 186, @@ -2043,7 +2043,7 @@ "rewardPlan": 50111, "shopPlan": 50111, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 187, @@ -2054,7 +2054,7 @@ "rewardPlan": 50112, "shopPlan": 50112, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 188, @@ -2065,7 +2065,7 @@ "rewardPlan": 50113, "shopPlan": 50113, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 189, @@ -2076,7 +2076,7 @@ "rewardPlan": 50114, "shopPlan": 50114, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 190, @@ -2087,7 +2087,7 @@ "rewardPlan": 50115, "shopPlan": 50115, "takeoutReward": "31002&500", - "spiritPlan": 501 + "spiritPlan": "501&6" }, { "id": 191, @@ -2098,7 +2098,7 @@ "rewardPlan": 50201, "shopPlan": 50201, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 192, @@ -2109,7 +2109,7 @@ "rewardPlan": 50202, "shopPlan": 50202, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 193, @@ -2120,7 +2120,7 @@ "rewardPlan": 50203, "shopPlan": 50203, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 194, @@ -2131,7 +2131,7 @@ "rewardPlan": 50204, "shopPlan": 50204, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 195, @@ -2142,7 +2142,7 @@ "rewardPlan": 50205, "shopPlan": 50205, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 196, @@ -2153,7 +2153,7 @@ "rewardPlan": 50206, "shopPlan": 50206, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 197, @@ -2164,7 +2164,7 @@ "rewardPlan": 50207, "shopPlan": 50207, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 198, @@ -2175,7 +2175,7 @@ "rewardPlan": 50208, "shopPlan": 50208, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 199, @@ -2186,7 +2186,7 @@ "rewardPlan": 50209, "shopPlan": 50209, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 200, @@ -2197,7 +2197,7 @@ "rewardPlan": 50210, "shopPlan": 50210, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 201, @@ -2208,7 +2208,7 @@ "rewardPlan": 50211, "shopPlan": 50211, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 202, @@ -2219,7 +2219,7 @@ "rewardPlan": 50212, "shopPlan": 50212, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 203, @@ -2230,7 +2230,7 @@ "rewardPlan": 50213, "shopPlan": 50213, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 204, @@ -2241,7 +2241,7 @@ "rewardPlan": 50214, "shopPlan": 50214, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 205, @@ -2252,7 +2252,7 @@ "rewardPlan": 50215, "shopPlan": 50215, "takeoutReward": "31002&500", - "spiritPlan": 502 + "spiritPlan": "502&6" }, { "id": 206, @@ -2263,7 +2263,7 @@ "rewardPlan": 50301, "shopPlan": 50301, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 207, @@ -2274,7 +2274,7 @@ "rewardPlan": 50302, "shopPlan": 50302, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 208, @@ -2285,7 +2285,7 @@ "rewardPlan": 50303, "shopPlan": 50303, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 209, @@ -2296,7 +2296,7 @@ "rewardPlan": 50304, "shopPlan": 50304, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 210, @@ -2307,7 +2307,7 @@ "rewardPlan": 50305, "shopPlan": 50305, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 211, @@ -2318,7 +2318,7 @@ "rewardPlan": 50306, "shopPlan": 50306, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 212, @@ -2329,7 +2329,7 @@ "rewardPlan": 50307, "shopPlan": 50307, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 213, @@ -2340,7 +2340,7 @@ "rewardPlan": 50308, "shopPlan": 50308, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 214, @@ -2351,7 +2351,7 @@ "rewardPlan": 50309, "shopPlan": 50309, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 215, @@ -2362,7 +2362,7 @@ "rewardPlan": 50310, "shopPlan": 50310, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 216, @@ -2373,7 +2373,7 @@ "rewardPlan": 50311, "shopPlan": 50311, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 217, @@ -2384,7 +2384,7 @@ "rewardPlan": 50312, "shopPlan": 50312, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 218, @@ -2395,7 +2395,7 @@ "rewardPlan": 50313, "shopPlan": 50313, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 219, @@ -2406,7 +2406,7 @@ "rewardPlan": 50314, "shopPlan": 50314, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 220, @@ -2417,7 +2417,7 @@ "rewardPlan": 50315, "shopPlan": 50315, "takeoutReward": "31002&500", - "spiritPlan": 503 + "spiritPlan": "503&6" }, { "id": 221, @@ -2428,7 +2428,7 @@ "rewardPlan": 50401, "shopPlan": 50401, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 222, @@ -2439,7 +2439,7 @@ "rewardPlan": 50402, "shopPlan": 50402, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 223, @@ -2450,7 +2450,7 @@ "rewardPlan": 50403, "shopPlan": 50403, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 224, @@ -2461,7 +2461,7 @@ "rewardPlan": 50404, "shopPlan": 50404, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 225, @@ -2472,7 +2472,7 @@ "rewardPlan": 50405, "shopPlan": 50405, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 226, @@ -2483,7 +2483,7 @@ "rewardPlan": 50406, "shopPlan": 50406, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 227, @@ -2494,7 +2494,7 @@ "rewardPlan": 50407, "shopPlan": 50407, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 228, @@ -2505,7 +2505,7 @@ "rewardPlan": 50408, "shopPlan": 50408, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 229, @@ -2516,7 +2516,7 @@ "rewardPlan": 50409, "shopPlan": 50409, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 230, @@ -2527,7 +2527,7 @@ "rewardPlan": 50410, "shopPlan": 50410, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 231, @@ -2538,7 +2538,7 @@ "rewardPlan": 50411, "shopPlan": 50411, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 232, @@ -2549,7 +2549,7 @@ "rewardPlan": 50412, "shopPlan": 50412, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 233, @@ -2560,7 +2560,7 @@ "rewardPlan": 50413, "shopPlan": 50413, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 234, @@ -2571,7 +2571,7 @@ "rewardPlan": 50414, "shopPlan": 50414, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 235, @@ -2582,7 +2582,7 @@ "rewardPlan": 50415, "shopPlan": 50415, "takeoutReward": "31002&500", - "spiritPlan": 504 + "spiritPlan": "504&6" }, { "id": 236, @@ -2593,7 +2593,7 @@ "rewardPlan": 50501, "shopPlan": 50501, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 237, @@ -2604,7 +2604,7 @@ "rewardPlan": 50502, "shopPlan": 50502, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 238, @@ -2615,7 +2615,7 @@ "rewardPlan": 50503, "shopPlan": 50503, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 239, @@ -2626,7 +2626,7 @@ "rewardPlan": 50504, "shopPlan": 50504, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 240, @@ -2637,7 +2637,7 @@ "rewardPlan": 50505, "shopPlan": 50505, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 241, @@ -2648,7 +2648,7 @@ "rewardPlan": 50506, "shopPlan": 50506, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 242, @@ -2659,7 +2659,7 @@ "rewardPlan": 50507, "shopPlan": 50507, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 243, @@ -2670,7 +2670,7 @@ "rewardPlan": 50508, "shopPlan": 50508, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 244, @@ -2681,7 +2681,7 @@ "rewardPlan": 50509, "shopPlan": 50509, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 245, @@ -2692,7 +2692,7 @@ "rewardPlan": 50510, "shopPlan": 50510, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 246, @@ -2703,7 +2703,7 @@ "rewardPlan": 50511, "shopPlan": 50511, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 247, @@ -2714,7 +2714,7 @@ "rewardPlan": 50512, "shopPlan": 50512, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 248, @@ -2725,7 +2725,7 @@ "rewardPlan": 50513, "shopPlan": 50513, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 249, @@ -2736,7 +2736,7 @@ "rewardPlan": 50514, "shopPlan": 50514, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 250, @@ -2747,7 +2747,7 @@ "rewardPlan": 50515, "shopPlan": 50515, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 251, @@ -2758,7 +2758,7 @@ "rewardPlan": 50516, "shopPlan": 50516, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 252, @@ -2769,7 +2769,7 @@ "rewardPlan": 50517, "shopPlan": 50517, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 253, @@ -2780,7 +2780,7 @@ "rewardPlan": 50518, "shopPlan": 50518, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 254, @@ -2791,7 +2791,7 @@ "rewardPlan": 50519, "shopPlan": 50519, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 255, @@ -2802,7 +2802,7 @@ "rewardPlan": 50520, "shopPlan": 50520, "takeoutReward": "31002&500", - "spiritPlan": 505 + "spiritPlan": "505&6" }, { "id": 256, @@ -2813,7 +2813,7 @@ "rewardPlan": 60101, "shopPlan": 60101, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 257, @@ -2824,7 +2824,7 @@ "rewardPlan": 60102, "shopPlan": 60102, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 258, @@ -2835,7 +2835,7 @@ "rewardPlan": 60103, "shopPlan": 60103, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 259, @@ -2846,7 +2846,7 @@ "rewardPlan": 60104, "shopPlan": 60104, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 260, @@ -2857,7 +2857,7 @@ "rewardPlan": 60105, "shopPlan": 60105, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 261, @@ -2868,7 +2868,7 @@ "rewardPlan": 60106, "shopPlan": 60106, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 262, @@ -2879,7 +2879,7 @@ "rewardPlan": 60107, "shopPlan": 60107, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 263, @@ -2890,7 +2890,7 @@ "rewardPlan": 60108, "shopPlan": 60108, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 264, @@ -2901,7 +2901,7 @@ "rewardPlan": 60109, "shopPlan": 60109, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 265, @@ -2912,7 +2912,7 @@ "rewardPlan": 60110, "shopPlan": 60110, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 266, @@ -2923,7 +2923,7 @@ "rewardPlan": 60111, "shopPlan": 60111, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 267, @@ -2934,7 +2934,7 @@ "rewardPlan": 60112, "shopPlan": 60112, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 268, @@ -2945,7 +2945,7 @@ "rewardPlan": 60113, "shopPlan": 60113, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 269, @@ -2956,7 +2956,7 @@ "rewardPlan": 60114, "shopPlan": 60114, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 270, @@ -2967,7 +2967,7 @@ "rewardPlan": 60115, "shopPlan": 60115, "takeoutReward": "31002&500", - "spiritPlan": 601 + "spiritPlan": "601&6" }, { "id": 271, @@ -2978,7 +2978,7 @@ "rewardPlan": 60201, "shopPlan": 60201, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 272, @@ -2989,7 +2989,7 @@ "rewardPlan": 60202, "shopPlan": 60202, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 273, @@ -3000,7 +3000,7 @@ "rewardPlan": 60203, "shopPlan": 60203, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 274, @@ -3011,7 +3011,7 @@ "rewardPlan": 60204, "shopPlan": 60204, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 275, @@ -3022,7 +3022,7 @@ "rewardPlan": 60205, "shopPlan": 60205, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 276, @@ -3033,7 +3033,7 @@ "rewardPlan": 60206, "shopPlan": 60206, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 277, @@ -3044,7 +3044,7 @@ "rewardPlan": 60207, "shopPlan": 60207, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 278, @@ -3055,7 +3055,7 @@ "rewardPlan": 60208, "shopPlan": 60208, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 279, @@ -3066,7 +3066,7 @@ "rewardPlan": 60209, "shopPlan": 60209, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 280, @@ -3077,7 +3077,7 @@ "rewardPlan": 60210, "shopPlan": 60210, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 281, @@ -3088,7 +3088,7 @@ "rewardPlan": 60211, "shopPlan": 60211, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 282, @@ -3099,7 +3099,7 @@ "rewardPlan": 60212, "shopPlan": 60212, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 283, @@ -3110,7 +3110,7 @@ "rewardPlan": 60213, "shopPlan": 60213, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 284, @@ -3121,7 +3121,7 @@ "rewardPlan": 60214, "shopPlan": 60214, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 285, @@ -3132,7 +3132,7 @@ "rewardPlan": 60215, "shopPlan": 60215, "takeoutReward": "31002&500", - "spiritPlan": 602 + "spiritPlan": "602&6" }, { "id": 286, @@ -3143,7 +3143,7 @@ "rewardPlan": 60301, "shopPlan": 60301, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 287, @@ -3154,7 +3154,7 @@ "rewardPlan": 60302, "shopPlan": 60302, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 288, @@ -3165,7 +3165,7 @@ "rewardPlan": 60303, "shopPlan": 60303, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 289, @@ -3176,7 +3176,7 @@ "rewardPlan": 60304, "shopPlan": 60304, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 290, @@ -3187,7 +3187,7 @@ "rewardPlan": 60305, "shopPlan": 60305, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 291, @@ -3198,7 +3198,7 @@ "rewardPlan": 60306, "shopPlan": 60306, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 292, @@ -3209,7 +3209,7 @@ "rewardPlan": 60307, "shopPlan": 60307, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 293, @@ -3220,7 +3220,7 @@ "rewardPlan": 60308, "shopPlan": 60308, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 294, @@ -3231,7 +3231,7 @@ "rewardPlan": 60309, "shopPlan": 60309, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 295, @@ -3242,7 +3242,7 @@ "rewardPlan": 60310, "shopPlan": 60310, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 296, @@ -3253,7 +3253,7 @@ "rewardPlan": 60311, "shopPlan": 60311, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 297, @@ -3264,7 +3264,7 @@ "rewardPlan": 60312, "shopPlan": 60312, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 298, @@ -3275,7 +3275,7 @@ "rewardPlan": 60313, "shopPlan": 60313, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 299, @@ -3286,7 +3286,7 @@ "rewardPlan": 60314, "shopPlan": 60314, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 300, @@ -3297,7 +3297,7 @@ "rewardPlan": 60315, "shopPlan": 60315, "takeoutReward": "31002&500", - "spiritPlan": 603 + "spiritPlan": "603&6" }, { "id": 301, @@ -3308,7 +3308,7 @@ "rewardPlan": 60401, "shopPlan": 60401, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 302, @@ -3319,7 +3319,7 @@ "rewardPlan": 60402, "shopPlan": 60402, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 303, @@ -3330,7 +3330,7 @@ "rewardPlan": 60403, "shopPlan": 60403, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 304, @@ -3341,7 +3341,7 @@ "rewardPlan": 60404, "shopPlan": 60404, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 305, @@ -3352,7 +3352,7 @@ "rewardPlan": 60405, "shopPlan": 60405, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 306, @@ -3363,7 +3363,7 @@ "rewardPlan": 60406, "shopPlan": 60406, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 307, @@ -3374,7 +3374,7 @@ "rewardPlan": 60407, "shopPlan": 60407, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 308, @@ -3385,7 +3385,7 @@ "rewardPlan": 60408, "shopPlan": 60408, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 309, @@ -3396,7 +3396,7 @@ "rewardPlan": 60409, "shopPlan": 60409, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 310, @@ -3407,7 +3407,7 @@ "rewardPlan": 60410, "shopPlan": 60410, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 311, @@ -3418,7 +3418,7 @@ "rewardPlan": 60411, "shopPlan": 60411, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 312, @@ -3429,7 +3429,7 @@ "rewardPlan": 60412, "shopPlan": 60412, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 313, @@ -3440,7 +3440,7 @@ "rewardPlan": 60413, "shopPlan": 60413, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 314, @@ -3451,7 +3451,7 @@ "rewardPlan": 60414, "shopPlan": 60414, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 315, @@ -3462,7 +3462,7 @@ "rewardPlan": 60415, "shopPlan": 60415, "takeoutReward": "31002&500", - "spiritPlan": 604 + "spiritPlan": "604&6" }, { "id": 316, @@ -3473,7 +3473,7 @@ "rewardPlan": 60501, "shopPlan": 60501, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 317, @@ -3484,7 +3484,7 @@ "rewardPlan": 60502, "shopPlan": 60502, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 318, @@ -3495,7 +3495,7 @@ "rewardPlan": 60503, "shopPlan": 60503, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 319, @@ -3506,7 +3506,7 @@ "rewardPlan": 60504, "shopPlan": 60504, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 320, @@ -3517,7 +3517,7 @@ "rewardPlan": 60505, "shopPlan": 60505, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 321, @@ -3528,7 +3528,7 @@ "rewardPlan": 60506, "shopPlan": 60506, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 322, @@ -3539,7 +3539,7 @@ "rewardPlan": 60507, "shopPlan": 60507, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 323, @@ -3550,7 +3550,7 @@ "rewardPlan": 60508, "shopPlan": 60508, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 324, @@ -3561,7 +3561,7 @@ "rewardPlan": 60509, "shopPlan": 60509, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 325, @@ -3572,7 +3572,7 @@ "rewardPlan": 60510, "shopPlan": 60510, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 326, @@ -3583,7 +3583,7 @@ "rewardPlan": 60511, "shopPlan": 60511, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 327, @@ -3594,7 +3594,7 @@ "rewardPlan": 60512, "shopPlan": 60512, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 328, @@ -3605,7 +3605,7 @@ "rewardPlan": 60513, "shopPlan": 60513, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 329, @@ -3616,7 +3616,7 @@ "rewardPlan": 60514, "shopPlan": 60514, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 330, @@ -3627,7 +3627,7 @@ "rewardPlan": 60515, "shopPlan": 60515, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 331, @@ -3638,7 +3638,7 @@ "rewardPlan": 60516, "shopPlan": 60516, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 332, @@ -3649,7 +3649,7 @@ "rewardPlan": 60517, "shopPlan": 60517, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 333, @@ -3660,7 +3660,7 @@ "rewardPlan": 60518, "shopPlan": 60518, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 334, @@ -3671,7 +3671,7 @@ "rewardPlan": 60519, "shopPlan": 60519, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 335, @@ -3682,7 +3682,7 @@ "rewardPlan": 60520, "shopPlan": 60520, "takeoutReward": "31002&500", - "spiritPlan": 605 + "spiritPlan": "605&6" }, { "id": 336, @@ -3693,7 +3693,7 @@ "rewardPlan": 70101, "shopPlan": 70101, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 337, @@ -3704,7 +3704,7 @@ "rewardPlan": 70102, "shopPlan": 70102, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 338, @@ -3715,7 +3715,7 @@ "rewardPlan": 70103, "shopPlan": 70103, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 339, @@ -3726,7 +3726,7 @@ "rewardPlan": 70104, "shopPlan": 70104, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 340, @@ -3737,7 +3737,7 @@ "rewardPlan": 70105, "shopPlan": 70105, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 341, @@ -3748,7 +3748,7 @@ "rewardPlan": 70106, "shopPlan": 70106, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 342, @@ -3759,7 +3759,7 @@ "rewardPlan": 70107, "shopPlan": 70107, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 343, @@ -3770,7 +3770,7 @@ "rewardPlan": 70108, "shopPlan": 70108, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 344, @@ -3781,7 +3781,7 @@ "rewardPlan": 70109, "shopPlan": 70109, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 345, @@ -3792,7 +3792,7 @@ "rewardPlan": 70110, "shopPlan": 70110, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 346, @@ -3803,7 +3803,7 @@ "rewardPlan": 70111, "shopPlan": 70111, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 347, @@ -3814,7 +3814,7 @@ "rewardPlan": 70112, "shopPlan": 70112, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 348, @@ -3825,7 +3825,7 @@ "rewardPlan": 70113, "shopPlan": 70113, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 349, @@ -3836,7 +3836,7 @@ "rewardPlan": 70114, "shopPlan": 70114, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 350, @@ -3847,7 +3847,7 @@ "rewardPlan": 70115, "shopPlan": 70115, "takeoutReward": "31002&500", - "spiritPlan": 701 + "spiritPlan": "701&6" }, { "id": 351, @@ -3858,7 +3858,7 @@ "rewardPlan": 70201, "shopPlan": 70201, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 352, @@ -3869,7 +3869,7 @@ "rewardPlan": 70202, "shopPlan": 70202, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 353, @@ -3880,7 +3880,7 @@ "rewardPlan": 70203, "shopPlan": 70203, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 354, @@ -3891,7 +3891,7 @@ "rewardPlan": 70204, "shopPlan": 70204, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 355, @@ -3902,7 +3902,7 @@ "rewardPlan": 70205, "shopPlan": 70205, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 356, @@ -3913,7 +3913,7 @@ "rewardPlan": 70206, "shopPlan": 70206, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 357, @@ -3924,7 +3924,7 @@ "rewardPlan": 70207, "shopPlan": 70207, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 358, @@ -3935,7 +3935,7 @@ "rewardPlan": 70208, "shopPlan": 70208, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 359, @@ -3946,7 +3946,7 @@ "rewardPlan": 70209, "shopPlan": 70209, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 360, @@ -3957,7 +3957,7 @@ "rewardPlan": 70210, "shopPlan": 70210, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 361, @@ -3968,7 +3968,7 @@ "rewardPlan": 70211, "shopPlan": 70211, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 362, @@ -3979,7 +3979,7 @@ "rewardPlan": 70212, "shopPlan": 70212, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 363, @@ -3990,7 +3990,7 @@ "rewardPlan": 70213, "shopPlan": 70213, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 364, @@ -4001,7 +4001,7 @@ "rewardPlan": 70214, "shopPlan": 70214, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 365, @@ -4012,7 +4012,7 @@ "rewardPlan": 70215, "shopPlan": 70215, "takeoutReward": "31002&500", - "spiritPlan": 702 + "spiritPlan": "702&6" }, { "id": 366, @@ -4023,7 +4023,7 @@ "rewardPlan": 70301, "shopPlan": 70301, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 367, @@ -4034,7 +4034,7 @@ "rewardPlan": 70302, "shopPlan": 70302, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 368, @@ -4045,7 +4045,7 @@ "rewardPlan": 70303, "shopPlan": 70303, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 369, @@ -4056,7 +4056,7 @@ "rewardPlan": 70304, "shopPlan": 70304, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 370, @@ -4067,7 +4067,7 @@ "rewardPlan": 70305, "shopPlan": 70305, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 371, @@ -4078,7 +4078,7 @@ "rewardPlan": 70306, "shopPlan": 70306, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 372, @@ -4089,7 +4089,7 @@ "rewardPlan": 70307, "shopPlan": 70307, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 373, @@ -4100,7 +4100,7 @@ "rewardPlan": 70308, "shopPlan": 70308, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 374, @@ -4111,7 +4111,7 @@ "rewardPlan": 70309, "shopPlan": 70309, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 375, @@ -4122,7 +4122,7 @@ "rewardPlan": 70310, "shopPlan": 70310, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 376, @@ -4133,7 +4133,7 @@ "rewardPlan": 70311, "shopPlan": 70311, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 377, @@ -4144,7 +4144,7 @@ "rewardPlan": 70312, "shopPlan": 70312, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 378, @@ -4155,7 +4155,7 @@ "rewardPlan": 70313, "shopPlan": 70313, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 379, @@ -4166,7 +4166,7 @@ "rewardPlan": 70314, "shopPlan": 70314, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 380, @@ -4177,7 +4177,7 @@ "rewardPlan": 70315, "shopPlan": 70315, "takeoutReward": "31002&500", - "spiritPlan": 703 + "spiritPlan": "703&6" }, { "id": 381, @@ -4188,7 +4188,7 @@ "rewardPlan": 70401, "shopPlan": 70401, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 382, @@ -4199,7 +4199,7 @@ "rewardPlan": 70402, "shopPlan": 70402, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 383, @@ -4210,7 +4210,7 @@ "rewardPlan": 70403, "shopPlan": 70403, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 384, @@ -4221,7 +4221,7 @@ "rewardPlan": 70404, "shopPlan": 70404, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 385, @@ -4232,7 +4232,7 @@ "rewardPlan": 70405, "shopPlan": 70405, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 386, @@ -4243,7 +4243,7 @@ "rewardPlan": 70406, "shopPlan": 70406, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 387, @@ -4254,7 +4254,7 @@ "rewardPlan": 70407, "shopPlan": 70407, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 388, @@ -4265,7 +4265,7 @@ "rewardPlan": 70408, "shopPlan": 70408, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 389, @@ -4276,7 +4276,7 @@ "rewardPlan": 70409, "shopPlan": 70409, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 390, @@ -4287,7 +4287,7 @@ "rewardPlan": 70410, "shopPlan": 70410, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 391, @@ -4298,7 +4298,7 @@ "rewardPlan": 70411, "shopPlan": 70411, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 392, @@ -4309,7 +4309,7 @@ "rewardPlan": 70412, "shopPlan": 70412, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 393, @@ -4320,7 +4320,7 @@ "rewardPlan": 70413, "shopPlan": 70413, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 394, @@ -4331,7 +4331,7 @@ "rewardPlan": 70414, "shopPlan": 70414, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 395, @@ -4342,7 +4342,7 @@ "rewardPlan": 70415, "shopPlan": 70415, "takeoutReward": "31002&500", - "spiritPlan": 704 + "spiritPlan": "704&6" }, { "id": 396, @@ -4353,7 +4353,7 @@ "rewardPlan": 70501, "shopPlan": 70501, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 397, @@ -4364,7 +4364,7 @@ "rewardPlan": 70502, "shopPlan": 70502, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 398, @@ -4375,7 +4375,7 @@ "rewardPlan": 70503, "shopPlan": 70503, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 399, @@ -4386,7 +4386,7 @@ "rewardPlan": 70504, "shopPlan": 70504, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 400, @@ -4397,7 +4397,7 @@ "rewardPlan": 70505, "shopPlan": 70505, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 401, @@ -4408,7 +4408,7 @@ "rewardPlan": 70506, "shopPlan": 70506, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 402, @@ -4419,7 +4419,7 @@ "rewardPlan": 70507, "shopPlan": 70507, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 403, @@ -4430,7 +4430,7 @@ "rewardPlan": 70508, "shopPlan": 70508, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 404, @@ -4441,7 +4441,7 @@ "rewardPlan": 70509, "shopPlan": 70509, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 405, @@ -4452,7 +4452,7 @@ "rewardPlan": 70510, "shopPlan": 70510, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 406, @@ -4463,7 +4463,7 @@ "rewardPlan": 70511, "shopPlan": 70511, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 407, @@ -4474,7 +4474,7 @@ "rewardPlan": 70512, "shopPlan": 70512, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 408, @@ -4485,7 +4485,7 @@ "rewardPlan": 70513, "shopPlan": 70513, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 409, @@ -4496,7 +4496,7 @@ "rewardPlan": 70514, "shopPlan": 70514, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 410, @@ -4507,7 +4507,7 @@ "rewardPlan": 70515, "shopPlan": 70515, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 411, @@ -4518,7 +4518,7 @@ "rewardPlan": 70516, "shopPlan": 70516, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 412, @@ -4529,7 +4529,7 @@ "rewardPlan": 70517, "shopPlan": 70517, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 413, @@ -4540,7 +4540,7 @@ "rewardPlan": 70518, "shopPlan": 70518, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 414, @@ -4551,7 +4551,7 @@ "rewardPlan": 70519, "shopPlan": 70519, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 415, @@ -4562,7 +4562,7 @@ "rewardPlan": 70520, "shopPlan": 70520, "takeoutReward": "31002&500", - "spiritPlan": 705 + "spiritPlan": "705&6" }, { "id": 416, @@ -4573,7 +4573,7 @@ "rewardPlan": 80101, "shopPlan": 80101, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 417, @@ -4584,7 +4584,7 @@ "rewardPlan": 80102, "shopPlan": 80102, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 418, @@ -4595,7 +4595,7 @@ "rewardPlan": 80103, "shopPlan": 80103, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 419, @@ -4606,7 +4606,7 @@ "rewardPlan": 80104, "shopPlan": 80104, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 420, @@ -4617,7 +4617,7 @@ "rewardPlan": 80105, "shopPlan": 80105, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 421, @@ -4628,7 +4628,7 @@ "rewardPlan": 80106, "shopPlan": 80106, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 422, @@ -4639,7 +4639,7 @@ "rewardPlan": 80107, "shopPlan": 80107, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 423, @@ -4650,7 +4650,7 @@ "rewardPlan": 80108, "shopPlan": 80108, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 424, @@ -4661,7 +4661,7 @@ "rewardPlan": 80109, "shopPlan": 80109, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 425, @@ -4672,7 +4672,7 @@ "rewardPlan": 80110, "shopPlan": 80110, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 426, @@ -4683,7 +4683,7 @@ "rewardPlan": 80111, "shopPlan": 80111, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 427, @@ -4694,7 +4694,7 @@ "rewardPlan": 80112, "shopPlan": 80112, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 428, @@ -4705,7 +4705,7 @@ "rewardPlan": 80113, "shopPlan": 80113, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 429, @@ -4716,7 +4716,7 @@ "rewardPlan": 80114, "shopPlan": 80114, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 430, @@ -4727,7 +4727,7 @@ "rewardPlan": 80115, "shopPlan": 80115, "takeoutReward": "31002&500", - "spiritPlan": 801 + "spiritPlan": "801&6" }, { "id": 431, @@ -4738,7 +4738,7 @@ "rewardPlan": 80201, "shopPlan": 80201, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 432, @@ -4749,7 +4749,7 @@ "rewardPlan": 80202, "shopPlan": 80202, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 433, @@ -4760,7 +4760,7 @@ "rewardPlan": 80203, "shopPlan": 80203, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 434, @@ -4771,7 +4771,7 @@ "rewardPlan": 80204, "shopPlan": 80204, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 435, @@ -4782,7 +4782,7 @@ "rewardPlan": 80205, "shopPlan": 80205, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 436, @@ -4793,7 +4793,7 @@ "rewardPlan": 80206, "shopPlan": 80206, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 437, @@ -4804,7 +4804,7 @@ "rewardPlan": 80207, "shopPlan": 80207, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 438, @@ -4815,7 +4815,7 @@ "rewardPlan": 80208, "shopPlan": 80208, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 439, @@ -4826,7 +4826,7 @@ "rewardPlan": 80209, "shopPlan": 80209, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 440, @@ -4837,7 +4837,7 @@ "rewardPlan": 80210, "shopPlan": 80210, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 441, @@ -4848,7 +4848,7 @@ "rewardPlan": 80211, "shopPlan": 80211, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 442, @@ -4859,7 +4859,7 @@ "rewardPlan": 80212, "shopPlan": 80212, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 443, @@ -4870,7 +4870,7 @@ "rewardPlan": 80213, "shopPlan": 80213, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 444, @@ -4881,7 +4881,7 @@ "rewardPlan": 80214, "shopPlan": 80214, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 445, @@ -4892,7 +4892,7 @@ "rewardPlan": 80215, "shopPlan": 80215, "takeoutReward": "31002&500", - "spiritPlan": 802 + "spiritPlan": "802&6" }, { "id": 446, @@ -4903,7 +4903,7 @@ "rewardPlan": 80301, "shopPlan": 80301, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 447, @@ -4914,7 +4914,7 @@ "rewardPlan": 80302, "shopPlan": 80302, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 448, @@ -4925,7 +4925,7 @@ "rewardPlan": 80303, "shopPlan": 80303, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 449, @@ -4936,7 +4936,7 @@ "rewardPlan": 80304, "shopPlan": 80304, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 450, @@ -4947,7 +4947,7 @@ "rewardPlan": 80305, "shopPlan": 80305, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 451, @@ -4958,7 +4958,7 @@ "rewardPlan": 80306, "shopPlan": 80306, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 452, @@ -4969,7 +4969,7 @@ "rewardPlan": 80307, "shopPlan": 80307, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 453, @@ -4980,7 +4980,7 @@ "rewardPlan": 80308, "shopPlan": 80308, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 454, @@ -4991,7 +4991,7 @@ "rewardPlan": 80309, "shopPlan": 80309, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 455, @@ -5002,7 +5002,7 @@ "rewardPlan": 80310, "shopPlan": 80310, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 456, @@ -5013,7 +5013,7 @@ "rewardPlan": 80311, "shopPlan": 80311, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 457, @@ -5024,7 +5024,7 @@ "rewardPlan": 80312, "shopPlan": 80312, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 458, @@ -5035,7 +5035,7 @@ "rewardPlan": 80313, "shopPlan": 80313, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 459, @@ -5046,7 +5046,7 @@ "rewardPlan": 80314, "shopPlan": 80314, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 460, @@ -5057,7 +5057,7 @@ "rewardPlan": 80315, "shopPlan": 80315, "takeoutReward": "31002&500", - "spiritPlan": 803 + "spiritPlan": "803&6" }, { "id": 461, @@ -5068,7 +5068,7 @@ "rewardPlan": 80401, "shopPlan": 80401, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 462, @@ -5079,7 +5079,7 @@ "rewardPlan": 80402, "shopPlan": 80402, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 463, @@ -5090,7 +5090,7 @@ "rewardPlan": 80403, "shopPlan": 80403, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 464, @@ -5101,7 +5101,7 @@ "rewardPlan": 80404, "shopPlan": 80404, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 465, @@ -5112,7 +5112,7 @@ "rewardPlan": 80405, "shopPlan": 80405, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 466, @@ -5123,7 +5123,7 @@ "rewardPlan": 80406, "shopPlan": 80406, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 467, @@ -5134,7 +5134,7 @@ "rewardPlan": 80407, "shopPlan": 80407, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 468, @@ -5145,7 +5145,7 @@ "rewardPlan": 80408, "shopPlan": 80408, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 469, @@ -5156,7 +5156,7 @@ "rewardPlan": 80409, "shopPlan": 80409, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 470, @@ -5167,7 +5167,7 @@ "rewardPlan": 80410, "shopPlan": 80410, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 471, @@ -5178,7 +5178,7 @@ "rewardPlan": 80411, "shopPlan": 80411, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 472, @@ -5189,7 +5189,7 @@ "rewardPlan": 80412, "shopPlan": 80412, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 473, @@ -5200,7 +5200,7 @@ "rewardPlan": 80413, "shopPlan": 80413, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 474, @@ -5211,7 +5211,7 @@ "rewardPlan": 80414, "shopPlan": 80414, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 475, @@ -5222,7 +5222,7 @@ "rewardPlan": 80415, "shopPlan": 80415, "takeoutReward": "31002&500", - "spiritPlan": 804 + "spiritPlan": "804&6" }, { "id": 476, @@ -5233,7 +5233,7 @@ "rewardPlan": 80501, "shopPlan": 80501, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 477, @@ -5244,7 +5244,7 @@ "rewardPlan": 80502, "shopPlan": 80502, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 478, @@ -5255,7 +5255,7 @@ "rewardPlan": 80503, "shopPlan": 80503, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 479, @@ -5266,7 +5266,7 @@ "rewardPlan": 80504, "shopPlan": 80504, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 480, @@ -5277,7 +5277,7 @@ "rewardPlan": 80505, "shopPlan": 80505, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 481, @@ -5288,7 +5288,7 @@ "rewardPlan": 80506, "shopPlan": 80506, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 482, @@ -5299,7 +5299,7 @@ "rewardPlan": 80507, "shopPlan": 80507, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 483, @@ -5310,7 +5310,7 @@ "rewardPlan": 80508, "shopPlan": 80508, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 484, @@ -5321,7 +5321,7 @@ "rewardPlan": 80509, "shopPlan": 80509, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 485, @@ -5332,7 +5332,7 @@ "rewardPlan": 80510, "shopPlan": 80510, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 486, @@ -5343,7 +5343,7 @@ "rewardPlan": 80511, "shopPlan": 80511, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 487, @@ -5354,7 +5354,7 @@ "rewardPlan": 80512, "shopPlan": 80512, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 488, @@ -5365,7 +5365,7 @@ "rewardPlan": 80513, "shopPlan": 80513, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 489, @@ -5376,7 +5376,7 @@ "rewardPlan": 80514, "shopPlan": 80514, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 490, @@ -5387,7 +5387,7 @@ "rewardPlan": 80515, "shopPlan": 80515, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 491, @@ -5398,7 +5398,7 @@ "rewardPlan": 80516, "shopPlan": 80516, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 492, @@ -5409,7 +5409,7 @@ "rewardPlan": 80517, "shopPlan": 80517, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 493, @@ -5420,7 +5420,7 @@ "rewardPlan": 80518, "shopPlan": 80518, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 494, @@ -5431,7 +5431,7 @@ "rewardPlan": 80519, "shopPlan": 80519, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 495, @@ -5442,7 +5442,7 @@ "rewardPlan": 80520, "shopPlan": 80520, "takeoutReward": "31002&500", - "spiritPlan": 805 + "spiritPlan": "805&6" }, { "id": 496, @@ -5453,7 +5453,7 @@ "rewardPlan": 90101, "shopPlan": 90101, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 497, @@ -5464,7 +5464,7 @@ "rewardPlan": 90102, "shopPlan": 90102, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 498, @@ -5475,7 +5475,7 @@ "rewardPlan": 90103, "shopPlan": 90103, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 499, @@ -5486,7 +5486,7 @@ "rewardPlan": 90104, "shopPlan": 90104, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 500, @@ -5497,7 +5497,7 @@ "rewardPlan": 90105, "shopPlan": 90105, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 501, @@ -5508,7 +5508,7 @@ "rewardPlan": 90106, "shopPlan": 90106, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 502, @@ -5519,7 +5519,7 @@ "rewardPlan": 90107, "shopPlan": 90107, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 503, @@ -5530,7 +5530,7 @@ "rewardPlan": 90108, "shopPlan": 90108, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 504, @@ -5541,7 +5541,7 @@ "rewardPlan": 90109, "shopPlan": 90109, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 505, @@ -5552,7 +5552,7 @@ "rewardPlan": 90110, "shopPlan": 90110, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 506, @@ -5563,7 +5563,7 @@ "rewardPlan": 90111, "shopPlan": 90111, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 507, @@ -5574,7 +5574,7 @@ "rewardPlan": 90112, "shopPlan": 90112, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 508, @@ -5585,7 +5585,7 @@ "rewardPlan": 90113, "shopPlan": 90113, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 509, @@ -5596,7 +5596,7 @@ "rewardPlan": 90114, "shopPlan": 90114, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 510, @@ -5607,7 +5607,7 @@ "rewardPlan": 90115, "shopPlan": 90115, "takeoutReward": "31002&500", - "spiritPlan": 901 + "spiritPlan": "901&6" }, { "id": 511, @@ -5618,7 +5618,7 @@ "rewardPlan": 90201, "shopPlan": 90201, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 512, @@ -5629,7 +5629,7 @@ "rewardPlan": 90202, "shopPlan": 90202, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 513, @@ -5640,7 +5640,7 @@ "rewardPlan": 90203, "shopPlan": 90203, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 514, @@ -5651,7 +5651,7 @@ "rewardPlan": 90204, "shopPlan": 90204, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 515, @@ -5662,7 +5662,7 @@ "rewardPlan": 90205, "shopPlan": 90205, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 516, @@ -5673,7 +5673,7 @@ "rewardPlan": 90206, "shopPlan": 90206, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 517, @@ -5684,7 +5684,7 @@ "rewardPlan": 90207, "shopPlan": 90207, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 518, @@ -5695,7 +5695,7 @@ "rewardPlan": 90208, "shopPlan": 90208, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 519, @@ -5706,7 +5706,7 @@ "rewardPlan": 90209, "shopPlan": 90209, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 520, @@ -5717,7 +5717,7 @@ "rewardPlan": 90210, "shopPlan": 90210, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 521, @@ -5728,7 +5728,7 @@ "rewardPlan": 90211, "shopPlan": 90211, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 522, @@ -5739,7 +5739,7 @@ "rewardPlan": 90212, "shopPlan": 90212, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 523, @@ -5750,7 +5750,7 @@ "rewardPlan": 90213, "shopPlan": 90213, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 524, @@ -5761,7 +5761,7 @@ "rewardPlan": 90214, "shopPlan": 90214, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 525, @@ -5772,7 +5772,7 @@ "rewardPlan": 90215, "shopPlan": 90215, "takeoutReward": "31002&500", - "spiritPlan": 902 + "spiritPlan": "902&6" }, { "id": 526, @@ -5783,7 +5783,7 @@ "rewardPlan": 90301, "shopPlan": 90301, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 527, @@ -5794,7 +5794,7 @@ "rewardPlan": 90302, "shopPlan": 90302, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 528, @@ -5805,7 +5805,7 @@ "rewardPlan": 90303, "shopPlan": 90303, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 529, @@ -5816,7 +5816,7 @@ "rewardPlan": 90304, "shopPlan": 90304, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 530, @@ -5827,7 +5827,7 @@ "rewardPlan": 90305, "shopPlan": 90305, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 531, @@ -5838,7 +5838,7 @@ "rewardPlan": 90306, "shopPlan": 90306, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 532, @@ -5849,7 +5849,7 @@ "rewardPlan": 90307, "shopPlan": 90307, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 533, @@ -5860,7 +5860,7 @@ "rewardPlan": 90308, "shopPlan": 90308, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 534, @@ -5871,7 +5871,7 @@ "rewardPlan": 90309, "shopPlan": 90309, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 535, @@ -5882,7 +5882,7 @@ "rewardPlan": 90310, "shopPlan": 90310, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 536, @@ -5893,7 +5893,7 @@ "rewardPlan": 90311, "shopPlan": 90311, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 537, @@ -5904,7 +5904,7 @@ "rewardPlan": 90312, "shopPlan": 90312, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 538, @@ -5915,7 +5915,7 @@ "rewardPlan": 90313, "shopPlan": 90313, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 539, @@ -5926,7 +5926,7 @@ "rewardPlan": 90314, "shopPlan": 90314, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 540, @@ -5937,7 +5937,7 @@ "rewardPlan": 90315, "shopPlan": 90315, "takeoutReward": "31002&500", - "spiritPlan": 903 + "spiritPlan": "903&6" }, { "id": 541, @@ -5948,7 +5948,7 @@ "rewardPlan": 90401, "shopPlan": 90401, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 542, @@ -5959,7 +5959,7 @@ "rewardPlan": 90402, "shopPlan": 90402, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 543, @@ -5970,7 +5970,7 @@ "rewardPlan": 90403, "shopPlan": 90403, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 544, @@ -5981,7 +5981,7 @@ "rewardPlan": 90404, "shopPlan": 90404, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 545, @@ -5992,7 +5992,7 @@ "rewardPlan": 90405, "shopPlan": 90405, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 546, @@ -6003,7 +6003,7 @@ "rewardPlan": 90406, "shopPlan": 90406, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 547, @@ -6014,7 +6014,7 @@ "rewardPlan": 90407, "shopPlan": 90407, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 548, @@ -6025,7 +6025,7 @@ "rewardPlan": 90408, "shopPlan": 90408, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 549, @@ -6036,7 +6036,7 @@ "rewardPlan": 90409, "shopPlan": 90409, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 550, @@ -6047,7 +6047,7 @@ "rewardPlan": 90410, "shopPlan": 90410, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 551, @@ -6058,7 +6058,7 @@ "rewardPlan": 90411, "shopPlan": 90411, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 552, @@ -6069,7 +6069,7 @@ "rewardPlan": 90412, "shopPlan": 90412, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 553, @@ -6080,7 +6080,7 @@ "rewardPlan": 90413, "shopPlan": 90413, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 554, @@ -6091,7 +6091,7 @@ "rewardPlan": 90414, "shopPlan": 90414, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 555, @@ -6102,7 +6102,7 @@ "rewardPlan": 90415, "shopPlan": 90415, "takeoutReward": "31002&500", - "spiritPlan": 904 + "spiritPlan": "904&6" }, { "id": 556, @@ -6113,7 +6113,7 @@ "rewardPlan": 90501, "shopPlan": 90501, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 557, @@ -6124,7 +6124,7 @@ "rewardPlan": 90502, "shopPlan": 90502, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 558, @@ -6135,7 +6135,7 @@ "rewardPlan": 90503, "shopPlan": 90503, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 559, @@ -6146,7 +6146,7 @@ "rewardPlan": 90504, "shopPlan": 90504, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 560, @@ -6157,7 +6157,7 @@ "rewardPlan": 90505, "shopPlan": 90505, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 561, @@ -6168,7 +6168,7 @@ "rewardPlan": 90506, "shopPlan": 90506, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 562, @@ -6179,7 +6179,7 @@ "rewardPlan": 90507, "shopPlan": 90507, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 563, @@ -6190,7 +6190,7 @@ "rewardPlan": 90508, "shopPlan": 90508, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 564, @@ -6201,7 +6201,7 @@ "rewardPlan": 90509, "shopPlan": 90509, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 565, @@ -6212,7 +6212,7 @@ "rewardPlan": 90510, "shopPlan": 90510, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 566, @@ -6223,7 +6223,7 @@ "rewardPlan": 90511, "shopPlan": 90511, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 567, @@ -6234,7 +6234,7 @@ "rewardPlan": 90512, "shopPlan": 90512, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 568, @@ -6245,7 +6245,7 @@ "rewardPlan": 90513, "shopPlan": 90513, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 569, @@ -6256,7 +6256,7 @@ "rewardPlan": 90514, "shopPlan": 90514, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 570, @@ -6267,7 +6267,7 @@ "rewardPlan": 90515, "shopPlan": 90515, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 571, @@ -6278,7 +6278,7 @@ "rewardPlan": 90516, "shopPlan": 90516, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 572, @@ -6289,7 +6289,7 @@ "rewardPlan": 90517, "shopPlan": 90517, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 573, @@ -6300,7 +6300,7 @@ "rewardPlan": 90518, "shopPlan": 90518, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 574, @@ -6311,7 +6311,7 @@ "rewardPlan": 90519, "shopPlan": 90519, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 575, @@ -6322,7 +6322,7 @@ "rewardPlan": 90520, "shopPlan": 90520, "takeoutReward": "31002&500", - "spiritPlan": 905 + "spiritPlan": "905&6" }, { "id": 576, @@ -6333,7 +6333,7 @@ "rewardPlan": 100101, "shopPlan": 100101, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 577, @@ -6344,7 +6344,7 @@ "rewardPlan": 100102, "shopPlan": 100102, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 578, @@ -6355,7 +6355,7 @@ "rewardPlan": 100103, "shopPlan": 100103, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 579, @@ -6366,7 +6366,7 @@ "rewardPlan": 100104, "shopPlan": 100104, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 580, @@ -6377,7 +6377,7 @@ "rewardPlan": 100105, "shopPlan": 100105, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 581, @@ -6388,7 +6388,7 @@ "rewardPlan": 100106, "shopPlan": 100106, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 582, @@ -6399,7 +6399,7 @@ "rewardPlan": 100107, "shopPlan": 100107, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 583, @@ -6410,7 +6410,7 @@ "rewardPlan": 100108, "shopPlan": 100108, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 584, @@ -6421,7 +6421,7 @@ "rewardPlan": 100109, "shopPlan": 100109, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 585, @@ -6432,7 +6432,7 @@ "rewardPlan": 100110, "shopPlan": 100110, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 586, @@ -6443,7 +6443,7 @@ "rewardPlan": 100111, "shopPlan": 100111, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 587, @@ -6454,7 +6454,7 @@ "rewardPlan": 100112, "shopPlan": 100112, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 588, @@ -6465,7 +6465,7 @@ "rewardPlan": 100113, "shopPlan": 100113, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 589, @@ -6476,7 +6476,7 @@ "rewardPlan": 100114, "shopPlan": 100114, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 590, @@ -6487,7 +6487,7 @@ "rewardPlan": 100115, "shopPlan": 100115, "takeoutReward": "31002&500", - "spiritPlan": 1001 + "spiritPlan": "1001&6" }, { "id": 591, @@ -6498,7 +6498,7 @@ "rewardPlan": 100201, "shopPlan": 100201, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 592, @@ -6509,7 +6509,7 @@ "rewardPlan": 100202, "shopPlan": 100202, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 593, @@ -6520,7 +6520,7 @@ "rewardPlan": 100203, "shopPlan": 100203, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 594, @@ -6531,7 +6531,7 @@ "rewardPlan": 100204, "shopPlan": 100204, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 595, @@ -6542,7 +6542,7 @@ "rewardPlan": 100205, "shopPlan": 100205, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 596, @@ -6553,7 +6553,7 @@ "rewardPlan": 100206, "shopPlan": 100206, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 597, @@ -6564,7 +6564,7 @@ "rewardPlan": 100207, "shopPlan": 100207, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 598, @@ -6575,7 +6575,7 @@ "rewardPlan": 100208, "shopPlan": 100208, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 599, @@ -6586,7 +6586,7 @@ "rewardPlan": 100209, "shopPlan": 100209, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 600, @@ -6597,7 +6597,7 @@ "rewardPlan": 100210, "shopPlan": 100210, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 601, @@ -6608,7 +6608,7 @@ "rewardPlan": 100211, "shopPlan": 100211, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 602, @@ -6619,7 +6619,7 @@ "rewardPlan": 100212, "shopPlan": 100212, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 603, @@ -6630,7 +6630,7 @@ "rewardPlan": 100213, "shopPlan": 100213, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 604, @@ -6641,7 +6641,7 @@ "rewardPlan": 100214, "shopPlan": 100214, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 605, @@ -6652,7 +6652,7 @@ "rewardPlan": 100215, "shopPlan": 100215, "takeoutReward": "31002&500", - "spiritPlan": 1002 + "spiritPlan": "1002&6" }, { "id": 606, @@ -6663,7 +6663,7 @@ "rewardPlan": 100301, "shopPlan": 100301, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 607, @@ -6674,7 +6674,7 @@ "rewardPlan": 100302, "shopPlan": 100302, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 608, @@ -6685,7 +6685,7 @@ "rewardPlan": 100303, "shopPlan": 100303, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 609, @@ -6696,7 +6696,7 @@ "rewardPlan": 100304, "shopPlan": 100304, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 610, @@ -6707,7 +6707,7 @@ "rewardPlan": 100305, "shopPlan": 100305, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 611, @@ -6718,7 +6718,7 @@ "rewardPlan": 100306, "shopPlan": 100306, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 612, @@ -6729,7 +6729,7 @@ "rewardPlan": 100307, "shopPlan": 100307, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 613, @@ -6740,7 +6740,7 @@ "rewardPlan": 100308, "shopPlan": 100308, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 614, @@ -6751,7 +6751,7 @@ "rewardPlan": 100309, "shopPlan": 100309, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 615, @@ -6762,7 +6762,7 @@ "rewardPlan": 100310, "shopPlan": 100310, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 616, @@ -6773,7 +6773,7 @@ "rewardPlan": 100311, "shopPlan": 100311, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 617, @@ -6784,7 +6784,7 @@ "rewardPlan": 100312, "shopPlan": 100312, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 618, @@ -6795,7 +6795,7 @@ "rewardPlan": 100313, "shopPlan": 100313, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 619, @@ -6806,7 +6806,7 @@ "rewardPlan": 100314, "shopPlan": 100314, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 620, @@ -6817,7 +6817,7 @@ "rewardPlan": 100315, "shopPlan": 100315, "takeoutReward": "31002&500", - "spiritPlan": 1003 + "spiritPlan": "1003&6" }, { "id": 621, @@ -6828,7 +6828,7 @@ "rewardPlan": 100401, "shopPlan": 100401, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 622, @@ -6839,7 +6839,7 @@ "rewardPlan": 100402, "shopPlan": 100402, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 623, @@ -6850,7 +6850,7 @@ "rewardPlan": 100403, "shopPlan": 100403, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 624, @@ -6861,7 +6861,7 @@ "rewardPlan": 100404, "shopPlan": 100404, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 625, @@ -6872,7 +6872,7 @@ "rewardPlan": 100405, "shopPlan": 100405, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 626, @@ -6883,7 +6883,7 @@ "rewardPlan": 100406, "shopPlan": 100406, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 627, @@ -6894,7 +6894,7 @@ "rewardPlan": 100407, "shopPlan": 100407, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 628, @@ -6905,7 +6905,7 @@ "rewardPlan": 100408, "shopPlan": 100408, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 629, @@ -6916,7 +6916,7 @@ "rewardPlan": 100409, "shopPlan": 100409, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 630, @@ -6927,7 +6927,7 @@ "rewardPlan": 100410, "shopPlan": 100410, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 631, @@ -6938,7 +6938,7 @@ "rewardPlan": 100411, "shopPlan": 100411, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 632, @@ -6949,7 +6949,7 @@ "rewardPlan": 100412, "shopPlan": 100412, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 633, @@ -6960,7 +6960,7 @@ "rewardPlan": 100413, "shopPlan": 100413, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 634, @@ -6971,7 +6971,7 @@ "rewardPlan": 100414, "shopPlan": 100414, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 635, @@ -6982,7 +6982,7 @@ "rewardPlan": 100415, "shopPlan": 100415, "takeoutReward": "31002&500", - "spiritPlan": 1004 + "spiritPlan": "1004&6" }, { "id": 636, @@ -6993,7 +6993,7 @@ "rewardPlan": 100501, "shopPlan": 100501, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 637, @@ -7004,7 +7004,7 @@ "rewardPlan": 100502, "shopPlan": 100502, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 638, @@ -7015,7 +7015,7 @@ "rewardPlan": 100503, "shopPlan": 100503, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 639, @@ -7026,7 +7026,7 @@ "rewardPlan": 100504, "shopPlan": 100504, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 640, @@ -7037,7 +7037,7 @@ "rewardPlan": 100505, "shopPlan": 100505, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 641, @@ -7048,7 +7048,7 @@ "rewardPlan": 100506, "shopPlan": 100506, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 642, @@ -7059,7 +7059,7 @@ "rewardPlan": 100507, "shopPlan": 100507, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 643, @@ -7070,7 +7070,7 @@ "rewardPlan": 100508, "shopPlan": 100508, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 644, @@ -7081,7 +7081,7 @@ "rewardPlan": 100509, "shopPlan": 100509, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 645, @@ -7092,7 +7092,7 @@ "rewardPlan": 100510, "shopPlan": 100510, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 646, @@ -7103,7 +7103,7 @@ "rewardPlan": 100511, "shopPlan": 100511, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 647, @@ -7114,7 +7114,7 @@ "rewardPlan": 100512, "shopPlan": 100512, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 648, @@ -7125,7 +7125,7 @@ "rewardPlan": 100513, "shopPlan": 100513, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 649, @@ -7136,7 +7136,7 @@ "rewardPlan": 100514, "shopPlan": 100514, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 650, @@ -7147,7 +7147,7 @@ "rewardPlan": 100515, "shopPlan": 100515, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 651, @@ -7158,7 +7158,7 @@ "rewardPlan": 100516, "shopPlan": 100516, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 652, @@ -7169,7 +7169,7 @@ "rewardPlan": 100517, "shopPlan": 100517, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 653, @@ -7180,7 +7180,7 @@ "rewardPlan": 100518, "shopPlan": 100518, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 654, @@ -7191,7 +7191,7 @@ "rewardPlan": 100519, "shopPlan": 100519, "takeoutReward": "&", - "spiritPlan": 0 + "spiritPlan": "&" }, { "id": 655, @@ -7202,6 +7202,6 @@ "rewardPlan": 100520, "shopPlan": 100520, "takeoutReward": "31002&500", - "spiritPlan": 1005 + "spiritPlan": "1005&6" } ] \ No newline at end of file diff --git a/shared/resource/jsons/dic_rougePassive_cardPlan.json b/shared/resource/jsons/dic_rougePassive_cardPlan.json index 55f84d8b1..e3db18a86 100644 --- a/shared/resource/jsons/dic_rougePassive_cardPlan.json +++ b/shared/resource/jsons/dic_rougePassive_cardPlan.json @@ -1731,769 +1731,769 @@ "id": 289, "planId": 32, "cardId": 11111, - "weight": 200 + "weight": 250 }, { "id": 290, "planId": 32, "cardId": 11121, - "weight": 200 + "weight": 250 }, { "id": 291, "planId": 32, "cardId": 11131, - "weight": 200 + "weight": 250 }, { "id": 292, "planId": 32, "cardId": 11141, - "weight": 200 + "weight": 250 }, { "id": 293, "planId": 32, "cardId": 11151, - "weight": 200 + "weight": 250 }, { "id": 294, "planId": 32, "cardId": 11161, - "weight": 200 + "weight": 250 }, { "id": 295, "planId": 32, "cardId": 11171, - "weight": 200 + "weight": 250 }, { "id": 296, "planId": 32, "cardId": 11181, - "weight": 200 + "weight": 250 }, { "id": 297, "planId": 32, "cardId": 11112, - "weight": 200 + "weight": 250 }, { "id": 298, "planId": 32, "cardId": 11122, - "weight": 200 + "weight": 250 }, { "id": 299, "planId": 32, "cardId": 11132, - "weight": 200 + "weight": 250 }, { "id": 300, "planId": 32, "cardId": 11142, - "weight": 200 + "weight": 250 }, { "id": 301, "planId": 32, "cardId": 11152, - "weight": 200 + "weight": 250 }, { "id": 302, "planId": 32, "cardId": 11162, - "weight": 200 + "weight": 250 }, { "id": 303, "planId": 32, "cardId": 11172, - "weight": 200 + "weight": 250 }, { "id": 304, "planId": 32, "cardId": 11182, - "weight": 200 + "weight": 250 }, { "id": 305, "planId": 32, "cardId": 14111, - "weight": 200 + "weight": 250 }, { "id": 306, "planId": 32, "cardId": 14121, - "weight": 200 + "weight": 250 }, { "id": 307, "planId": 32, "cardId": 14131, - "weight": 200 + "weight": 250 }, { "id": 308, "planId": 32, "cardId": 14141, - "weight": 200 + "weight": 250 }, { "id": 309, "planId": 32, "cardId": 14151, - "weight": 200 + "weight": 250 }, { "id": 310, "planId": 32, "cardId": 14161, - "weight": 200 + "weight": 250 }, { "id": 311, "planId": 32, "cardId": 14171, - "weight": 200 + "weight": 250 }, { "id": 312, "planId": 32, "cardId": 14181, - "weight": 200 + "weight": 250 }, { "id": 313, "planId": 32, "cardId": 14112, - "weight": 200 + "weight": 250 }, { "id": 314, "planId": 32, "cardId": 14122, - "weight": 200 + "weight": 250 }, { "id": 315, "planId": 32, "cardId": 14132, - "weight": 200 + "weight": 250 }, { "id": 316, "planId": 32, "cardId": 14142, - "weight": 200 + "weight": 250 }, { "id": 317, "planId": 32, "cardId": 14152, - "weight": 200 + "weight": 250 }, { "id": 318, "planId": 32, "cardId": 14162, - "weight": 200 + "weight": 250 }, { "id": 319, "planId": 32, "cardId": 14172, - "weight": 200 + "weight": 250 }, { "id": 320, "planId": 32, "cardId": 14182, - "weight": 200 + "weight": 250 }, { "id": 321, "planId": 32, "cardId": 17111, - "weight": 200 + "weight": 250 }, { "id": 322, "planId": 32, "cardId": 17121, - "weight": 200 + "weight": 250 }, { "id": 323, "planId": 32, "cardId": 17131, - "weight": 200 + "weight": 250 }, { "id": 324, "planId": 32, "cardId": 17141, - "weight": 200 + "weight": 250 }, { "id": 325, "planId": 32, "cardId": 17151, - "weight": 200 + "weight": 250 }, { "id": 326, "planId": 32, "cardId": 17161, - "weight": 200 + "weight": 250 }, { "id": 327, "planId": 32, "cardId": 17171, - "weight": 200 + "weight": 250 }, { "id": 328, "planId": 32, "cardId": 17181, - "weight": 200 + "weight": 250 }, { "id": 329, "planId": 32, "cardId": 17112, - "weight": 200 + "weight": 250 }, { "id": 330, "planId": 32, "cardId": 17122, - "weight": 200 + "weight": 250 }, { "id": 331, "planId": 32, "cardId": 17132, - "weight": 200 + "weight": 250 }, { "id": 332, "planId": 32, "cardId": 17172, - "weight": 200 + "weight": 250 }, { "id": 333, "planId": 32, "cardId": 17152, - "weight": 200 + "weight": 250 }, { "id": 334, "planId": 32, "cardId": 17162, - "weight": 200 + "weight": 250 }, { "id": 335, "planId": 32, "cardId": 17172, - "weight": 200 + "weight": 250 }, { "id": 336, "planId": 32, "cardId": 17182, - "weight": 200 + "weight": 250 }, { "id": 337, "planId": 32, "cardId": 15111, - "weight": 200 + "weight": 250 }, { "id": 338, "planId": 32, "cardId": 15121, - "weight": 200 + "weight": 250 }, { "id": 339, "planId": 32, "cardId": 15131, - "weight": 200 + "weight": 250 }, { "id": 340, "planId": 32, "cardId": 15141, - "weight": 200 + "weight": 250 }, { "id": 341, "planId": 32, "cardId": 15151, - "weight": 200 + "weight": 250 }, { "id": 342, "planId": 32, "cardId": 15161, - "weight": 200 + "weight": 250 }, { "id": 343, "planId": 32, "cardId": 15171, - "weight": 200 + "weight": 250 }, { "id": 344, "planId": 32, "cardId": 15181, - "weight": 200 + "weight": 250 }, { "id": 345, "planId": 32, "cardId": 15112, - "weight": 200 + "weight": 250 }, { "id": 346, "planId": 32, "cardId": 15122, - "weight": 200 + "weight": 250 }, { "id": 347, "planId": 32, "cardId": 15132, - "weight": 200 + "weight": 250 }, { "id": 348, "planId": 32, "cardId": 15142, - "weight": 200 + "weight": 250 }, { "id": 349, "planId": 32, "cardId": 15152, - "weight": 200 + "weight": 250 }, { "id": 350, "planId": 32, "cardId": 15162, - "weight": 200 + "weight": 250 }, { "id": 351, "planId": 32, "cardId": 15172, - "weight": 200 + "weight": 250 }, { "id": 352, "planId": 32, "cardId": 15182, - "weight": 200 + "weight": 250 }, { "id": 353, "planId": 32, "cardId": 18111, - "weight": 200 + "weight": 250 }, { "id": 354, "planId": 32, "cardId": 18121, - "weight": 200 + "weight": 250 }, { "id": 355, "planId": 32, "cardId": 18131, - "weight": 200 + "weight": 250 }, { "id": 356, "planId": 32, "cardId": 18141, - "weight": 200 + "weight": 250 }, { "id": 357, "planId": 32, "cardId": 18151, - "weight": 200 + "weight": 250 }, { "id": 358, "planId": 32, "cardId": 18161, - "weight": 200 + "weight": 250 }, { "id": 359, "planId": 32, "cardId": 18171, - "weight": 200 + "weight": 250 }, { "id": 360, "planId": 32, "cardId": 18181, - "weight": 200 + "weight": 250 }, { "id": 361, "planId": 32, "cardId": 18112, - "weight": 200 + "weight": 250 }, { "id": 362, "planId": 32, "cardId": 18122, - "weight": 200 + "weight": 250 }, { "id": 363, "planId": 32, "cardId": 18132, - "weight": 200 + "weight": 250 }, { "id": 364, "planId": 32, "cardId": 18142, - "weight": 200 + "weight": 250 }, { "id": 365, "planId": 32, "cardId": 18152, - "weight": 200 + "weight": 250 }, { "id": 366, "planId": 32, "cardId": 18162, - "weight": 200 + "weight": 250 }, { "id": 367, "planId": 32, "cardId": 18172, - "weight": 200 + "weight": 250 }, { "id": 368, "planId": 32, "cardId": 18182, - "weight": 200 + "weight": 250 }, { "id": 369, "planId": 32, "cardId": 13111, - "weight": 200 + "weight": 250 }, { "id": 370, "planId": 32, "cardId": 13121, - "weight": 200 + "weight": 250 }, { "id": 371, "planId": 32, "cardId": 13131, - "weight": 200 + "weight": 250 }, { "id": 372, "planId": 32, "cardId": 13141, - "weight": 200 + "weight": 250 }, { "id": 373, "planId": 32, "cardId": 13151, - "weight": 200 + "weight": 250 }, { "id": 374, "planId": 32, "cardId": 13161, - "weight": 200 + "weight": 250 }, { "id": 375, "planId": 32, "cardId": 13171, - "weight": 200 + "weight": 250 }, { "id": 376, "planId": 32, "cardId": 13181, - "weight": 200 + "weight": 250 }, { "id": 377, "planId": 32, "cardId": 13112, - "weight": 200 + "weight": 250 }, { "id": 378, "planId": 32, "cardId": 13122, - "weight": 200 + "weight": 250 }, { "id": 379, "planId": 32, "cardId": 13132, - "weight": 200 + "weight": 250 }, { "id": 380, "planId": 32, "cardId": 13142, - "weight": 200 + "weight": 250 }, { "id": 381, "planId": 32, "cardId": 13152, - "weight": 200 + "weight": 250 }, { "id": 382, "planId": 32, "cardId": 13162, - "weight": 200 + "weight": 250 }, { "id": 383, "planId": 32, "cardId": 13172, - "weight": 200 + "weight": 250 }, { "id": 384, "planId": 32, "cardId": 13182, - "weight": 200 + "weight": 250 }, { "id": 385, "planId": 32, "cardId": 12111, - "weight": 200 + "weight": 250 }, { "id": 386, "planId": 32, "cardId": 12121, - "weight": 200 + "weight": 250 }, { "id": 387, "planId": 32, "cardId": 12131, - "weight": 200 + "weight": 250 }, { "id": 388, "planId": 32, "cardId": 12141, - "weight": 200 + "weight": 250 }, { "id": 389, "planId": 32, "cardId": 12151, - "weight": 200 + "weight": 250 }, { "id": 390, "planId": 32, "cardId": 12161, - "weight": 200 + "weight": 250 }, { "id": 391, "planId": 32, "cardId": 12171, - "weight": 200 + "weight": 250 }, { "id": 392, "planId": 32, "cardId": 12181, - "weight": 200 + "weight": 250 }, { "id": 393, "planId": 32, "cardId": 12112, - "weight": 200 + "weight": 250 }, { "id": 394, "planId": 32, "cardId": 12122, - "weight": 200 + "weight": 250 }, { "id": 395, "planId": 32, "cardId": 12132, - "weight": 200 + "weight": 250 }, { "id": 396, "planId": 32, "cardId": 12142, - "weight": 200 + "weight": 250 }, { "id": 397, "planId": 32, "cardId": 12152, - "weight": 200 + "weight": 250 }, { "id": 398, "planId": 32, "cardId": 12162, - "weight": 200 + "weight": 250 }, { "id": 399, "planId": 32, "cardId": 12172, - "weight": 200 + "weight": 250 }, { "id": 400, "planId": 32, "cardId": 12182, - "weight": 200 + "weight": 250 }, { "id": 401, "planId": 32, "cardId": 16111, - "weight": 200 + "weight": 250 }, { "id": 402, "planId": 32, "cardId": 16121, - "weight": 200 + "weight": 250 }, { "id": 403, "planId": 32, "cardId": 16131, - "weight": 200 + "weight": 250 }, { "id": 404, "planId": 32, "cardId": 16141, - "weight": 200 + "weight": 250 }, { "id": 405, "planId": 32, "cardId": 16151, - "weight": 200 + "weight": 250 }, { "id": 406, "planId": 32, "cardId": 16161, - "weight": 200 + "weight": 250 }, { "id": 407, "planId": 32, "cardId": 16171, - "weight": 200 + "weight": 250 }, { "id": 408, "planId": 32, "cardId": 16181, - "weight": 200 + "weight": 250 }, { "id": 409, "planId": 32, "cardId": 16112, - "weight": 200 + "weight": 250 }, { "id": 410, "planId": 32, "cardId": 16122, - "weight": 200 + "weight": 250 }, { "id": 411, "planId": 32, "cardId": 16132, - "weight": 200 + "weight": 250 }, { "id": 412, "planId": 32, "cardId": 16142, - "weight": 200 + "weight": 250 }, { "id": 413, "planId": 32, "cardId": 16152, - "weight": 200 + "weight": 250 }, { "id": 414, "planId": 32, "cardId": 16162, - "weight": 200 + "weight": 250 }, { "id": 415, "planId": 32, "cardId": 16172, - "weight": 200 + "weight": 250 }, { "id": 416, "planId": 32, "cardId": 16182, - "weight": 200 + "weight": 250 }, { "id": 417, @@ -3075,2113 +3075,2113 @@ "id": 513, "planId": 32, "cardId": 11311, - "weight": 150 + "weight": 50 }, { "id": 514, "planId": 32, "cardId": 11321, - "weight": 150 + "weight": 50 }, { "id": 515, "planId": 32, "cardId": 11331, - "weight": 150 + "weight": 50 }, { "id": 516, "planId": 32, "cardId": 11341, - "weight": 150 + "weight": 50 }, { "id": 517, "planId": 32, "cardId": 11312, - "weight": 150 + "weight": 50 }, { "id": 518, "planId": 32, "cardId": 11322, - "weight": 150 + "weight": 50 }, { "id": 519, "planId": 32, "cardId": 11332, - "weight": 150 + "weight": 50 }, { "id": 520, "planId": 32, "cardId": 11342, - "weight": 150 + "weight": 50 }, { "id": 521, "planId": 32, "cardId": 14311, - "weight": 150 + "weight": 50 }, { "id": 522, "planId": 32, "cardId": 14321, - "weight": 150 + "weight": 50 }, { "id": 523, "planId": 32, "cardId": 14331, - "weight": 150 + "weight": 50 }, { "id": 524, "planId": 32, "cardId": 14341, - "weight": 150 + "weight": 50 }, { "id": 525, "planId": 32, "cardId": 14312, - "weight": 150 + "weight": 50 }, { "id": 526, "planId": 32, "cardId": 14322, - "weight": 150 + "weight": 50 }, { "id": 527, "planId": 32, "cardId": 14332, - "weight": 150 + "weight": 50 }, { "id": 528, "planId": 32, "cardId": 14342, - "weight": 150 + "weight": 50 }, { "id": 529, "planId": 32, "cardId": 17311, - "weight": 150 + "weight": 50 }, { "id": 530, "planId": 32, "cardId": 17321, - "weight": 150 + "weight": 50 }, { "id": 531, "planId": 32, "cardId": 17331, - "weight": 150 + "weight": 50 }, { "id": 532, "planId": 32, "cardId": 17341, - "weight": 150 + "weight": 50 }, { "id": 533, "planId": 32, "cardId": 17312, - "weight": 150 + "weight": 50 }, { "id": 534, "planId": 32, "cardId": 17322, - "weight": 150 + "weight": 50 }, { "id": 535, "planId": 32, "cardId": 17332, - "weight": 150 + "weight": 50 }, { "id": 536, "planId": 32, "cardId": 17342, - "weight": 150 + "weight": 50 }, { "id": 537, "planId": 32, "cardId": 15311, - "weight": 150 + "weight": 50 }, { "id": 538, "planId": 32, "cardId": 15321, - "weight": 150 + "weight": 50 }, { "id": 539, "planId": 32, "cardId": 15331, - "weight": 150 + "weight": 50 }, { "id": 540, "planId": 32, "cardId": 15341, - "weight": 150 + "weight": 50 }, { "id": 541, "planId": 32, "cardId": 15312, - "weight": 150 + "weight": 50 }, { "id": 542, "planId": 32, "cardId": 15322, - "weight": 150 + "weight": 50 }, { "id": 543, "planId": 32, "cardId": 15332, - "weight": 150 + "weight": 50 }, { "id": 544, "planId": 32, "cardId": 15342, - "weight": 150 + "weight": 50 }, { "id": 545, "planId": 32, "cardId": 18311, - "weight": 150 + "weight": 50 }, { "id": 546, "planId": 32, "cardId": 18321, - "weight": 150 + "weight": 50 }, { "id": 547, "planId": 32, "cardId": 18331, - "weight": 150 + "weight": 50 }, { "id": 548, "planId": 32, "cardId": 18341, - "weight": 150 + "weight": 50 }, { "id": 549, "planId": 32, "cardId": 18312, - "weight": 150 + "weight": 50 }, { "id": 550, "planId": 32, "cardId": 18322, - "weight": 150 + "weight": 50 }, { "id": 551, "planId": 32, "cardId": 18332, - "weight": 150 + "weight": 50 }, { "id": 552, "planId": 32, "cardId": 18342, - "weight": 150 + "weight": 50 }, { "id": 553, "planId": 32, "cardId": 13311, - "weight": 150 + "weight": 50 }, { "id": 554, "planId": 32, "cardId": 13321, - "weight": 150 + "weight": 50 }, { "id": 555, "planId": 32, "cardId": 13331, - "weight": 150 + "weight": 50 }, { "id": 556, "planId": 32, "cardId": 13341, - "weight": 150 + "weight": 50 }, { "id": 557, "planId": 32, "cardId": 13312, - "weight": 150 + "weight": 50 }, { "id": 558, "planId": 32, "cardId": 13322, - "weight": 150 + "weight": 50 }, { "id": 559, "planId": 32, "cardId": 13332, - "weight": 150 + "weight": 50 }, { "id": 560, "planId": 32, "cardId": 13342, - "weight": 150 + "weight": 50 }, { "id": 561, "planId": 32, "cardId": 12311, - "weight": 150 + "weight": 50 }, { "id": 562, "planId": 32, "cardId": 12321, - "weight": 150 + "weight": 50 }, { "id": 563, "planId": 32, "cardId": 12331, - "weight": 150 + "weight": 50 }, { "id": 564, "planId": 32, "cardId": 12341, - "weight": 150 + "weight": 50 }, { "id": 565, "planId": 32, "cardId": 12312, - "weight": 150 + "weight": 50 }, { "id": 566, "planId": 32, "cardId": 12322, - "weight": 150 + "weight": 50 }, { "id": 567, "planId": 32, "cardId": 12332, - "weight": 150 + "weight": 50 }, { "id": 568, "planId": 32, "cardId": 12342, - "weight": 150 + "weight": 50 }, { "id": 569, "planId": 32, "cardId": 16311, - "weight": 150 + "weight": 50 }, { "id": 570, "planId": 32, "cardId": 16321, - "weight": 150 + "weight": 50 }, { "id": 571, "planId": 32, "cardId": 16331, - "weight": 150 + "weight": 50 }, { "id": 572, "planId": 32, "cardId": 16341, - "weight": 150 + "weight": 50 }, { "id": 573, "planId": 32, "cardId": 16312, - "weight": 150 + "weight": 50 }, { "id": 574, "planId": 32, "cardId": 16322, - "weight": 150 + "weight": 50 }, { "id": 575, "planId": 32, "cardId": 16332, - "weight": 150 + "weight": 50 }, { "id": 576, "planId": 32, "cardId": 16342, - "weight": 150 + "weight": 50 }, { "id": 577, "planId": 33, "cardId": 11111, - "weight": 90 + "weight": 250 }, { "id": 578, "planId": 33, "cardId": 11121, - "weight": 90 + "weight": 250 }, { "id": 579, "planId": 33, "cardId": 11131, - "weight": 90 + "weight": 250 }, { "id": 580, "planId": 33, "cardId": 11141, - "weight": 90 + "weight": 250 }, { "id": 581, "planId": 33, "cardId": 11151, - "weight": 90 + "weight": 250 }, { "id": 582, "planId": 33, "cardId": 11161, - "weight": 90 + "weight": 250 }, { "id": 583, "planId": 33, "cardId": 11171, - "weight": 90 + "weight": 250 }, { "id": 584, "planId": 33, "cardId": 11181, - "weight": 90 + "weight": 250 }, { "id": 585, "planId": 33, "cardId": 11112, - "weight": 90 + "weight": 250 }, { "id": 586, "planId": 33, "cardId": 11122, - "weight": 90 + "weight": 250 }, { "id": 587, "planId": 33, "cardId": 11132, - "weight": 90 + "weight": 250 }, { "id": 588, "planId": 33, "cardId": 11142, - "weight": 90 + "weight": 250 }, { "id": 589, "planId": 33, "cardId": 11152, - "weight": 90 + "weight": 250 }, { "id": 590, "planId": 33, "cardId": 11162, - "weight": 90 + "weight": 250 }, { "id": 591, "planId": 33, "cardId": 11172, - "weight": 90 + "weight": 250 }, { "id": 592, "planId": 33, "cardId": 11182, - "weight": 90 + "weight": 250 }, { "id": 593, "planId": 33, "cardId": 14111, - "weight": 90 + "weight": 250 }, { "id": 594, "planId": 33, "cardId": 14121, - "weight": 90 + "weight": 250 }, { "id": 595, "planId": 33, "cardId": 14131, - "weight": 90 + "weight": 250 }, { "id": 596, "planId": 33, "cardId": 14141, - "weight": 90 + "weight": 250 }, { "id": 597, "planId": 33, "cardId": 14151, - "weight": 90 + "weight": 250 }, { "id": 598, "planId": 33, "cardId": 14161, - "weight": 90 + "weight": 250 }, { "id": 599, "planId": 33, "cardId": 14171, - "weight": 90 + "weight": 250 }, { "id": 600, "planId": 33, "cardId": 14181, - "weight": 90 + "weight": 250 }, { "id": 601, "planId": 33, "cardId": 14112, - "weight": 90 + "weight": 250 }, { "id": 602, "planId": 33, "cardId": 14122, - "weight": 90 + "weight": 250 }, { "id": 603, "planId": 33, "cardId": 14132, - "weight": 90 + "weight": 250 }, { "id": 604, "planId": 33, "cardId": 14142, - "weight": 90 + "weight": 250 }, { "id": 605, "planId": 33, "cardId": 14152, - "weight": 90 + "weight": 250 }, { "id": 606, "planId": 33, "cardId": 14162, - "weight": 90 + "weight": 250 }, { "id": 607, "planId": 33, "cardId": 14172, - "weight": 90 + "weight": 250 }, { "id": 608, "planId": 33, "cardId": 14182, - "weight": 90 + "weight": 250 }, { "id": 609, "planId": 33, "cardId": 17111, - "weight": 90 + "weight": 250 }, { "id": 610, "planId": 33, "cardId": 17121, - "weight": 90 + "weight": 250 }, { "id": 611, "planId": 33, "cardId": 17131, - "weight": 90 + "weight": 250 }, { "id": 612, "planId": 33, "cardId": 17141, - "weight": 90 + "weight": 250 }, { "id": 613, "planId": 33, "cardId": 17151, - "weight": 90 + "weight": 250 }, { "id": 614, "planId": 33, "cardId": 17161, - "weight": 90 + "weight": 250 }, { "id": 615, "planId": 33, "cardId": 17171, - "weight": 90 + "weight": 250 }, { "id": 616, "planId": 33, "cardId": 17181, - "weight": 90 + "weight": 250 }, { "id": 617, "planId": 33, "cardId": 17112, - "weight": 90 + "weight": 250 }, { "id": 618, "planId": 33, "cardId": 17122, - "weight": 90 + "weight": 250 }, { "id": 619, "planId": 33, "cardId": 17132, - "weight": 90 + "weight": 250 }, { "id": 620, "planId": 33, "cardId": 17172, - "weight": 90 + "weight": 250 }, { "id": 621, "planId": 33, "cardId": 17152, - "weight": 90 + "weight": 250 }, { "id": 622, "planId": 33, "cardId": 17162, - "weight": 90 + "weight": 250 }, { "id": 623, "planId": 33, "cardId": 17172, - "weight": 90 + "weight": 250 }, { "id": 624, "planId": 33, "cardId": 17182, - "weight": 90 + "weight": 250 }, { "id": 625, "planId": 33, "cardId": 15111, - "weight": 90 + "weight": 250 }, { "id": 626, "planId": 33, "cardId": 15121, - "weight": 90 + "weight": 250 }, { "id": 627, "planId": 33, "cardId": 15131, - "weight": 90 + "weight": 250 }, { "id": 628, "planId": 33, "cardId": 15141, - "weight": 90 + "weight": 250 }, { "id": 629, "planId": 33, "cardId": 15151, - "weight": 90 + "weight": 250 }, { "id": 630, "planId": 33, "cardId": 15161, - "weight": 90 + "weight": 250 }, { "id": 631, "planId": 33, "cardId": 15171, - "weight": 90 + "weight": 250 }, { "id": 632, "planId": 33, "cardId": 15181, - "weight": 90 + "weight": 250 }, { "id": 633, "planId": 33, "cardId": 15112, - "weight": 90 + "weight": 250 }, { "id": 634, "planId": 33, "cardId": 15122, - "weight": 90 + "weight": 250 }, { "id": 635, "planId": 33, "cardId": 15132, - "weight": 90 + "weight": 250 }, { "id": 636, "planId": 33, "cardId": 15142, - "weight": 90 + "weight": 250 }, { "id": 637, "planId": 33, "cardId": 15152, - "weight": 90 + "weight": 250 }, { "id": 638, "planId": 33, "cardId": 15162, - "weight": 90 + "weight": 250 }, { "id": 639, "planId": 33, "cardId": 15172, - "weight": 90 + "weight": 250 }, { "id": 640, "planId": 33, "cardId": 15182, - "weight": 90 + "weight": 250 }, { "id": 641, "planId": 33, "cardId": 18111, - "weight": 90 + "weight": 250 }, { "id": 642, "planId": 33, "cardId": 18121, - "weight": 90 + "weight": 250 }, { "id": 643, "planId": 33, "cardId": 18131, - "weight": 90 + "weight": 250 }, { "id": 644, "planId": 33, "cardId": 18141, - "weight": 90 + "weight": 250 }, { "id": 645, "planId": 33, "cardId": 18151, - "weight": 90 + "weight": 250 }, { "id": 646, "planId": 33, "cardId": 18161, - "weight": 90 + "weight": 250 }, { "id": 647, "planId": 33, "cardId": 18171, - "weight": 90 + "weight": 250 }, { "id": 648, "planId": 33, "cardId": 18181, - "weight": 90 + "weight": 250 }, { "id": 649, "planId": 33, "cardId": 18112, - "weight": 90 + "weight": 250 }, { "id": 650, "planId": 33, "cardId": 18122, - "weight": 90 + "weight": 250 }, { "id": 651, "planId": 33, "cardId": 18132, - "weight": 90 + "weight": 250 }, { "id": 652, "planId": 33, "cardId": 18142, - "weight": 90 + "weight": 250 }, { "id": 653, "planId": 33, "cardId": 18152, - "weight": 90 + "weight": 250 }, { "id": 654, "planId": 33, "cardId": 18162, - "weight": 90 + "weight": 250 }, { "id": 655, "planId": 33, "cardId": 18172, - "weight": 90 + "weight": 250 }, { "id": 656, "planId": 33, "cardId": 18182, - "weight": 90 + "weight": 250 }, { "id": 657, "planId": 33, "cardId": 13111, - "weight": 90 + "weight": 250 }, { "id": 658, "planId": 33, "cardId": 13121, - "weight": 90 + "weight": 250 }, { "id": 659, "planId": 33, "cardId": 13131, - "weight": 90 + "weight": 250 }, { "id": 660, "planId": 33, "cardId": 13141, - "weight": 90 + "weight": 250 }, { "id": 661, "planId": 33, "cardId": 13151, - "weight": 90 + "weight": 250 }, { "id": 662, "planId": 33, "cardId": 13161, - "weight": 90 + "weight": 250 }, { "id": 663, "planId": 33, "cardId": 13171, - "weight": 90 + "weight": 250 }, { "id": 664, "planId": 33, "cardId": 13181, - "weight": 90 + "weight": 250 }, { "id": 665, "planId": 33, "cardId": 13112, - "weight": 90 + "weight": 250 }, { "id": 666, "planId": 33, "cardId": 13122, - "weight": 90 + "weight": 250 }, { "id": 667, "planId": 33, "cardId": 13132, - "weight": 90 + "weight": 250 }, { "id": 668, "planId": 33, "cardId": 13142, - "weight": 90 + "weight": 250 }, { "id": 669, "planId": 33, "cardId": 13152, - "weight": 90 + "weight": 250 }, { "id": 670, "planId": 33, "cardId": 13162, - "weight": 90 + "weight": 250 }, { "id": 671, "planId": 33, "cardId": 13172, - "weight": 90 + "weight": 250 }, { "id": 672, "planId": 33, "cardId": 13182, - "weight": 90 + "weight": 250 }, { "id": 673, "planId": 33, "cardId": 12111, - "weight": 90 + "weight": 250 }, { "id": 674, "planId": 33, "cardId": 12121, - "weight": 90 + "weight": 250 }, { "id": 675, "planId": 33, "cardId": 12131, - "weight": 90 + "weight": 250 }, { "id": 676, "planId": 33, "cardId": 12141, - "weight": 90 + "weight": 250 }, { "id": 677, "planId": 33, "cardId": 12151, - "weight": 90 + "weight": 250 }, { "id": 678, "planId": 33, "cardId": 12161, - "weight": 90 + "weight": 250 }, { "id": 679, "planId": 33, "cardId": 12171, - "weight": 90 + "weight": 250 }, { "id": 680, "planId": 33, "cardId": 12181, - "weight": 90 + "weight": 250 }, { "id": 681, "planId": 33, "cardId": 12112, - "weight": 90 + "weight": 250 }, { "id": 682, "planId": 33, "cardId": 12122, - "weight": 90 + "weight": 250 }, { "id": 683, "planId": 33, "cardId": 12132, - "weight": 90 + "weight": 250 }, { "id": 684, "planId": 33, "cardId": 12142, - "weight": 90 + "weight": 250 }, { "id": 685, "planId": 33, "cardId": 12152, - "weight": 90 + "weight": 250 }, { "id": 686, "planId": 33, "cardId": 12162, - "weight": 90 + "weight": 250 }, { "id": 687, "planId": 33, "cardId": 12172, - "weight": 90 + "weight": 250 }, { "id": 688, "planId": 33, "cardId": 12182, - "weight": 90 + "weight": 250 }, { "id": 689, "planId": 33, "cardId": 16111, - "weight": 90 + "weight": 250 }, { "id": 690, "planId": 33, "cardId": 16121, - "weight": 90 + "weight": 250 }, { "id": 691, "planId": 33, "cardId": 16131, - "weight": 90 + "weight": 250 }, { "id": 692, "planId": 33, "cardId": 16141, - "weight": 90 + "weight": 250 }, { "id": 693, "planId": 33, "cardId": 16151, - "weight": 90 + "weight": 250 }, { "id": 694, "planId": 33, "cardId": 16161, - "weight": 90 + "weight": 250 }, { "id": 695, "planId": 33, "cardId": 16171, - "weight": 90 + "weight": 250 }, { "id": 696, "planId": 33, "cardId": 16181, - "weight": 90 + "weight": 250 }, { "id": 697, "planId": 33, "cardId": 16112, - "weight": 90 + "weight": 250 }, { "id": 698, "planId": 33, "cardId": 16122, - "weight": 90 + "weight": 250 }, { "id": 699, "planId": 33, "cardId": 16132, - "weight": 90 + "weight": 250 }, { "id": 700, "planId": 33, "cardId": 16142, - "weight": 90 + "weight": 250 }, { "id": 701, "planId": 33, "cardId": 16152, - "weight": 90 + "weight": 250 }, { "id": 702, "planId": 33, "cardId": 16162, - "weight": 90 + "weight": 250 }, { "id": 703, "planId": 33, "cardId": 16172, - "weight": 90 + "weight": 250 }, { "id": 704, "planId": 33, "cardId": 16182, - "weight": 90 + "weight": 250 }, { "id": 705, "planId": 33, "cardId": 11211, - "weight": 160 + "weight": 300 }, { "id": 706, "planId": 33, "cardId": 11221, - "weight": 160 + "weight": 300 }, { "id": 707, "planId": 33, "cardId": 11231, - "weight": 160 + "weight": 300 }, { "id": 708, "planId": 33, "cardId": 11241, - "weight": 160 + "weight": 300 }, { "id": 709, "planId": 33, "cardId": 11251, - "weight": 160 + "weight": 300 }, { "id": 710, "planId": 33, "cardId": 11261, - "weight": 160 + "weight": 300 }, { "id": 711, "planId": 33, "cardId": 11212, - "weight": 160 + "weight": 300 }, { "id": 712, "planId": 33, "cardId": 11222, - "weight": 160 + "weight": 300 }, { "id": 713, "planId": 33, "cardId": 11232, - "weight": 160 + "weight": 300 }, { "id": 714, "planId": 33, "cardId": 11242, - "weight": 160 + "weight": 300 }, { "id": 715, "planId": 33, "cardId": 11252, - "weight": 160 + "weight": 300 }, { "id": 716, "planId": 33, "cardId": 11262, - "weight": 160 + "weight": 300 }, { "id": 717, "planId": 33, "cardId": 14211, - "weight": 160 + "weight": 300 }, { "id": 718, "planId": 33, "cardId": 14221, - "weight": 160 + "weight": 300 }, { "id": 719, "planId": 33, "cardId": 14231, - "weight": 160 + "weight": 300 }, { "id": 720, "planId": 33, "cardId": 14241, - "weight": 160 + "weight": 300 }, { "id": 721, "planId": 33, "cardId": 14251, - "weight": 160 + "weight": 300 }, { "id": 722, "planId": 33, "cardId": 14261, - "weight": 160 + "weight": 300 }, { "id": 723, "planId": 33, "cardId": 14212, - "weight": 160 + "weight": 300 }, { "id": 724, "planId": 33, "cardId": 14222, - "weight": 160 + "weight": 300 }, { "id": 725, "planId": 33, "cardId": 14232, - "weight": 160 + "weight": 300 }, { "id": 726, "planId": 33, "cardId": 14242, - "weight": 160 + "weight": 300 }, { "id": 727, "planId": 33, "cardId": 14252, - "weight": 160 + "weight": 300 }, { "id": 728, "planId": 33, "cardId": 14262, - "weight": 160 + "weight": 300 }, { "id": 729, "planId": 33, "cardId": 17211, - "weight": 160 + "weight": 300 }, { "id": 730, "planId": 33, "cardId": 17221, - "weight": 160 + "weight": 300 }, { "id": 731, "planId": 33, "cardId": 17231, - "weight": 160 + "weight": 300 }, { "id": 732, "planId": 33, "cardId": 17241, - "weight": 160 + "weight": 300 }, { "id": 733, "planId": 33, "cardId": 17251, - "weight": 160 + "weight": 300 }, { "id": 734, "planId": 33, "cardId": 17261, - "weight": 160 + "weight": 300 }, { "id": 735, "planId": 33, "cardId": 17212, - "weight": 160 + "weight": 300 }, { "id": 736, "planId": 33, "cardId": 17222, - "weight": 160 + "weight": 300 }, { "id": 737, "planId": 33, "cardId": 17232, - "weight": 160 + "weight": 300 }, { "id": 738, "planId": 33, "cardId": 17242, - "weight": 160 + "weight": 300 }, { "id": 739, "planId": 33, "cardId": 17252, - "weight": 160 + "weight": 300 }, { "id": 740, "planId": 33, "cardId": 17262, - "weight": 160 + "weight": 300 }, { "id": 741, "planId": 33, "cardId": 15211, - "weight": 160 + "weight": 300 }, { "id": 742, "planId": 33, "cardId": 15221, - "weight": 160 + "weight": 300 }, { "id": 743, "planId": 33, "cardId": 15231, - "weight": 160 + "weight": 300 }, { "id": 744, "planId": 33, "cardId": 15241, - "weight": 160 + "weight": 300 }, { "id": 745, "planId": 33, "cardId": 15251, - "weight": 160 + "weight": 300 }, { "id": 746, "planId": 33, "cardId": 15261, - "weight": 160 + "weight": 300 }, { "id": 747, "planId": 33, "cardId": 15212, - "weight": 160 + "weight": 300 }, { "id": 748, "planId": 33, "cardId": 15222, - "weight": 160 + "weight": 300 }, { "id": 749, "planId": 33, "cardId": 15232, - "weight": 160 + "weight": 300 }, { "id": 750, "planId": 33, "cardId": 15242, - "weight": 160 + "weight": 300 }, { "id": 751, "planId": 33, "cardId": 15252, - "weight": 160 + "weight": 300 }, { "id": 752, "planId": 33, "cardId": 15262, - "weight": 160 + "weight": 300 }, { "id": 753, "planId": 33, "cardId": 18211, - "weight": 160 + "weight": 300 }, { "id": 754, "planId": 33, "cardId": 18221, - "weight": 160 + "weight": 300 }, { "id": 755, "planId": 33, "cardId": 18231, - "weight": 160 + "weight": 300 }, { "id": 756, "planId": 33, "cardId": 18241, - "weight": 160 + "weight": 300 }, { "id": 757, "planId": 33, "cardId": 18251, - "weight": 160 + "weight": 300 }, { "id": 758, "planId": 33, "cardId": 18261, - "weight": 160 + "weight": 300 }, { "id": 759, "planId": 33, "cardId": 18212, - "weight": 160 + "weight": 300 }, { "id": 760, "planId": 33, "cardId": 18222, - "weight": 160 + "weight": 300 }, { "id": 761, "planId": 33, "cardId": 18232, - "weight": 160 + "weight": 300 }, { "id": 762, "planId": 33, "cardId": 18242, - "weight": 160 + "weight": 300 }, { "id": 763, "planId": 33, "cardId": 18252, - "weight": 160 + "weight": 300 }, { "id": 764, "planId": 33, "cardId": 18262, - "weight": 160 + "weight": 300 }, { "id": 765, "planId": 33, "cardId": 13211, - "weight": 160 + "weight": 300 }, { "id": 766, "planId": 33, "cardId": 13221, - "weight": 160 + "weight": 300 }, { "id": 767, "planId": 33, "cardId": 13231, - "weight": 160 + "weight": 300 }, { "id": 768, "planId": 33, "cardId": 13241, - "weight": 160 + "weight": 300 }, { "id": 769, "planId": 33, "cardId": 13251, - "weight": 160 + "weight": 300 }, { "id": 770, "planId": 33, "cardId": 13261, - "weight": 160 + "weight": 300 }, { "id": 771, "planId": 33, "cardId": 13212, - "weight": 160 + "weight": 300 }, { "id": 772, "planId": 33, "cardId": 13222, - "weight": 160 + "weight": 300 }, { "id": 773, "planId": 33, "cardId": 13232, - "weight": 160 + "weight": 300 }, { "id": 774, "planId": 33, "cardId": 13242, - "weight": 160 + "weight": 300 }, { "id": 775, "planId": 33, "cardId": 13252, - "weight": 160 + "weight": 300 }, { "id": 776, "planId": 33, "cardId": 13262, - "weight": 160 + "weight": 300 }, { "id": 777, "planId": 33, "cardId": 12211, - "weight": 160 + "weight": 300 }, { "id": 778, "planId": 33, "cardId": 12221, - "weight": 160 + "weight": 300 }, { "id": 779, "planId": 33, "cardId": 12231, - "weight": 160 + "weight": 300 }, { "id": 780, "planId": 33, "cardId": 12241, - "weight": 160 + "weight": 300 }, { "id": 781, "planId": 33, "cardId": 12251, - "weight": 160 + "weight": 300 }, { "id": 782, "planId": 33, "cardId": 12261, - "weight": 160 + "weight": 300 }, { "id": 783, "planId": 33, "cardId": 12212, - "weight": 160 + "weight": 300 }, { "id": 784, "planId": 33, "cardId": 12222, - "weight": 160 + "weight": 300 }, { "id": 785, "planId": 33, "cardId": 12232, - "weight": 160 + "weight": 300 }, { "id": 786, "planId": 33, "cardId": 12242, - "weight": 160 + "weight": 300 }, { "id": 787, "planId": 33, "cardId": 12252, - "weight": 160 + "weight": 300 }, { "id": 788, "planId": 33, "cardId": 12262, - "weight": 160 + "weight": 300 }, { "id": 789, "planId": 33, "cardId": 16211, - "weight": 160 + "weight": 300 }, { "id": 790, "planId": 33, "cardId": 16221, - "weight": 160 + "weight": 300 }, { "id": 791, "planId": 33, "cardId": 16231, - "weight": 160 + "weight": 300 }, { "id": 792, "planId": 33, "cardId": 16241, - "weight": 160 + "weight": 300 }, { "id": 793, "planId": 33, "cardId": 16251, - "weight": 160 + "weight": 300 }, { "id": 794, "planId": 33, "cardId": 16261, - "weight": 160 + "weight": 300 }, { "id": 795, "planId": 33, "cardId": 16212, - "weight": 160 + "weight": 300 }, { "id": 796, "planId": 33, "cardId": 16222, - "weight": 160 + "weight": 300 }, { "id": 797, "planId": 33, "cardId": 16232, - "weight": 160 + "weight": 300 }, { "id": 798, "planId": 33, "cardId": 16242, - "weight": 160 + "weight": 300 }, { "id": 799, "planId": 33, "cardId": 16252, - "weight": 160 + "weight": 300 }, { "id": 800, "planId": 33, "cardId": 16262, - "weight": 160 + "weight": 300 }, { "id": 801, "planId": 33, "cardId": 11311, - "weight": 180 + "weight": 50 }, { "id": 802, "planId": 33, "cardId": 11321, - "weight": 180 + "weight": 50 }, { "id": 803, "planId": 33, "cardId": 11331, - "weight": 180 + "weight": 50 }, { "id": 804, "planId": 33, "cardId": 11341, - "weight": 180 + "weight": 50 }, { "id": 805, "planId": 33, "cardId": 11312, - "weight": 180 + "weight": 50 }, { "id": 806, "planId": 33, "cardId": 11322, - "weight": 180 + "weight": 50 }, { "id": 807, "planId": 33, "cardId": 11332, - "weight": 180 + "weight": 50 }, { "id": 808, "planId": 33, "cardId": 11342, - "weight": 180 + "weight": 50 }, { "id": 809, "planId": 33, "cardId": 14311, - "weight": 180 + "weight": 50 }, { "id": 810, "planId": 33, "cardId": 14321, - "weight": 180 + "weight": 50 }, { "id": 811, "planId": 33, "cardId": 14331, - "weight": 180 + "weight": 50 }, { "id": 812, "planId": 33, "cardId": 14341, - "weight": 180 + "weight": 50 }, { "id": 813, "planId": 33, "cardId": 14312, - "weight": 180 + "weight": 50 }, { "id": 814, "planId": 33, "cardId": 14322, - "weight": 180 + "weight": 50 }, { "id": 815, "planId": 33, "cardId": 14332, - "weight": 180 + "weight": 50 }, { "id": 816, "planId": 33, "cardId": 14342, - "weight": 180 + "weight": 50 }, { "id": 817, "planId": 33, "cardId": 17311, - "weight": 180 + "weight": 50 }, { "id": 818, "planId": 33, "cardId": 17321, - "weight": 180 + "weight": 50 }, { "id": 819, "planId": 33, "cardId": 17331, - "weight": 180 + "weight": 50 }, { "id": 820, "planId": 33, "cardId": 17341, - "weight": 180 + "weight": 50 }, { "id": 821, "planId": 33, "cardId": 17312, - "weight": 180 + "weight": 50 }, { "id": 822, "planId": 33, "cardId": 17322, - "weight": 180 + "weight": 50 }, { "id": 823, "planId": 33, "cardId": 17332, - "weight": 180 + "weight": 50 }, { "id": 824, "planId": 33, "cardId": 17342, - "weight": 180 + "weight": 50 }, { "id": 825, "planId": 33, "cardId": 15311, - "weight": 180 + "weight": 50 }, { "id": 826, "planId": 33, "cardId": 15321, - "weight": 180 + "weight": 50 }, { "id": 827, "planId": 33, "cardId": 15331, - "weight": 180 + "weight": 50 }, { "id": 828, "planId": 33, "cardId": 15341, - "weight": 180 + "weight": 50 }, { "id": 829, "planId": 33, "cardId": 15312, - "weight": 180 + "weight": 50 }, { "id": 830, "planId": 33, "cardId": 15322, - "weight": 180 + "weight": 50 }, { "id": 831, "planId": 33, "cardId": 15332, - "weight": 180 + "weight": 50 }, { "id": 832, "planId": 33, "cardId": 15342, - "weight": 180 + "weight": 50 }, { "id": 833, "planId": 33, "cardId": 18311, - "weight": 180 + "weight": 50 }, { "id": 834, "planId": 33, "cardId": 18321, - "weight": 180 + "weight": 50 }, { "id": 835, "planId": 33, "cardId": 18331, - "weight": 180 + "weight": 50 }, { "id": 836, "planId": 33, "cardId": 18341, - "weight": 180 + "weight": 50 }, { "id": 837, "planId": 33, "cardId": 18312, - "weight": 180 + "weight": 50 }, { "id": 838, "planId": 33, "cardId": 18322, - "weight": 180 + "weight": 50 }, { "id": 839, "planId": 33, "cardId": 18332, - "weight": 180 + "weight": 50 }, { "id": 840, "planId": 33, "cardId": 18342, - "weight": 180 + "weight": 50 }, { "id": 841, "planId": 33, "cardId": 13311, - "weight": 180 + "weight": 50 }, { "id": 842, "planId": 33, "cardId": 13321, - "weight": 180 + "weight": 50 }, { "id": 843, "planId": 33, "cardId": 13331, - "weight": 180 + "weight": 50 }, { "id": 844, "planId": 33, "cardId": 13341, - "weight": 180 + "weight": 50 }, { "id": 845, "planId": 33, "cardId": 13312, - "weight": 180 + "weight": 50 }, { "id": 846, "planId": 33, "cardId": 13322, - "weight": 180 + "weight": 50 }, { "id": 847, "planId": 33, "cardId": 13332, - "weight": 180 + "weight": 50 }, { "id": 848, "planId": 33, "cardId": 13342, - "weight": 180 + "weight": 50 }, { "id": 849, "planId": 33, "cardId": 12311, - "weight": 180 + "weight": 50 }, { "id": 850, "planId": 33, "cardId": 12321, - "weight": 180 + "weight": 50 }, { "id": 851, "planId": 33, "cardId": 12331, - "weight": 180 + "weight": 50 }, { "id": 852, "planId": 33, "cardId": 12341, - "weight": 180 + "weight": 50 }, { "id": 853, "planId": 33, "cardId": 12312, - "weight": 180 + "weight": 50 }, { "id": 854, "planId": 33, "cardId": 12322, - "weight": 180 + "weight": 50 }, { "id": 855, "planId": 33, "cardId": 12332, - "weight": 180 + "weight": 50 }, { "id": 856, "planId": 33, "cardId": 12342, - "weight": 180 + "weight": 50 }, { "id": 857, "planId": 33, "cardId": 16311, - "weight": 180 + "weight": 50 }, { "id": 858, "planId": 33, "cardId": 16321, - "weight": 180 + "weight": 50 }, { "id": 859, "planId": 33, "cardId": 16331, - "weight": 180 + "weight": 50 }, { "id": 860, "planId": 33, "cardId": 16341, - "weight": 180 + "weight": 50 }, { "id": 861, "planId": 33, "cardId": 16312, - "weight": 180 + "weight": 50 }, { "id": 862, "planId": 33, "cardId": 16322, - "weight": 180 + "weight": 50 }, { "id": 863, "planId": 33, "cardId": 16332, - "weight": 180 + "weight": 50 }, { "id": 864, "planId": 33, "cardId": 16342, - "weight": 180 + "weight": 50 }, { "id": 865, @@ -5953,4419 +5953,4419 @@ }, { "id": 993, - "planId": 42, + "planId": 41, "cardId": 11211, "weight": 300 }, { "id": 994, - "planId": 42, + "planId": 41, "cardId": 11221, "weight": 300 }, { "id": 995, - "planId": 42, + "planId": 41, "cardId": 11231, "weight": 300 }, { "id": 996, - "planId": 42, + "planId": 41, "cardId": 11241, "weight": 300 }, { "id": 997, - "planId": 42, + "planId": 41, "cardId": 11251, "weight": 300 }, { "id": 998, - "planId": 42, + "planId": 41, "cardId": 11261, "weight": 300 }, { "id": 999, - "planId": 42, + "planId": 41, "cardId": 11212, "weight": 300 }, { "id": 1000, - "planId": 42, + "planId": 41, "cardId": 11222, "weight": 300 }, { "id": 1001, - "planId": 42, + "planId": 41, "cardId": 11232, "weight": 300 }, { "id": 1002, - "planId": 42, + "planId": 41, "cardId": 11242, "weight": 300 }, { "id": 1003, - "planId": 42, + "planId": 41, "cardId": 11252, "weight": 300 }, { "id": 1004, - "planId": 42, + "planId": 41, "cardId": 11262, "weight": 300 }, { "id": 1005, - "planId": 42, + "planId": 41, "cardId": 14211, "weight": 300 }, { "id": 1006, - "planId": 42, + "planId": 41, "cardId": 14221, "weight": 300 }, { "id": 1007, - "planId": 42, + "planId": 41, "cardId": 14231, "weight": 300 }, { "id": 1008, - "planId": 42, + "planId": 41, "cardId": 14241, "weight": 300 }, { "id": 1009, - "planId": 42, + "planId": 41, "cardId": 14251, "weight": 300 }, { "id": 1010, - "planId": 42, + "planId": 41, "cardId": 14261, "weight": 300 }, { "id": 1011, - "planId": 42, + "planId": 41, "cardId": 14212, "weight": 300 }, { "id": 1012, - "planId": 42, + "planId": 41, "cardId": 14222, "weight": 300 }, { "id": 1013, - "planId": 42, + "planId": 41, "cardId": 14232, "weight": 300 }, { "id": 1014, - "planId": 42, + "planId": 41, "cardId": 14242, "weight": 300 }, { "id": 1015, - "planId": 42, + "planId": 41, "cardId": 14252, "weight": 300 }, { "id": 1016, - "planId": 42, + "planId": 41, "cardId": 14262, "weight": 300 }, { "id": 1017, - "planId": 42, + "planId": 41, "cardId": 17211, "weight": 300 }, { "id": 1018, - "planId": 42, + "planId": 41, "cardId": 17221, "weight": 300 }, { "id": 1019, - "planId": 42, + "planId": 41, "cardId": 17231, "weight": 300 }, { "id": 1020, - "planId": 42, + "planId": 41, "cardId": 17241, "weight": 300 }, { "id": 1021, - "planId": 42, + "planId": 41, "cardId": 17251, "weight": 300 }, { "id": 1022, - "planId": 42, + "planId": 41, "cardId": 17261, "weight": 300 }, { "id": 1023, - "planId": 42, + "planId": 41, "cardId": 17212, "weight": 300 }, { "id": 1024, - "planId": 42, + "planId": 41, "cardId": 17222, "weight": 300 }, { "id": 1025, - "planId": 42, + "planId": 41, "cardId": 17232, "weight": 300 }, { "id": 1026, - "planId": 42, + "planId": 41, "cardId": 17242, "weight": 300 }, { "id": 1027, - "planId": 42, + "planId": 41, "cardId": 17252, "weight": 300 }, { "id": 1028, - "planId": 42, + "planId": 41, "cardId": 17262, "weight": 300 }, { "id": 1029, - "planId": 42, + "planId": 41, "cardId": 15211, "weight": 300 }, { "id": 1030, - "planId": 42, + "planId": 41, "cardId": 15221, "weight": 300 }, { "id": 1031, - "planId": 42, + "planId": 41, "cardId": 15231, "weight": 300 }, { "id": 1032, - "planId": 42, + "planId": 41, "cardId": 15241, "weight": 300 }, { "id": 1033, - "planId": 42, + "planId": 41, "cardId": 15251, "weight": 300 }, { "id": 1034, - "planId": 42, + "planId": 41, "cardId": 15261, "weight": 300 }, { "id": 1035, - "planId": 42, + "planId": 41, "cardId": 15212, "weight": 300 }, { "id": 1036, - "planId": 42, + "planId": 41, "cardId": 15222, "weight": 300 }, { "id": 1037, - "planId": 42, + "planId": 41, "cardId": 15232, "weight": 300 }, { "id": 1038, - "planId": 42, + "planId": 41, "cardId": 15242, "weight": 300 }, { "id": 1039, - "planId": 42, + "planId": 41, "cardId": 15252, "weight": 300 }, { "id": 1040, - "planId": 42, + "planId": 41, "cardId": 15262, "weight": 300 }, { "id": 1041, - "planId": 42, + "planId": 41, "cardId": 18211, "weight": 300 }, { "id": 1042, - "planId": 42, + "planId": 41, "cardId": 18221, "weight": 300 }, { "id": 1043, - "planId": 42, + "planId": 41, "cardId": 18231, "weight": 300 }, { "id": 1044, - "planId": 42, + "planId": 41, "cardId": 18241, "weight": 300 }, { "id": 1045, - "planId": 42, + "planId": 41, "cardId": 18251, "weight": 300 }, { "id": 1046, - "planId": 42, + "planId": 41, "cardId": 18261, "weight": 300 }, { "id": 1047, - "planId": 42, + "planId": 41, "cardId": 18212, "weight": 300 }, { "id": 1048, - "planId": 42, + "planId": 41, "cardId": 18222, "weight": 300 }, { "id": 1049, - "planId": 42, + "planId": 41, "cardId": 18232, "weight": 300 }, { "id": 1050, - "planId": 42, + "planId": 41, "cardId": 18242, "weight": 300 }, { "id": 1051, - "planId": 42, + "planId": 41, "cardId": 18252, "weight": 300 }, { "id": 1052, - "planId": 42, + "planId": 41, "cardId": 18262, "weight": 300 }, { "id": 1053, - "planId": 42, + "planId": 41, "cardId": 13211, "weight": 300 }, { "id": 1054, - "planId": 42, + "planId": 41, "cardId": 13221, "weight": 300 }, { "id": 1055, - "planId": 42, + "planId": 41, "cardId": 13231, "weight": 300 }, { "id": 1056, - "planId": 42, + "planId": 41, "cardId": 13241, "weight": 300 }, { "id": 1057, - "planId": 42, + "planId": 41, "cardId": 13251, "weight": 300 }, { "id": 1058, - "planId": 42, + "planId": 41, "cardId": 13261, "weight": 300 }, { "id": 1059, - "planId": 42, + "planId": 41, "cardId": 13212, "weight": 300 }, { "id": 1060, - "planId": 42, + "planId": 41, "cardId": 13222, "weight": 300 }, { "id": 1061, - "planId": 42, + "planId": 41, "cardId": 13232, "weight": 300 }, { "id": 1062, - "planId": 42, + "planId": 41, "cardId": 13242, "weight": 300 }, { "id": 1063, - "planId": 42, + "planId": 41, "cardId": 13252, "weight": 300 }, { "id": 1064, - "planId": 42, + "planId": 41, "cardId": 13262, "weight": 300 }, { "id": 1065, - "planId": 42, + "planId": 41, "cardId": 12211, "weight": 300 }, { "id": 1066, - "planId": 42, + "planId": 41, "cardId": 12221, "weight": 300 }, { "id": 1067, - "planId": 42, + "planId": 41, "cardId": 12231, "weight": 300 }, { "id": 1068, - "planId": 42, + "planId": 41, "cardId": 12241, "weight": 300 }, { "id": 1069, - "planId": 42, + "planId": 41, "cardId": 12251, "weight": 300 }, { "id": 1070, - "planId": 42, + "planId": 41, "cardId": 12261, "weight": 300 }, { "id": 1071, - "planId": 42, + "planId": 41, "cardId": 12212, "weight": 300 }, { "id": 1072, - "planId": 42, + "planId": 41, "cardId": 12222, "weight": 300 }, { "id": 1073, - "planId": 42, + "planId": 41, "cardId": 12232, "weight": 300 }, { "id": 1074, - "planId": 42, + "planId": 41, "cardId": 12242, "weight": 300 }, { "id": 1075, - "planId": 42, + "planId": 41, "cardId": 12252, "weight": 300 }, { "id": 1076, - "planId": 42, + "planId": 41, "cardId": 12262, "weight": 300 }, { "id": 1077, - "planId": 42, + "planId": 41, "cardId": 16211, "weight": 300 }, { "id": 1078, - "planId": 42, + "planId": 41, "cardId": 16221, "weight": 300 }, { "id": 1079, - "planId": 42, + "planId": 41, "cardId": 16231, "weight": 300 }, { "id": 1080, - "planId": 42, + "planId": 41, "cardId": 16241, "weight": 300 }, { "id": 1081, - "planId": 42, + "planId": 41, "cardId": 16251, "weight": 300 }, { "id": 1082, - "planId": 42, + "planId": 41, "cardId": 16261, "weight": 300 }, { "id": 1083, - "planId": 42, + "planId": 41, "cardId": 16212, "weight": 300 }, { "id": 1084, - "planId": 42, + "planId": 41, "cardId": 16222, "weight": 300 }, { "id": 1085, - "planId": 42, + "planId": 41, "cardId": 16232, "weight": 300 }, { "id": 1086, - "planId": 42, + "planId": 41, "cardId": 16242, "weight": 300 }, { "id": 1087, - "planId": 42, + "planId": 41, "cardId": 16252, "weight": 300 }, { "id": 1088, - "planId": 42, + "planId": 41, "cardId": 16262, "weight": 300 }, { "id": 1089, - "planId": 43, + "planId": 41, "cardId": 11311, "weight": 50 }, { "id": 1090, - "planId": 43, + "planId": 41, "cardId": 11321, "weight": 50 }, { "id": 1091, - "planId": 43, + "planId": 41, "cardId": 11331, "weight": 50 }, { "id": 1092, - "planId": 43, + "planId": 41, "cardId": 11341, "weight": 50 }, { "id": 1093, - "planId": 43, + "planId": 41, "cardId": 11312, "weight": 50 }, { "id": 1094, - "planId": 43, + "planId": 41, "cardId": 11322, "weight": 50 }, { "id": 1095, - "planId": 43, + "planId": 41, "cardId": 11332, "weight": 50 }, { "id": 1096, - "planId": 43, + "planId": 41, "cardId": 11342, "weight": 50 }, { "id": 1097, - "planId": 43, + "planId": 41, "cardId": 14311, "weight": 50 }, { "id": 1098, - "planId": 43, + "planId": 41, "cardId": 14321, "weight": 50 }, { "id": 1099, - "planId": 43, + "planId": 41, "cardId": 14331, "weight": 50 }, { "id": 1100, - "planId": 43, + "planId": 41, "cardId": 14341, "weight": 50 }, { "id": 1101, - "planId": 43, + "planId": 41, "cardId": 14312, "weight": 50 }, { "id": 1102, - "planId": 43, + "planId": 41, "cardId": 14322, "weight": 50 }, { "id": 1103, - "planId": 43, + "planId": 41, "cardId": 14332, "weight": 50 }, { "id": 1104, - "planId": 43, + "planId": 41, "cardId": 14342, "weight": 50 }, { "id": 1105, - "planId": 43, + "planId": 41, "cardId": 17311, "weight": 50 }, { "id": 1106, - "planId": 43, + "planId": 41, "cardId": 17321, "weight": 50 }, { "id": 1107, - "planId": 43, + "planId": 41, "cardId": 17331, "weight": 50 }, { "id": 1108, - "planId": 43, + "planId": 41, "cardId": 17341, "weight": 50 }, { "id": 1109, - "planId": 43, + "planId": 41, "cardId": 17312, "weight": 50 }, { "id": 1110, - "planId": 43, + "planId": 41, "cardId": 17322, "weight": 50 }, { "id": 1111, - "planId": 43, + "planId": 41, "cardId": 17332, "weight": 50 }, { "id": 1112, - "planId": 43, + "planId": 41, "cardId": 17342, "weight": 50 }, { "id": 1113, - "planId": 43, + "planId": 41, "cardId": 15311, "weight": 50 }, { "id": 1114, - "planId": 43, + "planId": 41, "cardId": 15321, "weight": 50 }, { "id": 1115, - "planId": 43, + "planId": 41, "cardId": 15331, "weight": 50 }, { "id": 1116, - "planId": 43, + "planId": 41, "cardId": 15341, "weight": 50 }, { "id": 1117, - "planId": 43, + "planId": 41, "cardId": 15312, "weight": 50 }, { "id": 1118, - "planId": 43, + "planId": 41, "cardId": 15322, "weight": 50 }, { "id": 1119, - "planId": 43, + "planId": 41, "cardId": 15332, "weight": 50 }, { "id": 1120, - "planId": 43, + "planId": 41, "cardId": 15342, "weight": 50 }, { "id": 1121, - "planId": 43, + "planId": 41, "cardId": 18311, "weight": 50 }, { "id": 1122, - "planId": 43, + "planId": 41, "cardId": 18321, "weight": 50 }, { "id": 1123, - "planId": 43, + "planId": 41, "cardId": 18331, "weight": 50 }, { "id": 1124, - "planId": 43, + "planId": 41, "cardId": 18341, "weight": 50 }, { "id": 1125, - "planId": 43, + "planId": 41, "cardId": 18312, "weight": 50 }, { "id": 1126, - "planId": 43, + "planId": 41, "cardId": 18322, "weight": 50 }, { "id": 1127, - "planId": 43, + "planId": 41, "cardId": 18332, "weight": 50 }, { "id": 1128, - "planId": 43, + "planId": 41, "cardId": 18342, "weight": 50 }, { "id": 1129, - "planId": 43, + "planId": 41, "cardId": 13311, "weight": 50 }, { "id": 1130, - "planId": 43, + "planId": 41, "cardId": 13321, "weight": 50 }, { "id": 1131, - "planId": 43, + "planId": 41, "cardId": 13331, "weight": 50 }, { "id": 1132, - "planId": 43, + "planId": 41, "cardId": 13341, "weight": 50 }, { "id": 1133, - "planId": 43, + "planId": 41, "cardId": 13312, "weight": 50 }, { "id": 1134, - "planId": 43, + "planId": 41, "cardId": 13322, "weight": 50 }, { "id": 1135, - "planId": 43, + "planId": 41, "cardId": 13332, "weight": 50 }, { "id": 1136, - "planId": 43, + "planId": 41, "cardId": 13342, "weight": 50 }, { "id": 1137, - "planId": 43, + "planId": 41, "cardId": 12311, "weight": 50 }, { "id": 1138, - "planId": 43, + "planId": 41, "cardId": 12321, "weight": 50 }, { "id": 1139, - "planId": 43, + "planId": 41, "cardId": 12331, "weight": 50 }, { "id": 1140, - "planId": 43, + "planId": 41, "cardId": 12341, "weight": 50 }, { "id": 1141, - "planId": 43, + "planId": 41, "cardId": 12312, "weight": 50 }, { "id": 1142, - "planId": 43, + "planId": 41, "cardId": 12322, "weight": 50 }, { "id": 1143, - "planId": 43, + "planId": 41, "cardId": 12332, "weight": 50 }, { "id": 1144, - "planId": 43, + "planId": 41, "cardId": 12342, "weight": 50 }, { "id": 1145, - "planId": 43, + "planId": 41, "cardId": 16311, "weight": 50 }, { "id": 1146, - "planId": 43, + "planId": 41, "cardId": 16321, "weight": 50 }, { "id": 1147, - "planId": 43, + "planId": 41, "cardId": 16331, "weight": 50 }, { "id": 1148, - "planId": 43, + "planId": 41, "cardId": 16341, "weight": 50 }, { "id": 1149, - "planId": 43, + "planId": 41, "cardId": 16312, "weight": 50 }, { "id": 1150, - "planId": 43, + "planId": 41, "cardId": 16322, "weight": 50 }, { "id": 1151, - "planId": 43, + "planId": 41, "cardId": 16332, "weight": 50 }, { "id": 1152, - "planId": 43, + "planId": 41, "cardId": 16342, "weight": 50 }, { "id": 1153, - "planId": 43, + "planId": 42, "cardId": 11111, - "weight": 200 + "weight": 250 }, { "id": 1154, - "planId": 43, + "planId": 42, "cardId": 11121, - "weight": 200 + "weight": 250 }, { "id": 1155, - "planId": 43, + "planId": 42, "cardId": 11131, - "weight": 200 + "weight": 250 }, { "id": 1156, - "planId": 43, + "planId": 42, "cardId": 11141, - "weight": 200 + "weight": 250 }, { "id": 1157, - "planId": 43, + "planId": 42, "cardId": 11151, - "weight": 200 + "weight": 250 }, { "id": 1158, - "planId": 43, + "planId": 42, "cardId": 11161, - "weight": 200 + "weight": 250 }, { "id": 1159, - "planId": 43, + "planId": 42, "cardId": 11171, - "weight": 200 + "weight": 250 }, { "id": 1160, - "planId": 43, + "planId": 42, "cardId": 11181, - "weight": 200 + "weight": 250 }, { "id": 1161, - "planId": 43, + "planId": 42, "cardId": 11112, - "weight": 200 + "weight": 250 }, { "id": 1162, - "planId": 43, + "planId": 42, "cardId": 11122, - "weight": 200 + "weight": 250 }, { "id": 1163, - "planId": 43, + "planId": 42, "cardId": 11132, - "weight": 200 + "weight": 250 }, { "id": 1164, - "planId": 43, + "planId": 42, "cardId": 11142, - "weight": 200 + "weight": 250 }, { "id": 1165, - "planId": 43, + "planId": 42, "cardId": 11152, - "weight": 200 + "weight": 250 }, { "id": 1166, - "planId": 43, + "planId": 42, "cardId": 11162, - "weight": 200 + "weight": 250 }, { "id": 1167, - "planId": 43, + "planId": 42, "cardId": 11172, - "weight": 200 + "weight": 250 }, { "id": 1168, - "planId": 43, + "planId": 42, "cardId": 11182, - "weight": 200 + "weight": 250 }, { "id": 1169, - "planId": 43, + "planId": 42, "cardId": 14111, - "weight": 200 + "weight": 250 }, { "id": 1170, - "planId": 43, + "planId": 42, "cardId": 14121, - "weight": 200 + "weight": 250 }, { "id": 1171, - "planId": 43, + "planId": 42, "cardId": 14131, - "weight": 200 + "weight": 250 }, { "id": 1172, - "planId": 43, + "planId": 42, "cardId": 14141, - "weight": 200 + "weight": 250 }, { "id": 1173, - "planId": 43, + "planId": 42, "cardId": 14151, - "weight": 200 + "weight": 250 }, { "id": 1174, - "planId": 43, + "planId": 42, "cardId": 14161, - "weight": 200 + "weight": 250 }, { "id": 1175, - "planId": 43, + "planId": 42, "cardId": 14171, - "weight": 200 + "weight": 250 }, { "id": 1176, - "planId": 43, + "planId": 42, "cardId": 14181, - "weight": 200 + "weight": 250 }, { "id": 1177, - "planId": 43, + "planId": 42, "cardId": 14112, - "weight": 200 + "weight": 250 }, { "id": 1178, - "planId": 43, + "planId": 42, "cardId": 14122, - "weight": 200 + "weight": 250 }, { "id": 1179, - "planId": 43, + "planId": 42, "cardId": 14132, - "weight": 200 + "weight": 250 }, { "id": 1180, - "planId": 43, + "planId": 42, "cardId": 14142, - "weight": 200 + "weight": 250 }, { "id": 1181, - "planId": 43, + "planId": 42, "cardId": 14152, - "weight": 200 + "weight": 250 }, { "id": 1182, - "planId": 43, + "planId": 42, "cardId": 14162, - "weight": 200 + "weight": 250 }, { "id": 1183, - "planId": 43, + "planId": 42, "cardId": 14172, - "weight": 200 + "weight": 250 }, { "id": 1184, - "planId": 43, + "planId": 42, "cardId": 14182, - "weight": 200 + "weight": 250 }, { "id": 1185, - "planId": 43, + "planId": 42, "cardId": 17111, - "weight": 200 + "weight": 250 }, { "id": 1186, - "planId": 43, + "planId": 42, "cardId": 17121, - "weight": 200 + "weight": 250 }, { "id": 1187, - "planId": 43, + "planId": 42, "cardId": 17131, - "weight": 200 + "weight": 250 }, { "id": 1188, - "planId": 43, + "planId": 42, "cardId": 17141, - "weight": 200 + "weight": 250 }, { "id": 1189, - "planId": 43, + "planId": 42, "cardId": 17151, - "weight": 200 + "weight": 250 }, { "id": 1190, - "planId": 43, + "planId": 42, "cardId": 17161, - "weight": 200 + "weight": 250 }, { "id": 1191, - "planId": 43, + "planId": 42, "cardId": 17171, - "weight": 200 + "weight": 250 }, { "id": 1192, - "planId": 43, + "planId": 42, "cardId": 17181, - "weight": 200 + "weight": 250 }, { "id": 1193, - "planId": 43, + "planId": 42, "cardId": 17112, - "weight": 200 + "weight": 250 }, { "id": 1194, - "planId": 43, + "planId": 42, "cardId": 17122, - "weight": 200 + "weight": 250 }, { "id": 1195, - "planId": 43, + "planId": 42, "cardId": 17132, - "weight": 200 + "weight": 250 }, { "id": 1196, - "planId": 43, + "planId": 42, "cardId": 17172, - "weight": 200 + "weight": 250 }, { "id": 1197, - "planId": 43, + "planId": 42, "cardId": 17152, - "weight": 200 + "weight": 250 }, { "id": 1198, - "planId": 43, + "planId": 42, "cardId": 17162, - "weight": 200 + "weight": 250 }, { "id": 1199, - "planId": 43, + "planId": 42, "cardId": 17172, - "weight": 200 + "weight": 250 }, { "id": 1200, - "planId": 43, + "planId": 42, "cardId": 17182, - "weight": 200 + "weight": 250 }, { "id": 1201, - "planId": 43, + "planId": 42, "cardId": 15111, - "weight": 200 + "weight": 250 }, { "id": 1202, - "planId": 43, + "planId": 42, "cardId": 15121, - "weight": 200 + "weight": 250 }, { "id": 1203, - "planId": 43, + "planId": 42, "cardId": 15131, - "weight": 200 + "weight": 250 }, { "id": 1204, - "planId": 43, + "planId": 42, "cardId": 15141, - "weight": 200 + "weight": 250 }, { "id": 1205, - "planId": 43, + "planId": 42, "cardId": 15151, - "weight": 200 + "weight": 250 }, { "id": 1206, - "planId": 43, + "planId": 42, "cardId": 15161, - "weight": 200 + "weight": 250 }, { "id": 1207, - "planId": 43, + "planId": 42, "cardId": 15171, - "weight": 200 + "weight": 250 }, { "id": 1208, - "planId": 43, + "planId": 42, "cardId": 15181, - "weight": 200 + "weight": 250 }, { "id": 1209, - "planId": 43, + "planId": 42, "cardId": 15112, - "weight": 200 + "weight": 250 }, { "id": 1210, - "planId": 43, + "planId": 42, "cardId": 15122, - "weight": 200 + "weight": 250 }, { "id": 1211, - "planId": 43, + "planId": 42, "cardId": 15132, - "weight": 200 + "weight": 250 }, { "id": 1212, - "planId": 43, + "planId": 42, "cardId": 15142, - "weight": 200 + "weight": 250 }, { "id": 1213, - "planId": 43, + "planId": 42, "cardId": 15152, - "weight": 200 + "weight": 250 }, { "id": 1214, - "planId": 43, + "planId": 42, "cardId": 15162, - "weight": 200 + "weight": 250 }, { "id": 1215, - "planId": 43, + "planId": 42, "cardId": 15172, - "weight": 200 + "weight": 250 }, { "id": 1216, - "planId": 43, + "planId": 42, "cardId": 15182, - "weight": 200 + "weight": 250 }, { "id": 1217, - "planId": 43, + "planId": 42, "cardId": 18111, - "weight": 200 + "weight": 250 }, { "id": 1218, - "planId": 43, + "planId": 42, "cardId": 18121, - "weight": 200 + "weight": 250 }, { "id": 1219, - "planId": 43, + "planId": 42, "cardId": 18131, - "weight": 200 + "weight": 250 }, { "id": 1220, - "planId": 43, + "planId": 42, "cardId": 18141, - "weight": 200 + "weight": 250 }, { "id": 1221, - "planId": 43, + "planId": 42, "cardId": 18151, - "weight": 200 + "weight": 250 }, { "id": 1222, - "planId": 43, + "planId": 42, "cardId": 18161, - "weight": 200 + "weight": 250 }, { "id": 1223, - "planId": 43, + "planId": 42, "cardId": 18171, - "weight": 200 + "weight": 250 }, { "id": 1224, - "planId": 43, + "planId": 42, "cardId": 18181, - "weight": 200 + "weight": 250 }, { "id": 1225, - "planId": 43, + "planId": 42, "cardId": 18112, - "weight": 200 + "weight": 250 }, { "id": 1226, - "planId": 43, + "planId": 42, "cardId": 18122, - "weight": 200 + "weight": 250 }, { "id": 1227, - "planId": 43, + "planId": 42, "cardId": 18132, - "weight": 200 + "weight": 250 }, { "id": 1228, - "planId": 43, + "planId": 42, "cardId": 18142, - "weight": 200 + "weight": 250 }, { "id": 1229, - "planId": 43, + "planId": 42, "cardId": 18152, - "weight": 200 + "weight": 250 }, { "id": 1230, - "planId": 43, + "planId": 42, "cardId": 18162, - "weight": 200 + "weight": 250 }, { "id": 1231, - "planId": 43, + "planId": 42, "cardId": 18172, - "weight": 200 + "weight": 250 }, { "id": 1232, - "planId": 43, + "planId": 42, "cardId": 18182, - "weight": 200 + "weight": 250 }, { "id": 1233, - "planId": 43, + "planId": 42, "cardId": 13111, - "weight": 200 + "weight": 250 }, { "id": 1234, - "planId": 43, + "planId": 42, "cardId": 13121, - "weight": 200 + "weight": 250 }, { "id": 1235, - "planId": 43, + "planId": 42, "cardId": 13131, - "weight": 200 + "weight": 250 }, { "id": 1236, - "planId": 43, + "planId": 42, "cardId": 13141, - "weight": 200 + "weight": 250 }, { "id": 1237, - "planId": 43, + "planId": 42, "cardId": 13151, - "weight": 200 + "weight": 250 }, { "id": 1238, - "planId": 43, + "planId": 42, "cardId": 13161, - "weight": 200 + "weight": 250 }, { "id": 1239, - "planId": 43, + "planId": 42, "cardId": 13171, - "weight": 200 + "weight": 250 }, { "id": 1240, - "planId": 43, + "planId": 42, "cardId": 13181, - "weight": 200 + "weight": 250 }, { "id": 1241, - "planId": 43, + "planId": 42, "cardId": 13112, - "weight": 200 + "weight": 250 }, { "id": 1242, - "planId": 43, + "planId": 42, "cardId": 13122, - "weight": 200 + "weight": 250 }, { "id": 1243, - "planId": 43, + "planId": 42, "cardId": 13132, - "weight": 200 + "weight": 250 }, { "id": 1244, - "planId": 43, + "planId": 42, "cardId": 13142, - "weight": 200 + "weight": 250 }, { "id": 1245, - "planId": 43, + "planId": 42, "cardId": 13152, - "weight": 200 + "weight": 250 }, { "id": 1246, - "planId": 43, + "planId": 42, "cardId": 13162, - "weight": 200 + "weight": 250 }, { "id": 1247, - "planId": 43, + "planId": 42, "cardId": 13172, - "weight": 200 + "weight": 250 }, { "id": 1248, - "planId": 43, + "planId": 42, "cardId": 13182, - "weight": 200 + "weight": 250 }, { "id": 1249, - "planId": 43, + "planId": 42, "cardId": 12111, - "weight": 200 + "weight": 250 }, { "id": 1250, - "planId": 43, + "planId": 42, "cardId": 12121, - "weight": 200 + "weight": 250 }, { "id": 1251, - "planId": 43, + "planId": 42, "cardId": 12131, - "weight": 200 + "weight": 250 }, { "id": 1252, - "planId": 43, + "planId": 42, "cardId": 12141, - "weight": 200 + "weight": 250 }, { "id": 1253, - "planId": 43, + "planId": 42, "cardId": 12151, - "weight": 200 + "weight": 250 }, { "id": 1254, - "planId": 43, + "planId": 42, "cardId": 12161, - "weight": 200 + "weight": 250 }, { "id": 1255, - "planId": 43, + "planId": 42, "cardId": 12171, - "weight": 200 + "weight": 250 }, { "id": 1256, - "planId": 43, + "planId": 42, "cardId": 12181, - "weight": 200 + "weight": 250 }, { "id": 1257, - "planId": 43, + "planId": 42, "cardId": 12112, - "weight": 200 + "weight": 250 }, { "id": 1258, - "planId": 43, + "planId": 42, "cardId": 12122, - "weight": 200 + "weight": 250 }, { "id": 1259, - "planId": 43, + "planId": 42, "cardId": 12132, - "weight": 200 + "weight": 250 }, { "id": 1260, - "planId": 43, + "planId": 42, "cardId": 12142, - "weight": 200 + "weight": 250 }, { "id": 1261, - "planId": 43, + "planId": 42, "cardId": 12152, - "weight": 200 + "weight": 250 }, { "id": 1262, - "planId": 43, + "planId": 42, "cardId": 12162, - "weight": 200 + "weight": 250 }, { "id": 1263, - "planId": 43, + "planId": 42, "cardId": 12172, - "weight": 200 + "weight": 250 }, { "id": 1264, - "planId": 43, + "planId": 42, "cardId": 12182, - "weight": 200 + "weight": 250 }, { "id": 1265, - "planId": 43, + "planId": 42, "cardId": 16111, - "weight": 200 + "weight": 250 }, { "id": 1266, - "planId": 43, + "planId": 42, "cardId": 16121, - "weight": 200 + "weight": 250 }, { "id": 1267, - "planId": 43, + "planId": 42, "cardId": 16131, - "weight": 200 + "weight": 250 }, { "id": 1268, - "planId": 43, + "planId": 42, "cardId": 16141, - "weight": 200 + "weight": 250 }, { "id": 1269, - "planId": 43, + "planId": 42, "cardId": 16151, - "weight": 200 + "weight": 250 }, { "id": 1270, - "planId": 43, + "planId": 42, "cardId": 16161, - "weight": 200 + "weight": 250 }, { "id": 1271, - "planId": 43, + "planId": 42, "cardId": 16171, - "weight": 200 + "weight": 250 }, { "id": 1272, - "planId": 43, + "planId": 42, "cardId": 16181, - "weight": 200 + "weight": 250 }, { "id": 1273, - "planId": 43, + "planId": 42, "cardId": 16112, - "weight": 200 + "weight": 250 }, { "id": 1274, - "planId": 43, + "planId": 42, "cardId": 16122, - "weight": 200 + "weight": 250 }, { "id": 1275, - "planId": 43, + "planId": 42, "cardId": 16132, - "weight": 200 + "weight": 250 }, { "id": 1276, - "planId": 43, + "planId": 42, "cardId": 16142, - "weight": 200 + "weight": 250 }, { "id": 1277, - "planId": 43, + "planId": 42, "cardId": 16152, - "weight": 200 + "weight": 250 }, { "id": 1278, - "planId": 43, + "planId": 42, "cardId": 16162, - "weight": 200 + "weight": 250 }, { "id": 1279, - "planId": 43, + "planId": 42, "cardId": 16172, - "weight": 200 + "weight": 250 }, { "id": 1280, - "planId": 43, + "planId": 42, "cardId": 16182, - "weight": 200 + "weight": 250 }, { "id": 1281, - "planId": 43, + "planId": 42, "cardId": 11211, "weight": 300 }, { "id": 1282, - "planId": 43, + "planId": 42, "cardId": 11221, "weight": 300 }, { "id": 1283, - "planId": 43, + "planId": 42, "cardId": 11231, "weight": 300 }, { "id": 1284, - "planId": 43, + "planId": 42, "cardId": 11241, "weight": 300 }, { "id": 1285, - "planId": 43, + "planId": 42, "cardId": 11251, "weight": 300 }, { "id": 1286, - "planId": 43, + "planId": 42, "cardId": 11261, "weight": 300 }, { "id": 1287, - "planId": 43, + "planId": 42, "cardId": 11212, "weight": 300 }, { "id": 1288, - "planId": 43, + "planId": 42, "cardId": 11222, "weight": 300 }, { "id": 1289, - "planId": 43, + "planId": 42, "cardId": 11232, "weight": 300 }, { "id": 1290, - "planId": 43, + "planId": 42, "cardId": 11242, "weight": 300 }, { "id": 1291, - "planId": 43, + "planId": 42, "cardId": 11252, "weight": 300 }, { "id": 1292, - "planId": 43, + "planId": 42, "cardId": 11262, "weight": 300 }, { "id": 1293, - "planId": 43, + "planId": 42, "cardId": 14211, "weight": 300 }, { "id": 1294, - "planId": 43, + "planId": 42, "cardId": 14221, "weight": 300 }, { "id": 1295, - "planId": 43, + "planId": 42, "cardId": 14231, "weight": 300 }, { "id": 1296, - "planId": 43, + "planId": 42, "cardId": 14241, "weight": 300 }, { "id": 1297, - "planId": 43, + "planId": 42, "cardId": 14251, "weight": 300 }, { "id": 1298, - "planId": 43, + "planId": 42, "cardId": 14261, "weight": 300 }, { "id": 1299, - "planId": 43, + "planId": 42, "cardId": 14212, "weight": 300 }, { "id": 1300, - "planId": 43, + "planId": 42, "cardId": 14222, "weight": 300 }, { "id": 1301, - "planId": 43, + "planId": 42, "cardId": 14232, "weight": 300 }, { "id": 1302, - "planId": 43, + "planId": 42, "cardId": 14242, "weight": 300 }, { "id": 1303, - "planId": 43, + "planId": 42, "cardId": 14252, "weight": 300 }, { "id": 1304, - "planId": 43, + "planId": 42, "cardId": 14262, "weight": 300 }, { "id": 1305, - "planId": 43, + "planId": 42, "cardId": 17211, "weight": 300 }, { "id": 1306, - "planId": 43, + "planId": 42, "cardId": 17221, "weight": 300 }, { "id": 1307, - "planId": 43, + "planId": 42, "cardId": 17231, "weight": 300 }, { "id": 1308, - "planId": 43, + "planId": 42, "cardId": 17241, "weight": 300 }, { "id": 1309, - "planId": 43, + "planId": 42, "cardId": 17251, "weight": 300 }, { "id": 1310, - "planId": 43, + "planId": 42, "cardId": 17261, "weight": 300 }, { "id": 1311, - "planId": 43, + "planId": 42, "cardId": 17212, "weight": 300 }, { "id": 1312, - "planId": 43, + "planId": 42, "cardId": 17222, "weight": 300 }, { "id": 1313, - "planId": 43, + "planId": 42, "cardId": 17232, "weight": 300 }, { "id": 1314, - "planId": 43, + "planId": 42, "cardId": 17242, "weight": 300 }, { "id": 1315, - "planId": 43, + "planId": 42, "cardId": 17252, "weight": 300 }, { "id": 1316, - "planId": 43, + "planId": 42, "cardId": 17262, "weight": 300 }, { "id": 1317, - "planId": 43, + "planId": 42, "cardId": 15211, "weight": 300 }, { "id": 1318, - "planId": 43, + "planId": 42, "cardId": 15221, "weight": 300 }, { "id": 1319, - "planId": 43, + "planId": 42, "cardId": 15231, "weight": 300 }, { "id": 1320, - "planId": 43, + "planId": 42, "cardId": 15241, "weight": 300 }, { "id": 1321, - "planId": 43, + "planId": 42, "cardId": 15251, "weight": 300 }, { "id": 1322, - "planId": 43, + "planId": 42, "cardId": 15261, "weight": 300 }, { "id": 1323, - "planId": 43, + "planId": 42, "cardId": 15212, "weight": 300 }, { "id": 1324, - "planId": 43, + "planId": 42, "cardId": 15222, "weight": 300 }, { "id": 1325, - "planId": 43, + "planId": 42, "cardId": 15232, "weight": 300 }, { "id": 1326, - "planId": 43, + "planId": 42, "cardId": 15242, "weight": 300 }, { "id": 1327, - "planId": 43, + "planId": 42, "cardId": 15252, "weight": 300 }, { "id": 1328, - "planId": 43, + "planId": 42, "cardId": 15262, "weight": 300 }, { "id": 1329, - "planId": 43, + "planId": 42, "cardId": 18211, "weight": 300 }, { "id": 1330, - "planId": 43, + "planId": 42, "cardId": 18221, "weight": 300 }, { "id": 1331, - "planId": 43, + "planId": 42, "cardId": 18231, "weight": 300 }, { "id": 1332, - "planId": 43, + "planId": 42, "cardId": 18241, "weight": 300 }, { "id": 1333, - "planId": 43, + "planId": 42, "cardId": 18251, "weight": 300 }, { "id": 1334, - "planId": 43, + "planId": 42, "cardId": 18261, "weight": 300 }, { "id": 1335, - "planId": 43, + "planId": 42, "cardId": 18212, "weight": 300 }, { "id": 1336, - "planId": 43, + "planId": 42, "cardId": 18222, "weight": 300 }, { "id": 1337, - "planId": 43, + "planId": 42, "cardId": 18232, "weight": 300 }, { "id": 1338, - "planId": 43, + "planId": 42, "cardId": 18242, "weight": 300 }, { "id": 1339, - "planId": 43, + "planId": 42, "cardId": 18252, "weight": 300 }, { "id": 1340, - "planId": 43, + "planId": 42, "cardId": 18262, "weight": 300 }, { "id": 1341, - "planId": 43, + "planId": 42, "cardId": 13211, "weight": 300 }, { "id": 1342, - "planId": 43, + "planId": 42, "cardId": 13221, "weight": 300 }, { "id": 1343, - "planId": 43, + "planId": 42, "cardId": 13231, "weight": 300 }, { "id": 1344, - "planId": 43, + "planId": 42, "cardId": 13241, "weight": 300 }, { "id": 1345, - "planId": 43, + "planId": 42, "cardId": 13251, "weight": 300 }, { "id": 1346, - "planId": 43, + "planId": 42, "cardId": 13261, "weight": 300 }, { "id": 1347, - "planId": 43, + "planId": 42, "cardId": 13212, "weight": 300 }, { "id": 1348, - "planId": 43, + "planId": 42, "cardId": 13222, "weight": 300 }, { "id": 1349, - "planId": 43, + "planId": 42, "cardId": 13232, "weight": 300 }, { "id": 1350, - "planId": 43, + "planId": 42, "cardId": 13242, "weight": 300 }, { "id": 1351, - "planId": 43, + "planId": 42, "cardId": 13252, "weight": 300 }, { "id": 1352, - "planId": 43, + "planId": 42, "cardId": 13262, "weight": 300 }, { "id": 1353, - "planId": 43, + "planId": 42, "cardId": 12211, "weight": 300 }, { "id": 1354, - "planId": 43, + "planId": 42, "cardId": 12221, "weight": 300 }, { "id": 1355, - "planId": 43, + "planId": 42, "cardId": 12231, "weight": 300 }, { "id": 1356, - "planId": 43, + "planId": 42, "cardId": 12241, "weight": 300 }, { "id": 1357, - "planId": 43, + "planId": 42, "cardId": 12251, "weight": 300 }, { "id": 1358, - "planId": 43, + "planId": 42, "cardId": 12261, "weight": 300 }, { "id": 1359, - "planId": 43, + "planId": 42, "cardId": 12212, "weight": 300 }, { "id": 1360, - "planId": 43, + "planId": 42, "cardId": 12222, "weight": 300 }, { "id": 1361, - "planId": 43, + "planId": 42, "cardId": 12232, "weight": 300 }, { "id": 1362, - "planId": 43, + "planId": 42, "cardId": 12242, "weight": 300 }, { "id": 1363, - "planId": 43, + "planId": 42, "cardId": 12252, "weight": 300 }, { "id": 1364, - "planId": 43, + "planId": 42, "cardId": 12262, "weight": 300 }, { "id": 1365, - "planId": 43, + "planId": 42, "cardId": 16211, "weight": 300 }, { "id": 1366, - "planId": 43, + "planId": 42, "cardId": 16221, "weight": 300 }, { "id": 1367, - "planId": 43, + "planId": 42, "cardId": 16231, "weight": 300 }, { "id": 1368, - "planId": 43, + "planId": 42, "cardId": 16241, "weight": 300 }, { "id": 1369, - "planId": 43, + "planId": 42, "cardId": 16251, "weight": 300 }, { "id": 1370, - "planId": 43, + "planId": 42, "cardId": 16261, "weight": 300 }, { "id": 1371, - "planId": 43, + "planId": 42, "cardId": 16212, "weight": 300 }, { "id": 1372, - "planId": 43, + "planId": 42, "cardId": 16222, "weight": 300 }, { "id": 1373, - "planId": 43, + "planId": 42, "cardId": 16232, "weight": 300 }, { "id": 1374, - "planId": 43, + "planId": 42, "cardId": 16242, "weight": 300 }, { "id": 1375, - "planId": 43, + "planId": 42, "cardId": 16252, "weight": 300 }, { "id": 1376, - "planId": 43, + "planId": 42, "cardId": 16262, "weight": 300 }, { "id": 1377, - "planId": 43, + "planId": 42, "cardId": 11311, - "weight": 150 + "weight": 50 }, { "id": 1378, - "planId": 43, + "planId": 42, "cardId": 11321, - "weight": 150 + "weight": 50 }, { "id": 1379, - "planId": 43, + "planId": 42, "cardId": 11331, - "weight": 150 + "weight": 50 }, { "id": 1380, - "planId": 43, + "planId": 42, "cardId": 11341, - "weight": 150 + "weight": 50 }, { "id": 1381, - "planId": 43, + "planId": 42, "cardId": 11312, - "weight": 150 + "weight": 50 }, { "id": 1382, - "planId": 43, + "planId": 42, "cardId": 11322, - "weight": 150 + "weight": 50 }, { "id": 1383, - "planId": 43, + "planId": 42, "cardId": 11332, - "weight": 150 + "weight": 50 }, { "id": 1384, - "planId": 43, + "planId": 42, "cardId": 11342, - "weight": 150 + "weight": 50 }, { "id": 1385, - "planId": 43, + "planId": 42, "cardId": 14311, - "weight": 150 + "weight": 50 }, { "id": 1386, - "planId": 43, + "planId": 42, "cardId": 14321, - "weight": 150 + "weight": 50 }, { "id": 1387, - "planId": 43, + "planId": 42, "cardId": 14331, - "weight": 150 + "weight": 50 }, { "id": 1388, - "planId": 43, + "planId": 42, "cardId": 14341, - "weight": 150 + "weight": 50 }, { "id": 1389, - "planId": 43, + "planId": 42, "cardId": 14312, - "weight": 150 + "weight": 50 }, { "id": 1390, - "planId": 43, + "planId": 42, "cardId": 14322, - "weight": 150 + "weight": 50 }, { "id": 1391, - "planId": 43, + "planId": 42, "cardId": 14332, - "weight": 150 + "weight": 50 }, { "id": 1392, - "planId": 43, + "planId": 42, "cardId": 14342, - "weight": 150 + "weight": 50 }, { "id": 1393, - "planId": 43, + "planId": 42, "cardId": 17311, - "weight": 150 + "weight": 50 }, { "id": 1394, - "planId": 43, + "planId": 42, "cardId": 17321, - "weight": 150 + "weight": 50 }, { "id": 1395, - "planId": 43, + "planId": 42, "cardId": 17331, - "weight": 150 + "weight": 50 }, { "id": 1396, - "planId": 43, + "planId": 42, "cardId": 17341, - "weight": 150 + "weight": 50 }, { "id": 1397, - "planId": 43, + "planId": 42, "cardId": 17312, - "weight": 150 + "weight": 50 }, { "id": 1398, - "planId": 43, + "planId": 42, "cardId": 17322, - "weight": 150 + "weight": 50 }, { "id": 1399, - "planId": 43, + "planId": 42, "cardId": 17332, - "weight": 150 + "weight": 50 }, { "id": 1400, - "planId": 43, + "planId": 42, "cardId": 17342, - "weight": 150 + "weight": 50 }, { "id": 1401, - "planId": 43, + "planId": 42, "cardId": 15311, - "weight": 150 + "weight": 50 }, { "id": 1402, - "planId": 43, + "planId": 42, "cardId": 15321, - "weight": 150 + "weight": 50 }, { "id": 1403, - "planId": 43, + "planId": 42, "cardId": 15331, - "weight": 150 + "weight": 50 }, { "id": 1404, - "planId": 43, + "planId": 42, "cardId": 15341, - "weight": 150 + "weight": 50 }, { "id": 1405, - "planId": 43, + "planId": 42, "cardId": 15312, - "weight": 150 + "weight": 50 }, { "id": 1406, - "planId": 43, + "planId": 42, "cardId": 15322, - "weight": 150 + "weight": 50 }, { "id": 1407, - "planId": 43, + "planId": 42, "cardId": 15332, - "weight": 150 + "weight": 50 }, { "id": 1408, - "planId": 43, + "planId": 42, "cardId": 15342, - "weight": 150 + "weight": 50 }, { "id": 1409, - "planId": 43, + "planId": 42, "cardId": 18311, - "weight": 150 + "weight": 50 }, { "id": 1410, - "planId": 43, + "planId": 42, "cardId": 18321, - "weight": 150 + "weight": 50 }, { "id": 1411, - "planId": 43, + "planId": 42, "cardId": 18331, - "weight": 150 + "weight": 50 }, { "id": 1412, - "planId": 43, + "planId": 42, "cardId": 18341, - "weight": 150 + "weight": 50 }, { "id": 1413, - "planId": 43, + "planId": 42, "cardId": 18312, - "weight": 150 + "weight": 50 }, { "id": 1414, - "planId": 43, + "planId": 42, "cardId": 18322, - "weight": 150 + "weight": 50 }, { "id": 1415, - "planId": 43, + "planId": 42, "cardId": 18332, - "weight": 150 + "weight": 50 }, { "id": 1416, - "planId": 43, + "planId": 42, "cardId": 18342, - "weight": 150 + "weight": 50 }, { "id": 1417, - "planId": 43, + "planId": 42, "cardId": 13311, - "weight": 150 + "weight": 50 }, { "id": 1418, - "planId": 43, + "planId": 42, "cardId": 13321, - "weight": 150 + "weight": 50 }, { "id": 1419, - "planId": 43, + "planId": 42, "cardId": 13331, - "weight": 150 + "weight": 50 }, { "id": 1420, - "planId": 43, + "planId": 42, "cardId": 13341, - "weight": 150 + "weight": 50 }, { "id": 1421, - "planId": 43, + "planId": 42, "cardId": 13312, - "weight": 150 + "weight": 50 }, { "id": 1422, - "planId": 43, + "planId": 42, "cardId": 13322, - "weight": 150 + "weight": 50 }, { "id": 1423, - "planId": 43, + "planId": 42, "cardId": 13332, - "weight": 150 + "weight": 50 }, { "id": 1424, - "planId": 43, + "planId": 42, "cardId": 13342, - "weight": 150 + "weight": 50 }, { "id": 1425, - "planId": 43, + "planId": 42, "cardId": 12311, - "weight": 150 + "weight": 50 }, { "id": 1426, - "planId": 43, + "planId": 42, "cardId": 12321, - "weight": 150 + "weight": 50 }, { "id": 1427, - "planId": 43, + "planId": 42, "cardId": 12331, - "weight": 150 + "weight": 50 }, { "id": 1428, - "planId": 43, + "planId": 42, "cardId": 12341, - "weight": 150 + "weight": 50 }, { "id": 1429, - "planId": 43, + "planId": 42, "cardId": 12312, - "weight": 150 + "weight": 50 }, { "id": 1430, - "planId": 43, + "planId": 42, "cardId": 12322, - "weight": 150 + "weight": 50 }, { "id": 1431, - "planId": 43, + "planId": 42, "cardId": 12332, - "weight": 150 + "weight": 50 }, { "id": 1432, - "planId": 43, + "planId": 42, "cardId": 12342, - "weight": 150 + "weight": 50 }, { "id": 1433, - "planId": 43, + "planId": 42, "cardId": 16311, - "weight": 150 + "weight": 50 }, { "id": 1434, - "planId": 43, + "planId": 42, "cardId": 16321, - "weight": 150 + "weight": 50 }, { "id": 1435, - "planId": 43, + "planId": 42, "cardId": 16331, - "weight": 150 + "weight": 50 }, { "id": 1436, - "planId": 43, + "planId": 42, "cardId": 16341, - "weight": 150 + "weight": 50 }, { "id": 1437, - "planId": 43, + "planId": 42, "cardId": 16312, - "weight": 150 + "weight": 50 }, { "id": 1438, - "planId": 43, + "planId": 42, "cardId": 16322, - "weight": 150 + "weight": 50 }, { "id": 1439, - "planId": 43, + "planId": 42, "cardId": 16332, - "weight": 150 + "weight": 50 }, { "id": 1440, - "planId": 43, + "planId": 42, "cardId": 16342, - "weight": 150 + "weight": 50 }, { "id": 1441, "planId": 43, "cardId": 11111, - "weight": 90 + "weight": 250 }, { "id": 1442, "planId": 43, "cardId": 11121, - "weight": 90 + "weight": 250 }, { "id": 1443, "planId": 43, "cardId": 11131, - "weight": 90 + "weight": 250 }, { "id": 1444, "planId": 43, "cardId": 11141, - "weight": 90 + "weight": 250 }, { "id": 1445, "planId": 43, "cardId": 11151, - "weight": 90 + "weight": 250 }, { "id": 1446, "planId": 43, "cardId": 11161, - "weight": 90 + "weight": 250 }, { "id": 1447, "planId": 43, "cardId": 11171, - "weight": 90 + "weight": 250 }, { "id": 1448, "planId": 43, "cardId": 11181, - "weight": 90 + "weight": 250 }, { "id": 1449, "planId": 43, "cardId": 11112, - "weight": 90 + "weight": 250 }, { "id": 1450, "planId": 43, "cardId": 11122, - "weight": 90 + "weight": 250 }, { "id": 1451, "planId": 43, "cardId": 11132, - "weight": 90 + "weight": 250 }, { "id": 1452, "planId": 43, "cardId": 11142, - "weight": 90 + "weight": 250 }, { "id": 1453, "planId": 43, "cardId": 11152, - "weight": 90 + "weight": 250 }, { "id": 1454, "planId": 43, "cardId": 11162, - "weight": 90 + "weight": 250 }, { "id": 1455, "planId": 43, "cardId": 11172, - "weight": 90 + "weight": 250 }, { "id": 1456, "planId": 43, "cardId": 11182, - "weight": 90 + "weight": 250 }, { "id": 1457, "planId": 43, "cardId": 14111, - "weight": 90 + "weight": 250 }, { "id": 1458, "planId": 43, "cardId": 14121, - "weight": 90 + "weight": 250 }, { "id": 1459, "planId": 43, "cardId": 14131, - "weight": 90 + "weight": 250 }, { "id": 1460, "planId": 43, "cardId": 14141, - "weight": 90 + "weight": 250 }, { "id": 1461, "planId": 43, "cardId": 14151, - "weight": 90 + "weight": 250 }, { "id": 1462, "planId": 43, "cardId": 14161, - "weight": 90 + "weight": 250 }, { "id": 1463, "planId": 43, "cardId": 14171, - "weight": 90 + "weight": 250 }, { "id": 1464, "planId": 43, "cardId": 14181, - "weight": 90 + "weight": 250 }, { "id": 1465, "planId": 43, "cardId": 14112, - "weight": 90 + "weight": 250 }, { "id": 1466, "planId": 43, "cardId": 14122, - "weight": 90 + "weight": 250 }, { "id": 1467, "planId": 43, "cardId": 14132, - "weight": 90 + "weight": 250 }, { "id": 1468, "planId": 43, "cardId": 14142, - "weight": 90 + "weight": 250 }, { "id": 1469, "planId": 43, "cardId": 14152, - "weight": 90 + "weight": 250 }, { "id": 1470, "planId": 43, "cardId": 14162, - "weight": 90 + "weight": 250 }, { "id": 1471, "planId": 43, "cardId": 14172, - "weight": 90 + "weight": 250 }, { "id": 1472, "planId": 43, "cardId": 14182, - "weight": 90 + "weight": 250 }, { "id": 1473, "planId": 43, "cardId": 17111, - "weight": 90 + "weight": 250 }, { "id": 1474, "planId": 43, "cardId": 17121, - "weight": 90 + "weight": 250 }, { "id": 1475, "planId": 43, "cardId": 17131, - "weight": 90 + "weight": 250 }, { "id": 1476, "planId": 43, "cardId": 17141, - "weight": 90 + "weight": 250 }, { "id": 1477, "planId": 43, "cardId": 17151, - "weight": 90 + "weight": 250 }, { "id": 1478, "planId": 43, "cardId": 17161, - "weight": 90 + "weight": 250 }, { "id": 1479, "planId": 43, "cardId": 17171, - "weight": 90 + "weight": 250 }, { "id": 1480, "planId": 43, "cardId": 17181, - "weight": 90 + "weight": 250 }, { "id": 1481, "planId": 43, "cardId": 17112, - "weight": 90 + "weight": 250 }, { "id": 1482, "planId": 43, "cardId": 17122, - "weight": 90 + "weight": 250 }, { "id": 1483, "planId": 43, "cardId": 17132, - "weight": 90 + "weight": 250 }, { "id": 1484, "planId": 43, "cardId": 17172, - "weight": 90 + "weight": 250 }, { "id": 1485, "planId": 43, "cardId": 17152, - "weight": 90 + "weight": 250 }, { "id": 1486, "planId": 43, "cardId": 17162, - "weight": 90 + "weight": 250 }, { "id": 1487, "planId": 43, "cardId": 17172, - "weight": 90 + "weight": 250 }, { "id": 1488, "planId": 43, "cardId": 17182, - "weight": 90 + "weight": 250 }, { "id": 1489, "planId": 43, "cardId": 15111, - "weight": 90 + "weight": 250 }, { "id": 1490, "planId": 43, "cardId": 15121, - "weight": 90 + "weight": 250 }, { "id": 1491, "planId": 43, "cardId": 15131, - "weight": 90 + "weight": 250 }, { "id": 1492, "planId": 43, "cardId": 15141, - "weight": 90 + "weight": 250 }, { "id": 1493, "planId": 43, "cardId": 15151, - "weight": 90 + "weight": 250 }, { "id": 1494, "planId": 43, "cardId": 15161, - "weight": 90 + "weight": 250 }, { "id": 1495, "planId": 43, "cardId": 15171, - "weight": 90 + "weight": 250 }, { "id": 1496, "planId": 43, "cardId": 15181, - "weight": 90 + "weight": 250 }, { "id": 1497, "planId": 43, "cardId": 15112, - "weight": 90 + "weight": 250 }, { "id": 1498, "planId": 43, "cardId": 15122, - "weight": 90 + "weight": 250 }, { "id": 1499, "planId": 43, "cardId": 15132, - "weight": 90 + "weight": 250 }, { "id": 1500, "planId": 43, "cardId": 15142, - "weight": 90 + "weight": 250 }, { "id": 1501, "planId": 43, "cardId": 15152, - "weight": 90 + "weight": 250 }, { "id": 1502, "planId": 43, "cardId": 15162, - "weight": 90 + "weight": 250 }, { "id": 1503, "planId": 43, "cardId": 15172, - "weight": 90 + "weight": 250 }, { "id": 1504, "planId": 43, "cardId": 15182, - "weight": 90 + "weight": 250 }, { "id": 1505, "planId": 43, "cardId": 18111, - "weight": 90 + "weight": 250 }, { "id": 1506, "planId": 43, "cardId": 18121, - "weight": 90 + "weight": 250 }, { "id": 1507, "planId": 43, "cardId": 18131, - "weight": 90 + "weight": 250 }, { "id": 1508, "planId": 43, "cardId": 18141, - "weight": 90 + "weight": 250 }, { "id": 1509, "planId": 43, "cardId": 18151, - "weight": 90 + "weight": 250 }, { "id": 1510, "planId": 43, "cardId": 18161, - "weight": 90 + "weight": 250 }, { "id": 1511, "planId": 43, "cardId": 18171, - "weight": 90 + "weight": 250 }, { "id": 1512, "planId": 43, "cardId": 18181, - "weight": 90 + "weight": 250 }, { "id": 1513, "planId": 43, "cardId": 18112, - "weight": 90 + "weight": 250 }, { "id": 1514, "planId": 43, "cardId": 18122, - "weight": 90 + "weight": 250 }, { "id": 1515, "planId": 43, "cardId": 18132, - "weight": 90 + "weight": 250 }, { "id": 1516, "planId": 43, "cardId": 18142, - "weight": 90 + "weight": 250 }, { "id": 1517, "planId": 43, "cardId": 18152, - "weight": 90 + "weight": 250 }, { "id": 1518, "planId": 43, "cardId": 18162, - "weight": 90 + "weight": 250 }, { "id": 1519, "planId": 43, "cardId": 18172, - "weight": 90 + "weight": 250 }, { "id": 1520, "planId": 43, "cardId": 18182, - "weight": 90 + "weight": 250 }, { "id": 1521, "planId": 43, "cardId": 13111, - "weight": 90 + "weight": 250 }, { "id": 1522, "planId": 43, "cardId": 13121, - "weight": 90 + "weight": 250 }, { "id": 1523, "planId": 43, "cardId": 13131, - "weight": 90 + "weight": 250 }, { "id": 1524, "planId": 43, "cardId": 13141, - "weight": 90 + "weight": 250 }, { "id": 1525, "planId": 43, "cardId": 13151, - "weight": 90 + "weight": 250 }, { "id": 1526, "planId": 43, "cardId": 13161, - "weight": 90 + "weight": 250 }, { "id": 1527, "planId": 43, "cardId": 13171, - "weight": 90 + "weight": 250 }, { "id": 1528, "planId": 43, "cardId": 13181, - "weight": 90 + "weight": 250 }, { "id": 1529, "planId": 43, "cardId": 13112, - "weight": 90 + "weight": 250 }, { "id": 1530, "planId": 43, "cardId": 13122, - "weight": 90 + "weight": 250 }, { "id": 1531, "planId": 43, "cardId": 13132, - "weight": 90 + "weight": 250 }, { "id": 1532, "planId": 43, "cardId": 13142, - "weight": 90 + "weight": 250 }, { "id": 1533, "planId": 43, "cardId": 13152, - "weight": 90 + "weight": 250 }, { "id": 1534, "planId": 43, "cardId": 13162, - "weight": 90 + "weight": 250 }, { "id": 1535, "planId": 43, "cardId": 13172, - "weight": 90 + "weight": 250 }, { "id": 1536, "planId": 43, "cardId": 13182, - "weight": 90 + "weight": 250 }, { "id": 1537, "planId": 43, "cardId": 12111, - "weight": 90 + "weight": 250 }, { "id": 1538, "planId": 43, "cardId": 12121, - "weight": 90 + "weight": 250 }, { "id": 1539, "planId": 43, "cardId": 12131, - "weight": 90 + "weight": 250 }, { "id": 1540, "planId": 43, "cardId": 12141, - "weight": 90 + "weight": 250 }, { "id": 1541, "planId": 43, "cardId": 12151, - "weight": 90 + "weight": 250 }, { "id": 1542, "planId": 43, "cardId": 12161, - "weight": 90 + "weight": 250 }, { "id": 1543, "planId": 43, "cardId": 12171, - "weight": 90 + "weight": 250 }, { "id": 1544, "planId": 43, "cardId": 12181, - "weight": 90 + "weight": 250 }, { "id": 1545, "planId": 43, "cardId": 12112, - "weight": 90 + "weight": 250 }, { "id": 1546, "planId": 43, "cardId": 12122, - "weight": 90 + "weight": 250 }, { "id": 1547, "planId": 43, "cardId": 12132, - "weight": 90 + "weight": 250 }, { "id": 1548, "planId": 43, "cardId": 12142, - "weight": 90 + "weight": 250 }, { "id": 1549, "planId": 43, "cardId": 12152, - "weight": 90 + "weight": 250 }, { "id": 1550, "planId": 43, "cardId": 12162, - "weight": 90 + "weight": 250 }, { "id": 1551, "planId": 43, "cardId": 12172, - "weight": 90 + "weight": 250 }, { "id": 1552, "planId": 43, "cardId": 12182, - "weight": 90 + "weight": 250 }, { "id": 1553, "planId": 43, "cardId": 16111, - "weight": 90 + "weight": 250 }, { "id": 1554, "planId": 43, "cardId": 16121, - "weight": 90 + "weight": 250 }, { "id": 1555, "planId": 43, "cardId": 16131, - "weight": 90 + "weight": 250 }, { "id": 1556, "planId": 43, "cardId": 16141, - "weight": 90 + "weight": 250 }, { "id": 1557, "planId": 43, "cardId": 16151, - "weight": 90 + "weight": 250 }, { "id": 1558, "planId": 43, "cardId": 16161, - "weight": 90 + "weight": 250 }, { "id": 1559, "planId": 43, "cardId": 16171, - "weight": 90 + "weight": 250 }, { "id": 1560, "planId": 43, "cardId": 16181, - "weight": 90 + "weight": 250 }, { "id": 1561, "planId": 43, "cardId": 16112, - "weight": 90 + "weight": 250 }, { "id": 1562, "planId": 43, "cardId": 16122, - "weight": 90 + "weight": 250 }, { "id": 1563, "planId": 43, "cardId": 16132, - "weight": 90 + "weight": 250 }, { "id": 1564, "planId": 43, "cardId": 16142, - "weight": 90 + "weight": 250 }, { "id": 1565, "planId": 43, "cardId": 16152, - "weight": 90 + "weight": 250 }, { "id": 1566, "planId": 43, "cardId": 16162, - "weight": 90 + "weight": 250 }, { "id": 1567, "planId": 43, "cardId": 16172, - "weight": 90 + "weight": 250 }, { "id": 1568, "planId": 43, "cardId": 16182, - "weight": 90 + "weight": 250 }, { "id": 1569, "planId": 43, "cardId": 11211, - "weight": 160 + "weight": 300 }, { "id": 1570, "planId": 43, "cardId": 11221, - "weight": 160 + "weight": 300 }, { "id": 1571, "planId": 43, "cardId": 11231, - "weight": 160 + "weight": 300 }, { "id": 1572, "planId": 43, "cardId": 11241, - "weight": 160 + "weight": 300 }, { "id": 1573, "planId": 43, "cardId": 11251, - "weight": 160 + "weight": 300 }, { "id": 1574, "planId": 43, "cardId": 11261, - "weight": 160 + "weight": 300 }, { "id": 1575, "planId": 43, "cardId": 11212, - "weight": 160 + "weight": 300 }, { "id": 1576, "planId": 43, "cardId": 11222, - "weight": 160 + "weight": 300 }, { "id": 1577, "planId": 43, "cardId": 11232, - "weight": 160 + "weight": 300 }, { "id": 1578, "planId": 43, "cardId": 11242, - "weight": 160 + "weight": 300 }, { "id": 1579, "planId": 43, "cardId": 11252, - "weight": 160 + "weight": 300 }, { "id": 1580, "planId": 43, "cardId": 11262, - "weight": 160 + "weight": 300 }, { "id": 1581, "planId": 43, "cardId": 14211, - "weight": 160 + "weight": 300 }, { "id": 1582, "planId": 43, "cardId": 14221, - "weight": 160 + "weight": 300 }, { "id": 1583, "planId": 43, "cardId": 14231, - "weight": 160 + "weight": 300 }, { "id": 1584, "planId": 43, "cardId": 14241, - "weight": 160 + "weight": 300 }, { "id": 1585, "planId": 43, "cardId": 14251, - "weight": 160 + "weight": 300 }, { "id": 1586, "planId": 43, "cardId": 14261, - "weight": 160 + "weight": 300 }, { "id": 1587, "planId": 43, "cardId": 14212, - "weight": 160 + "weight": 300 }, { "id": 1588, "planId": 43, "cardId": 14222, - "weight": 160 + "weight": 300 }, { "id": 1589, "planId": 43, "cardId": 14232, - "weight": 160 + "weight": 300 }, { "id": 1590, "planId": 43, "cardId": 14242, - "weight": 160 + "weight": 300 }, { "id": 1591, "planId": 43, "cardId": 14252, - "weight": 160 + "weight": 300 }, { "id": 1592, "planId": 43, "cardId": 14262, - "weight": 160 + "weight": 300 }, { "id": 1593, "planId": 43, "cardId": 17211, - "weight": 160 + "weight": 300 }, { "id": 1594, "planId": 43, "cardId": 17221, - "weight": 160 + "weight": 300 }, { "id": 1595, "planId": 43, "cardId": 17231, - "weight": 160 + "weight": 300 }, { "id": 1596, "planId": 43, "cardId": 17241, - "weight": 160 + "weight": 300 }, { "id": 1597, "planId": 43, "cardId": 17251, - "weight": 160 + "weight": 300 }, { "id": 1598, "planId": 43, "cardId": 17261, - "weight": 160 + "weight": 300 }, { "id": 1599, "planId": 43, "cardId": 17212, - "weight": 160 + "weight": 300 }, { "id": 1600, "planId": 43, "cardId": 17222, - "weight": 160 + "weight": 300 }, { "id": 1601, "planId": 43, "cardId": 17232, - "weight": 160 + "weight": 300 }, { "id": 1602, "planId": 43, "cardId": 17242, - "weight": 160 + "weight": 300 }, { "id": 1603, "planId": 43, "cardId": 17252, - "weight": 160 + "weight": 300 }, { "id": 1604, "planId": 43, "cardId": 17262, - "weight": 160 + "weight": 300 }, { "id": 1605, "planId": 43, "cardId": 15211, - "weight": 160 + "weight": 300 }, { "id": 1606, "planId": 43, "cardId": 15221, - "weight": 160 + "weight": 300 }, { "id": 1607, "planId": 43, "cardId": 15231, - "weight": 160 + "weight": 300 }, { "id": 1608, "planId": 43, "cardId": 15241, - "weight": 160 + "weight": 300 }, { "id": 1609, "planId": 43, "cardId": 15251, - "weight": 160 + "weight": 300 }, { "id": 1610, "planId": 43, "cardId": 15261, - "weight": 160 + "weight": 300 }, { "id": 1611, "planId": 43, "cardId": 15212, - "weight": 160 + "weight": 300 }, { "id": 1612, "planId": 43, "cardId": 15222, - "weight": 160 + "weight": 300 }, { "id": 1613, "planId": 43, "cardId": 15232, - "weight": 160 + "weight": 300 }, { "id": 1614, "planId": 43, "cardId": 15242, - "weight": 160 + "weight": 300 }, { "id": 1615, "planId": 43, "cardId": 15252, - "weight": 160 + "weight": 300 }, { "id": 1616, "planId": 43, "cardId": 15262, - "weight": 160 + "weight": 300 }, { "id": 1617, "planId": 43, "cardId": 18211, - "weight": 160 + "weight": 300 }, { "id": 1618, "planId": 43, "cardId": 18221, - "weight": 160 + "weight": 300 }, { "id": 1619, "planId": 43, "cardId": 18231, - "weight": 160 + "weight": 300 }, { "id": 1620, "planId": 43, "cardId": 18241, - "weight": 160 + "weight": 300 }, { "id": 1621, "planId": 43, "cardId": 18251, - "weight": 160 + "weight": 300 }, { "id": 1622, "planId": 43, "cardId": 18261, - "weight": 160 + "weight": 300 }, { "id": 1623, "planId": 43, "cardId": 18212, - "weight": 160 + "weight": 300 }, { "id": 1624, "planId": 43, "cardId": 18222, - "weight": 160 + "weight": 300 }, { "id": 1625, "planId": 43, "cardId": 18232, - "weight": 160 + "weight": 300 }, { "id": 1626, "planId": 43, "cardId": 18242, - "weight": 160 + "weight": 300 }, { "id": 1627, "planId": 43, "cardId": 18252, - "weight": 160 + "weight": 300 }, { "id": 1628, "planId": 43, "cardId": 18262, - "weight": 160 + "weight": 300 }, { "id": 1629, "planId": 43, "cardId": 13211, - "weight": 160 + "weight": 300 }, { "id": 1630, "planId": 43, "cardId": 13221, - "weight": 160 + "weight": 300 }, { "id": 1631, "planId": 43, "cardId": 13231, - "weight": 160 + "weight": 300 }, { "id": 1632, "planId": 43, "cardId": 13241, - "weight": 160 + "weight": 300 }, { "id": 1633, "planId": 43, "cardId": 13251, - "weight": 160 + "weight": 300 }, { "id": 1634, "planId": 43, "cardId": 13261, - "weight": 160 + "weight": 300 }, { "id": 1635, "planId": 43, "cardId": 13212, - "weight": 160 + "weight": 300 }, { "id": 1636, "planId": 43, "cardId": 13222, - "weight": 160 + "weight": 300 }, { "id": 1637, "planId": 43, "cardId": 13232, - "weight": 160 + "weight": 300 }, { "id": 1638, "planId": 43, "cardId": 13242, - "weight": 160 + "weight": 300 }, { "id": 1639, "planId": 43, "cardId": 13252, - "weight": 160 + "weight": 300 }, { "id": 1640, "planId": 43, "cardId": 13262, - "weight": 160 + "weight": 300 }, { "id": 1641, "planId": 43, "cardId": 12211, - "weight": 160 + "weight": 300 }, { "id": 1642, "planId": 43, "cardId": 12221, - "weight": 160 + "weight": 300 }, { "id": 1643, "planId": 43, "cardId": 12231, - "weight": 160 + "weight": 300 }, { "id": 1644, "planId": 43, "cardId": 12241, - "weight": 160 + "weight": 300 }, { "id": 1645, "planId": 43, "cardId": 12251, - "weight": 160 + "weight": 300 }, { "id": 1646, "planId": 43, "cardId": 12261, - "weight": 160 + "weight": 300 }, { "id": 1647, "planId": 43, "cardId": 12212, - "weight": 160 + "weight": 300 }, { "id": 1648, "planId": 43, "cardId": 12222, - "weight": 160 + "weight": 300 }, { "id": 1649, "planId": 43, "cardId": 12232, - "weight": 160 + "weight": 300 }, { "id": 1650, "planId": 43, "cardId": 12242, - "weight": 160 + "weight": 300 }, { "id": 1651, "planId": 43, "cardId": 12252, - "weight": 160 + "weight": 300 }, { "id": 1652, "planId": 43, "cardId": 12262, - "weight": 160 + "weight": 300 }, { "id": 1653, "planId": 43, "cardId": 16211, - "weight": 160 + "weight": 300 }, { "id": 1654, "planId": 43, "cardId": 16221, - "weight": 160 + "weight": 300 }, { "id": 1655, "planId": 43, "cardId": 16231, - "weight": 160 + "weight": 300 }, { "id": 1656, "planId": 43, "cardId": 16241, - "weight": 160 + "weight": 300 }, { "id": 1657, "planId": 43, "cardId": 16251, - "weight": 160 + "weight": 300 }, { "id": 1658, "planId": 43, "cardId": 16261, - "weight": 160 + "weight": 300 }, { "id": 1659, "planId": 43, "cardId": 16212, - "weight": 160 + "weight": 300 }, { "id": 1660, "planId": 43, "cardId": 16222, - "weight": 160 + "weight": 300 }, { "id": 1661, "planId": 43, "cardId": 16232, - "weight": 160 + "weight": 300 }, { "id": 1662, "planId": 43, "cardId": 16242, - "weight": 160 + "weight": 300 }, { "id": 1663, "planId": 43, "cardId": 16252, - "weight": 160 + "weight": 300 }, { "id": 1664, "planId": 43, "cardId": 16262, - "weight": 160 + "weight": 300 }, { "id": 1665, "planId": 43, "cardId": 11311, - "weight": 180 + "weight": 50 }, { "id": 1666, "planId": 43, "cardId": 11321, - "weight": 180 + "weight": 50 }, { "id": 1667, "planId": 43, "cardId": 11331, - "weight": 180 + "weight": 50 }, { "id": 1668, "planId": 43, "cardId": 11341, - "weight": 180 + "weight": 50 }, { "id": 1669, "planId": 43, "cardId": 11312, - "weight": 180 + "weight": 50 }, { "id": 1670, "planId": 43, "cardId": 11322, - "weight": 180 + "weight": 50 }, { "id": 1671, "planId": 43, "cardId": 11332, - "weight": 180 + "weight": 50 }, { "id": 1672, "planId": 43, "cardId": 11342, - "weight": 180 + "weight": 50 }, { "id": 1673, "planId": 43, "cardId": 14311, - "weight": 180 + "weight": 50 }, { "id": 1674, "planId": 43, "cardId": 14321, - "weight": 180 + "weight": 50 }, { "id": 1675, "planId": 43, "cardId": 14331, - "weight": 180 + "weight": 50 }, { "id": 1676, "planId": 43, "cardId": 14341, - "weight": 180 + "weight": 50 }, { "id": 1677, "planId": 43, "cardId": 14312, - "weight": 180 + "weight": 50 }, { "id": 1678, "planId": 43, "cardId": 14322, - "weight": 180 + "weight": 50 }, { "id": 1679, "planId": 43, "cardId": 14332, - "weight": 180 + "weight": 50 }, { "id": 1680, "planId": 43, "cardId": 14342, - "weight": 180 + "weight": 50 }, { "id": 1681, "planId": 43, "cardId": 17311, - "weight": 180 + "weight": 50 }, { "id": 1682, "planId": 43, "cardId": 17321, - "weight": 180 + "weight": 50 }, { "id": 1683, "planId": 43, "cardId": 17331, - "weight": 180 + "weight": 50 }, { "id": 1684, "planId": 43, "cardId": 17341, - "weight": 180 + "weight": 50 }, { "id": 1685, "planId": 43, "cardId": 17312, - "weight": 180 + "weight": 50 }, { "id": 1686, "planId": 43, "cardId": 17322, - "weight": 180 + "weight": 50 }, { "id": 1687, "planId": 43, "cardId": 17332, - "weight": 180 + "weight": 50 }, { "id": 1688, "planId": 43, "cardId": 17342, - "weight": 180 + "weight": 50 }, { "id": 1689, "planId": 43, "cardId": 15311, - "weight": 180 + "weight": 50 }, { "id": 1690, "planId": 43, "cardId": 15321, - "weight": 180 + "weight": 50 }, { "id": 1691, "planId": 43, "cardId": 15331, - "weight": 180 + "weight": 50 }, { "id": 1692, "planId": 43, "cardId": 15341, - "weight": 180 + "weight": 50 }, { "id": 1693, "planId": 43, "cardId": 15312, - "weight": 180 + "weight": 50 }, { "id": 1694, "planId": 43, "cardId": 15322, - "weight": 180 + "weight": 50 }, { "id": 1695, "planId": 43, "cardId": 15332, - "weight": 180 + "weight": 50 }, { "id": 1696, "planId": 43, "cardId": 15342, - "weight": 180 + "weight": 50 }, { "id": 1697, "planId": 43, "cardId": 18311, - "weight": 180 + "weight": 50 }, { "id": 1698, "planId": 43, "cardId": 18321, - "weight": 180 + "weight": 50 }, { "id": 1699, "planId": 43, "cardId": 18331, - "weight": 180 + "weight": 50 }, { "id": 1700, "planId": 43, "cardId": 18341, - "weight": 180 + "weight": 50 }, { "id": 1701, "planId": 43, "cardId": 18312, - "weight": 180 + "weight": 50 }, { "id": 1702, "planId": 43, "cardId": 18322, - "weight": 180 + "weight": 50 }, { "id": 1703, "planId": 43, "cardId": 18332, - "weight": 180 + "weight": 50 }, { "id": 1704, "planId": 43, "cardId": 18342, - "weight": 180 + "weight": 50 }, { "id": 1705, "planId": 43, "cardId": 13311, - "weight": 180 + "weight": 50 }, { "id": 1706, "planId": 43, "cardId": 13321, - "weight": 180 + "weight": 50 }, { "id": 1707, "planId": 43, "cardId": 13331, - "weight": 180 + "weight": 50 }, { "id": 1708, "planId": 43, "cardId": 13341, - "weight": 180 + "weight": 50 }, { "id": 1709, "planId": 43, "cardId": 13312, - "weight": 180 + "weight": 50 }, { "id": 1710, "planId": 43, "cardId": 13322, - "weight": 180 + "weight": 50 }, { "id": 1711, "planId": 43, "cardId": 13332, - "weight": 180 + "weight": 50 }, { "id": 1712, "planId": 43, "cardId": 13342, - "weight": 180 + "weight": 50 }, { "id": 1713, "planId": 43, "cardId": 12311, - "weight": 180 + "weight": 50 }, { "id": 1714, "planId": 43, "cardId": 12321, - "weight": 180 + "weight": 50 }, { "id": 1715, "planId": 43, "cardId": 12331, - "weight": 180 + "weight": 50 }, { "id": 1716, "planId": 43, "cardId": 12341, - "weight": 180 + "weight": 50 }, { "id": 1717, "planId": 43, "cardId": 12312, - "weight": 180 + "weight": 50 }, { "id": 1718, "planId": 43, "cardId": 12322, - "weight": 180 + "weight": 50 }, { "id": 1719, "planId": 43, "cardId": 12332, - "weight": 180 + "weight": 50 }, { "id": 1720, "planId": 43, "cardId": 12342, - "weight": 180 + "weight": 50 }, { "id": 1721, "planId": 43, "cardId": 16311, - "weight": 180 + "weight": 50 }, { "id": 1722, "planId": 43, "cardId": 16321, - "weight": 180 + "weight": 50 }, { "id": 1723, "planId": 43, "cardId": 16331, - "weight": 180 + "weight": 50 }, { "id": 1724, "planId": 43, "cardId": 16341, - "weight": 180 + "weight": 50 }, { "id": 1725, "planId": 43, "cardId": 16312, - "weight": 180 + "weight": 50 }, { "id": 1726, "planId": 43, "cardId": 16322, - "weight": 180 + "weight": 50 }, { "id": 1727, "planId": 43, "cardId": 16332, - "weight": 180 + "weight": 50 }, { "id": 1728, "planId": 43, "cardId": 16342, - "weight": 180 + "weight": 50 }, { "id": 1729, @@ -11137,4419 +11137,4419 @@ }, { "id": 1857, - "planId": 52, + "planId": 51, "cardId": 11211, "weight": 300 }, { "id": 1858, - "planId": 52, + "planId": 51, "cardId": 11221, "weight": 300 }, { "id": 1859, - "planId": 52, + "planId": 51, "cardId": 11231, "weight": 300 }, { "id": 1860, - "planId": 52, + "planId": 51, "cardId": 11241, "weight": 300 }, { "id": 1861, - "planId": 52, + "planId": 51, "cardId": 11251, "weight": 300 }, { "id": 1862, - "planId": 52, + "planId": 51, "cardId": 11261, "weight": 300 }, { "id": 1863, - "planId": 52, + "planId": 51, "cardId": 11212, "weight": 300 }, { "id": 1864, - "planId": 52, + "planId": 51, "cardId": 11222, "weight": 300 }, { "id": 1865, - "planId": 52, + "planId": 51, "cardId": 11232, "weight": 300 }, { "id": 1866, - "planId": 52, + "planId": 51, "cardId": 11242, "weight": 300 }, { "id": 1867, - "planId": 52, + "planId": 51, "cardId": 11252, "weight": 300 }, { "id": 1868, - "planId": 52, + "planId": 51, "cardId": 11262, "weight": 300 }, { "id": 1869, - "planId": 52, + "planId": 51, "cardId": 14211, "weight": 300 }, { "id": 1870, - "planId": 52, + "planId": 51, "cardId": 14221, "weight": 300 }, { "id": 1871, - "planId": 52, + "planId": 51, "cardId": 14231, "weight": 300 }, { "id": 1872, - "planId": 52, + "planId": 51, "cardId": 14241, "weight": 300 }, { "id": 1873, - "planId": 52, + "planId": 51, "cardId": 14251, "weight": 300 }, { "id": 1874, - "planId": 52, + "planId": 51, "cardId": 14261, "weight": 300 }, { "id": 1875, - "planId": 52, + "planId": 51, "cardId": 14212, "weight": 300 }, { "id": 1876, - "planId": 52, + "planId": 51, "cardId": 14222, "weight": 300 }, { "id": 1877, - "planId": 52, + "planId": 51, "cardId": 14232, "weight": 300 }, { "id": 1878, - "planId": 52, + "planId": 51, "cardId": 14242, "weight": 300 }, { "id": 1879, - "planId": 52, + "planId": 51, "cardId": 14252, "weight": 300 }, { "id": 1880, - "planId": 52, + "planId": 51, "cardId": 14262, "weight": 300 }, { "id": 1881, - "planId": 52, + "planId": 51, "cardId": 17211, "weight": 300 }, { "id": 1882, - "planId": 52, + "planId": 51, "cardId": 17221, "weight": 300 }, { "id": 1883, - "planId": 52, + "planId": 51, "cardId": 17231, "weight": 300 }, { "id": 1884, - "planId": 52, + "planId": 51, "cardId": 17241, "weight": 300 }, { "id": 1885, - "planId": 52, + "planId": 51, "cardId": 17251, "weight": 300 }, { "id": 1886, - "planId": 52, + "planId": 51, "cardId": 17261, "weight": 300 }, { "id": 1887, - "planId": 52, + "planId": 51, "cardId": 17212, "weight": 300 }, { "id": 1888, - "planId": 52, + "planId": 51, "cardId": 17222, "weight": 300 }, { "id": 1889, - "planId": 52, + "planId": 51, "cardId": 17232, "weight": 300 }, { "id": 1890, - "planId": 52, + "planId": 51, "cardId": 17242, "weight": 300 }, { "id": 1891, - "planId": 52, + "planId": 51, "cardId": 17252, "weight": 300 }, { "id": 1892, - "planId": 52, + "planId": 51, "cardId": 17262, "weight": 300 }, { "id": 1893, - "planId": 52, + "planId": 51, "cardId": 15211, "weight": 300 }, { "id": 1894, - "planId": 52, + "planId": 51, "cardId": 15221, "weight": 300 }, { "id": 1895, - "planId": 52, + "planId": 51, "cardId": 15231, "weight": 300 }, { "id": 1896, - "planId": 52, + "planId": 51, "cardId": 15241, "weight": 300 }, { "id": 1897, - "planId": 52, + "planId": 51, "cardId": 15251, "weight": 300 }, { "id": 1898, - "planId": 52, + "planId": 51, "cardId": 15261, "weight": 300 }, { "id": 1899, - "planId": 52, + "planId": 51, "cardId": 15212, "weight": 300 }, { "id": 1900, - "planId": 52, + "planId": 51, "cardId": 15222, "weight": 300 }, { "id": 1901, - "planId": 52, + "planId": 51, "cardId": 15232, "weight": 300 }, { "id": 1902, - "planId": 52, + "planId": 51, "cardId": 15242, "weight": 300 }, { "id": 1903, - "planId": 52, + "planId": 51, "cardId": 15252, "weight": 300 }, { "id": 1904, - "planId": 52, + "planId": 51, "cardId": 15262, "weight": 300 }, { "id": 1905, - "planId": 52, + "planId": 51, "cardId": 18211, "weight": 300 }, { "id": 1906, - "planId": 52, + "planId": 51, "cardId": 18221, "weight": 300 }, { "id": 1907, - "planId": 52, + "planId": 51, "cardId": 18231, "weight": 300 }, { "id": 1908, - "planId": 52, + "planId": 51, "cardId": 18241, "weight": 300 }, { "id": 1909, - "planId": 52, + "planId": 51, "cardId": 18251, "weight": 300 }, { "id": 1910, - "planId": 52, + "planId": 51, "cardId": 18261, "weight": 300 }, { "id": 1911, - "planId": 52, + "planId": 51, "cardId": 18212, "weight": 300 }, { "id": 1912, - "planId": 52, + "planId": 51, "cardId": 18222, "weight": 300 }, { "id": 1913, - "planId": 52, + "planId": 51, "cardId": 18232, "weight": 300 }, { "id": 1914, - "planId": 52, + "planId": 51, "cardId": 18242, "weight": 300 }, { "id": 1915, - "planId": 52, + "planId": 51, "cardId": 18252, "weight": 300 }, { "id": 1916, - "planId": 52, + "planId": 51, "cardId": 18262, "weight": 300 }, { "id": 1917, - "planId": 52, + "planId": 51, "cardId": 13211, "weight": 300 }, { "id": 1918, - "planId": 52, + "planId": 51, "cardId": 13221, "weight": 300 }, { "id": 1919, - "planId": 52, + "planId": 51, "cardId": 13231, "weight": 300 }, { "id": 1920, - "planId": 52, + "planId": 51, "cardId": 13241, "weight": 300 }, { "id": 1921, - "planId": 52, + "planId": 51, "cardId": 13251, "weight": 300 }, { "id": 1922, - "planId": 52, + "planId": 51, "cardId": 13261, "weight": 300 }, { "id": 1923, - "planId": 52, + "planId": 51, "cardId": 13212, "weight": 300 }, { "id": 1924, - "planId": 52, + "planId": 51, "cardId": 13222, "weight": 300 }, { "id": 1925, - "planId": 52, + "planId": 51, "cardId": 13232, "weight": 300 }, { "id": 1926, - "planId": 52, + "planId": 51, "cardId": 13242, "weight": 300 }, { "id": 1927, - "planId": 52, + "planId": 51, "cardId": 13252, "weight": 300 }, { "id": 1928, - "planId": 52, + "planId": 51, "cardId": 13262, "weight": 300 }, { "id": 1929, - "planId": 52, + "planId": 51, "cardId": 12211, "weight": 300 }, { "id": 1930, - "planId": 52, + "planId": 51, "cardId": 12221, "weight": 300 }, { "id": 1931, - "planId": 52, + "planId": 51, "cardId": 12231, "weight": 300 }, { "id": 1932, - "planId": 52, + "planId": 51, "cardId": 12241, "weight": 300 }, { "id": 1933, - "planId": 52, + "planId": 51, "cardId": 12251, "weight": 300 }, { "id": 1934, - "planId": 52, + "planId": 51, "cardId": 12261, "weight": 300 }, { "id": 1935, - "planId": 52, + "planId": 51, "cardId": 12212, "weight": 300 }, { "id": 1936, - "planId": 52, + "planId": 51, "cardId": 12222, "weight": 300 }, { "id": 1937, - "planId": 52, + "planId": 51, "cardId": 12232, "weight": 300 }, { "id": 1938, - "planId": 52, + "planId": 51, "cardId": 12242, "weight": 300 }, { "id": 1939, - "planId": 52, + "planId": 51, "cardId": 12252, "weight": 300 }, { "id": 1940, - "planId": 52, + "planId": 51, "cardId": 12262, "weight": 300 }, { "id": 1941, - "planId": 52, + "planId": 51, "cardId": 16211, "weight": 300 }, { "id": 1942, - "planId": 52, + "planId": 51, "cardId": 16221, "weight": 300 }, { "id": 1943, - "planId": 52, + "planId": 51, "cardId": 16231, "weight": 300 }, { "id": 1944, - "planId": 52, + "planId": 51, "cardId": 16241, "weight": 300 }, { "id": 1945, - "planId": 52, + "planId": 51, "cardId": 16251, "weight": 300 }, { "id": 1946, - "planId": 52, + "planId": 51, "cardId": 16261, "weight": 300 }, { "id": 1947, - "planId": 52, + "planId": 51, "cardId": 16212, "weight": 300 }, { "id": 1948, - "planId": 52, + "planId": 51, "cardId": 16222, "weight": 300 }, { "id": 1949, - "planId": 52, + "planId": 51, "cardId": 16232, "weight": 300 }, { "id": 1950, - "planId": 52, + "planId": 51, "cardId": 16242, "weight": 300 }, { "id": 1951, - "planId": 52, + "planId": 51, "cardId": 16252, "weight": 300 }, { "id": 1952, - "planId": 52, + "planId": 51, "cardId": 16262, "weight": 300 }, { "id": 1953, - "planId": 53, + "planId": 51, "cardId": 11311, "weight": 50 }, { "id": 1954, - "planId": 53, + "planId": 51, "cardId": 11321, "weight": 50 }, { "id": 1955, - "planId": 53, + "planId": 51, "cardId": 11331, "weight": 50 }, { "id": 1956, - "planId": 53, + "planId": 51, "cardId": 11341, "weight": 50 }, { "id": 1957, - "planId": 53, + "planId": 51, "cardId": 11312, "weight": 50 }, { "id": 1958, - "planId": 53, + "planId": 51, "cardId": 11322, "weight": 50 }, { "id": 1959, - "planId": 53, + "planId": 51, "cardId": 11332, "weight": 50 }, { "id": 1960, - "planId": 53, + "planId": 51, "cardId": 11342, "weight": 50 }, { "id": 1961, - "planId": 53, + "planId": 51, "cardId": 14311, "weight": 50 }, { "id": 1962, - "planId": 53, + "planId": 51, "cardId": 14321, "weight": 50 }, { "id": 1963, - "planId": 53, + "planId": 51, "cardId": 14331, "weight": 50 }, { "id": 1964, - "planId": 53, + "planId": 51, "cardId": 14341, "weight": 50 }, { "id": 1965, - "planId": 53, + "planId": 51, "cardId": 14312, "weight": 50 }, { "id": 1966, - "planId": 53, + "planId": 51, "cardId": 14322, "weight": 50 }, { "id": 1967, - "planId": 53, + "planId": 51, "cardId": 14332, "weight": 50 }, { "id": 1968, - "planId": 53, + "planId": 51, "cardId": 14342, "weight": 50 }, { "id": 1969, - "planId": 53, + "planId": 51, "cardId": 17311, "weight": 50 }, { "id": 1970, - "planId": 53, + "planId": 51, "cardId": 17321, "weight": 50 }, { "id": 1971, - "planId": 53, + "planId": 51, "cardId": 17331, "weight": 50 }, { "id": 1972, - "planId": 53, + "planId": 51, "cardId": 17341, "weight": 50 }, { "id": 1973, - "planId": 53, + "planId": 51, "cardId": 17312, "weight": 50 }, { "id": 1974, - "planId": 53, + "planId": 51, "cardId": 17322, "weight": 50 }, { "id": 1975, - "planId": 53, + "planId": 51, "cardId": 17332, "weight": 50 }, { "id": 1976, - "planId": 53, + "planId": 51, "cardId": 17342, "weight": 50 }, { "id": 1977, - "planId": 53, + "planId": 51, "cardId": 15311, "weight": 50 }, { "id": 1978, - "planId": 53, + "planId": 51, "cardId": 15321, "weight": 50 }, { "id": 1979, - "planId": 53, + "planId": 51, "cardId": 15331, "weight": 50 }, { "id": 1980, - "planId": 53, + "planId": 51, "cardId": 15341, "weight": 50 }, { "id": 1981, - "planId": 53, + "planId": 51, "cardId": 15312, "weight": 50 }, { "id": 1982, - "planId": 53, + "planId": 51, "cardId": 15322, "weight": 50 }, { "id": 1983, - "planId": 53, + "planId": 51, "cardId": 15332, "weight": 50 }, { "id": 1984, - "planId": 53, + "planId": 51, "cardId": 15342, "weight": 50 }, { "id": 1985, - "planId": 53, + "planId": 51, "cardId": 18311, "weight": 50 }, { "id": 1986, - "planId": 53, + "planId": 51, "cardId": 18321, "weight": 50 }, { "id": 1987, - "planId": 53, + "planId": 51, "cardId": 18331, "weight": 50 }, { "id": 1988, - "planId": 53, + "planId": 51, "cardId": 18341, "weight": 50 }, { "id": 1989, - "planId": 53, + "planId": 51, "cardId": 18312, "weight": 50 }, { "id": 1990, - "planId": 53, + "planId": 51, "cardId": 18322, "weight": 50 }, { "id": 1991, - "planId": 53, + "planId": 51, "cardId": 18332, "weight": 50 }, { "id": 1992, - "planId": 53, + "planId": 51, "cardId": 18342, "weight": 50 }, { "id": 1993, - "planId": 53, + "planId": 51, "cardId": 13311, "weight": 50 }, { "id": 1994, - "planId": 53, + "planId": 51, "cardId": 13321, "weight": 50 }, { "id": 1995, - "planId": 53, + "planId": 51, "cardId": 13331, "weight": 50 }, { "id": 1996, - "planId": 53, + "planId": 51, "cardId": 13341, "weight": 50 }, { "id": 1997, - "planId": 53, + "planId": 51, "cardId": 13312, "weight": 50 }, { "id": 1998, - "planId": 53, + "planId": 51, "cardId": 13322, "weight": 50 }, { "id": 1999, - "planId": 53, + "planId": 51, "cardId": 13332, "weight": 50 }, { "id": 2000, - "planId": 53, + "planId": 51, "cardId": 13342, "weight": 50 }, { "id": 2001, - "planId": 53, + "planId": 51, "cardId": 12311, "weight": 50 }, { "id": 2002, - "planId": 53, + "planId": 51, "cardId": 12321, "weight": 50 }, { "id": 2003, - "planId": 53, + "planId": 51, "cardId": 12331, "weight": 50 }, { "id": 2004, - "planId": 53, + "planId": 51, "cardId": 12341, "weight": 50 }, { "id": 2005, - "planId": 53, + "planId": 51, "cardId": 12312, "weight": 50 }, { "id": 2006, - "planId": 53, + "planId": 51, "cardId": 12322, "weight": 50 }, { "id": 2007, - "planId": 53, + "planId": 51, "cardId": 12332, "weight": 50 }, { "id": 2008, - "planId": 53, + "planId": 51, "cardId": 12342, "weight": 50 }, { "id": 2009, - "planId": 53, + "planId": 51, "cardId": 16311, "weight": 50 }, { "id": 2010, - "planId": 53, + "planId": 51, "cardId": 16321, "weight": 50 }, { "id": 2011, - "planId": 53, + "planId": 51, "cardId": 16331, "weight": 50 }, { "id": 2012, - "planId": 53, + "planId": 51, "cardId": 16341, "weight": 50 }, { "id": 2013, - "planId": 53, + "planId": 51, "cardId": 16312, "weight": 50 }, { "id": 2014, - "planId": 53, + "planId": 51, "cardId": 16322, "weight": 50 }, { "id": 2015, - "planId": 53, + "planId": 51, "cardId": 16332, "weight": 50 }, { "id": 2016, - "planId": 53, + "planId": 51, "cardId": 16342, "weight": 50 }, { "id": 2017, - "planId": 53, + "planId": 52, "cardId": 11111, - "weight": 200 + "weight": 250 }, { "id": 2018, - "planId": 53, + "planId": 52, "cardId": 11121, - "weight": 200 + "weight": 250 }, { "id": 2019, - "planId": 53, + "planId": 52, "cardId": 11131, - "weight": 200 + "weight": 250 }, { "id": 2020, - "planId": 53, + "planId": 52, "cardId": 11141, - "weight": 200 + "weight": 250 }, { "id": 2021, - "planId": 53, + "planId": 52, "cardId": 11151, - "weight": 200 + "weight": 250 }, { "id": 2022, - "planId": 53, + "planId": 52, "cardId": 11161, - "weight": 200 + "weight": 250 }, { "id": 2023, - "planId": 53, + "planId": 52, "cardId": 11171, - "weight": 200 + "weight": 250 }, { "id": 2024, - "planId": 53, + "planId": 52, "cardId": 11181, - "weight": 200 + "weight": 250 }, { "id": 2025, - "planId": 53, + "planId": 52, "cardId": 11112, - "weight": 200 + "weight": 250 }, { "id": 2026, - "planId": 53, + "planId": 52, "cardId": 11122, - "weight": 200 + "weight": 250 }, { "id": 2027, - "planId": 53, + "planId": 52, "cardId": 11132, - "weight": 200 + "weight": 250 }, { "id": 2028, - "planId": 53, + "planId": 52, "cardId": 11142, - "weight": 200 + "weight": 250 }, { "id": 2029, - "planId": 53, + "planId": 52, "cardId": 11152, - "weight": 200 + "weight": 250 }, { "id": 2030, - "planId": 53, + "planId": 52, "cardId": 11162, - "weight": 200 + "weight": 250 }, { "id": 2031, - "planId": 53, + "planId": 52, "cardId": 11172, - "weight": 200 + "weight": 250 }, { "id": 2032, - "planId": 53, + "planId": 52, "cardId": 11182, - "weight": 200 + "weight": 250 }, { "id": 2033, - "planId": 53, + "planId": 52, "cardId": 14111, - "weight": 200 + "weight": 250 }, { "id": 2034, - "planId": 53, + "planId": 52, "cardId": 14121, - "weight": 200 + "weight": 250 }, { "id": 2035, - "planId": 53, + "planId": 52, "cardId": 14131, - "weight": 200 + "weight": 250 }, { "id": 2036, - "planId": 53, + "planId": 52, "cardId": 14141, - "weight": 200 + "weight": 250 }, { "id": 2037, - "planId": 53, + "planId": 52, "cardId": 14151, - "weight": 200 + "weight": 250 }, { "id": 2038, - "planId": 53, + "planId": 52, "cardId": 14161, - "weight": 200 + "weight": 250 }, { "id": 2039, - "planId": 53, + "planId": 52, "cardId": 14171, - "weight": 200 + "weight": 250 }, { "id": 2040, - "planId": 53, + "planId": 52, "cardId": 14181, - "weight": 200 + "weight": 250 }, { "id": 2041, - "planId": 53, + "planId": 52, "cardId": 14112, - "weight": 200 + "weight": 250 }, { "id": 2042, - "planId": 53, + "planId": 52, "cardId": 14122, - "weight": 200 + "weight": 250 }, { "id": 2043, - "planId": 53, + "planId": 52, "cardId": 14132, - "weight": 200 + "weight": 250 }, { "id": 2044, - "planId": 53, + "planId": 52, "cardId": 14142, - "weight": 200 + "weight": 250 }, { "id": 2045, - "planId": 53, + "planId": 52, "cardId": 14152, - "weight": 200 + "weight": 250 }, { "id": 2046, - "planId": 53, + "planId": 52, "cardId": 14162, - "weight": 200 + "weight": 250 }, { "id": 2047, - "planId": 53, + "planId": 52, "cardId": 14172, - "weight": 200 + "weight": 250 }, { "id": 2048, - "planId": 53, + "planId": 52, "cardId": 14182, - "weight": 200 + "weight": 250 }, { "id": 2049, - "planId": 53, + "planId": 52, "cardId": 17111, - "weight": 200 + "weight": 250 }, { "id": 2050, - "planId": 53, + "planId": 52, "cardId": 17121, - "weight": 200 + "weight": 250 }, { "id": 2051, - "planId": 53, + "planId": 52, "cardId": 17131, - "weight": 200 + "weight": 250 }, { "id": 2052, - "planId": 53, + "planId": 52, "cardId": 17141, - "weight": 200 + "weight": 250 }, { "id": 2053, - "planId": 53, + "planId": 52, "cardId": 17151, - "weight": 200 + "weight": 250 }, { "id": 2054, - "planId": 53, + "planId": 52, "cardId": 17161, - "weight": 200 + "weight": 250 }, { "id": 2055, - "planId": 53, + "planId": 52, "cardId": 17171, - "weight": 200 + "weight": 250 }, { "id": 2056, - "planId": 53, + "planId": 52, "cardId": 17181, - "weight": 200 + "weight": 250 }, { "id": 2057, - "planId": 53, + "planId": 52, "cardId": 17112, - "weight": 200 + "weight": 250 }, { "id": 2058, - "planId": 53, + "planId": 52, "cardId": 17122, - "weight": 200 + "weight": 250 }, { "id": 2059, - "planId": 53, + "planId": 52, "cardId": 17132, - "weight": 200 + "weight": 250 }, { "id": 2060, - "planId": 53, + "planId": 52, "cardId": 17172, - "weight": 200 + "weight": 250 }, { "id": 2061, - "planId": 53, + "planId": 52, "cardId": 17152, - "weight": 200 + "weight": 250 }, { "id": 2062, - "planId": 53, + "planId": 52, "cardId": 17162, - "weight": 200 + "weight": 250 }, { "id": 2063, - "planId": 53, + "planId": 52, "cardId": 17172, - "weight": 200 + "weight": 250 }, { "id": 2064, - "planId": 53, + "planId": 52, "cardId": 17182, - "weight": 200 + "weight": 250 }, { "id": 2065, - "planId": 53, + "planId": 52, "cardId": 15111, - "weight": 200 + "weight": 250 }, { "id": 2066, - "planId": 53, + "planId": 52, "cardId": 15121, - "weight": 200 + "weight": 250 }, { "id": 2067, - "planId": 53, + "planId": 52, "cardId": 15131, - "weight": 200 + "weight": 250 }, { "id": 2068, - "planId": 53, + "planId": 52, "cardId": 15141, - "weight": 200 + "weight": 250 }, { "id": 2069, - "planId": 53, + "planId": 52, "cardId": 15151, - "weight": 200 + "weight": 250 }, { "id": 2070, - "planId": 53, + "planId": 52, "cardId": 15161, - "weight": 200 + "weight": 250 }, { "id": 2071, - "planId": 53, + "planId": 52, "cardId": 15171, - "weight": 200 + "weight": 250 }, { "id": 2072, - "planId": 53, + "planId": 52, "cardId": 15181, - "weight": 200 + "weight": 250 }, { "id": 2073, - "planId": 53, + "planId": 52, "cardId": 15112, - "weight": 200 + "weight": 250 }, { "id": 2074, - "planId": 53, + "planId": 52, "cardId": 15122, - "weight": 200 + "weight": 250 }, { "id": 2075, - "planId": 53, + "planId": 52, "cardId": 15132, - "weight": 200 + "weight": 250 }, { "id": 2076, - "planId": 53, + "planId": 52, "cardId": 15142, - "weight": 200 + "weight": 250 }, { "id": 2077, - "planId": 53, + "planId": 52, "cardId": 15152, - "weight": 200 + "weight": 250 }, { "id": 2078, - "planId": 53, + "planId": 52, "cardId": 15162, - "weight": 200 + "weight": 250 }, { "id": 2079, - "planId": 53, + "planId": 52, "cardId": 15172, - "weight": 200 + "weight": 250 }, { "id": 2080, - "planId": 53, + "planId": 52, "cardId": 15182, - "weight": 200 + "weight": 250 }, { "id": 2081, - "planId": 53, + "planId": 52, "cardId": 18111, - "weight": 200 + "weight": 250 }, { "id": 2082, - "planId": 53, + "planId": 52, "cardId": 18121, - "weight": 200 + "weight": 250 }, { "id": 2083, - "planId": 53, + "planId": 52, "cardId": 18131, - "weight": 200 + "weight": 250 }, { "id": 2084, - "planId": 53, + "planId": 52, "cardId": 18141, - "weight": 200 + "weight": 250 }, { "id": 2085, - "planId": 53, + "planId": 52, "cardId": 18151, - "weight": 200 + "weight": 250 }, { "id": 2086, - "planId": 53, + "planId": 52, "cardId": 18161, - "weight": 200 + "weight": 250 }, { "id": 2087, - "planId": 53, + "planId": 52, "cardId": 18171, - "weight": 200 + "weight": 250 }, { "id": 2088, - "planId": 53, + "planId": 52, "cardId": 18181, - "weight": 200 + "weight": 250 }, { "id": 2089, - "planId": 53, + "planId": 52, "cardId": 18112, - "weight": 200 + "weight": 250 }, { "id": 2090, - "planId": 53, + "planId": 52, "cardId": 18122, - "weight": 200 + "weight": 250 }, { "id": 2091, - "planId": 53, + "planId": 52, "cardId": 18132, - "weight": 200 + "weight": 250 }, { "id": 2092, - "planId": 53, + "planId": 52, "cardId": 18142, - "weight": 200 + "weight": 250 }, { "id": 2093, - "planId": 53, + "planId": 52, "cardId": 18152, - "weight": 200 + "weight": 250 }, { "id": 2094, - "planId": 53, + "planId": 52, "cardId": 18162, - "weight": 200 + "weight": 250 }, { "id": 2095, - "planId": 53, + "planId": 52, "cardId": 18172, - "weight": 200 + "weight": 250 }, { "id": 2096, - "planId": 53, + "planId": 52, "cardId": 18182, - "weight": 200 + "weight": 250 }, { "id": 2097, - "planId": 53, + "planId": 52, "cardId": 13111, - "weight": 200 + "weight": 250 }, { "id": 2098, - "planId": 53, + "planId": 52, "cardId": 13121, - "weight": 200 + "weight": 250 }, { "id": 2099, - "planId": 53, + "planId": 52, "cardId": 13131, - "weight": 200 + "weight": 250 }, { "id": 2100, - "planId": 53, + "planId": 52, "cardId": 13141, - "weight": 200 + "weight": 250 }, { "id": 2101, - "planId": 53, + "planId": 52, "cardId": 13151, - "weight": 200 + "weight": 250 }, { "id": 2102, - "planId": 53, + "planId": 52, "cardId": 13161, - "weight": 200 + "weight": 250 }, { "id": 2103, - "planId": 53, + "planId": 52, "cardId": 13171, - "weight": 200 + "weight": 250 }, { "id": 2104, - "planId": 53, + "planId": 52, "cardId": 13181, - "weight": 200 + "weight": 250 }, { "id": 2105, - "planId": 53, + "planId": 52, "cardId": 13112, - "weight": 200 + "weight": 250 }, { "id": 2106, - "planId": 53, + "planId": 52, "cardId": 13122, - "weight": 200 + "weight": 250 }, { "id": 2107, - "planId": 53, + "planId": 52, "cardId": 13132, - "weight": 200 + "weight": 250 }, { "id": 2108, - "planId": 53, + "planId": 52, "cardId": 13142, - "weight": 200 + "weight": 250 }, { "id": 2109, - "planId": 53, + "planId": 52, "cardId": 13152, - "weight": 200 + "weight": 250 }, { "id": 2110, - "planId": 53, + "planId": 52, "cardId": 13162, - "weight": 200 + "weight": 250 }, { "id": 2111, - "planId": 53, + "planId": 52, "cardId": 13172, - "weight": 200 + "weight": 250 }, { "id": 2112, - "planId": 53, + "planId": 52, "cardId": 13182, - "weight": 200 + "weight": 250 }, { "id": 2113, - "planId": 53, + "planId": 52, "cardId": 12111, - "weight": 200 + "weight": 250 }, { "id": 2114, - "planId": 53, + "planId": 52, "cardId": 12121, - "weight": 200 + "weight": 250 }, { "id": 2115, - "planId": 53, + "planId": 52, "cardId": 12131, - "weight": 200 + "weight": 250 }, { "id": 2116, - "planId": 53, + "planId": 52, "cardId": 12141, - "weight": 200 + "weight": 250 }, { "id": 2117, - "planId": 53, + "planId": 52, "cardId": 12151, - "weight": 200 + "weight": 250 }, { "id": 2118, - "planId": 53, + "planId": 52, "cardId": 12161, - "weight": 200 + "weight": 250 }, { "id": 2119, - "planId": 53, + "planId": 52, "cardId": 12171, - "weight": 200 + "weight": 250 }, { "id": 2120, - "planId": 53, + "planId": 52, "cardId": 12181, - "weight": 200 + "weight": 250 }, { "id": 2121, - "planId": 53, + "planId": 52, "cardId": 12112, - "weight": 200 + "weight": 250 }, { "id": 2122, - "planId": 53, + "planId": 52, "cardId": 12122, - "weight": 200 + "weight": 250 }, { "id": 2123, - "planId": 53, + "planId": 52, "cardId": 12132, - "weight": 200 + "weight": 250 }, { "id": 2124, - "planId": 53, + "planId": 52, "cardId": 12142, - "weight": 200 + "weight": 250 }, { "id": 2125, - "planId": 53, + "planId": 52, "cardId": 12152, - "weight": 200 + "weight": 250 }, { "id": 2126, - "planId": 53, + "planId": 52, "cardId": 12162, - "weight": 200 + "weight": 250 }, { "id": 2127, - "planId": 53, + "planId": 52, "cardId": 12172, - "weight": 200 + "weight": 250 }, { "id": 2128, - "planId": 53, + "planId": 52, "cardId": 12182, - "weight": 200 + "weight": 250 }, { "id": 2129, - "planId": 53, + "planId": 52, "cardId": 16111, - "weight": 200 + "weight": 250 }, { "id": 2130, - "planId": 53, + "planId": 52, "cardId": 16121, - "weight": 200 + "weight": 250 }, { "id": 2131, - "planId": 53, + "planId": 52, "cardId": 16131, - "weight": 200 + "weight": 250 }, { "id": 2132, - "planId": 53, + "planId": 52, "cardId": 16141, - "weight": 200 + "weight": 250 }, { "id": 2133, - "planId": 53, + "planId": 52, "cardId": 16151, - "weight": 200 + "weight": 250 }, { "id": 2134, - "planId": 53, + "planId": 52, "cardId": 16161, - "weight": 200 + "weight": 250 }, { "id": 2135, - "planId": 53, + "planId": 52, "cardId": 16171, - "weight": 200 + "weight": 250 }, { "id": 2136, - "planId": 53, + "planId": 52, "cardId": 16181, - "weight": 200 + "weight": 250 }, { "id": 2137, - "planId": 53, + "planId": 52, "cardId": 16112, - "weight": 200 + "weight": 250 }, { "id": 2138, - "planId": 53, + "planId": 52, "cardId": 16122, - "weight": 200 + "weight": 250 }, { "id": 2139, - "planId": 53, + "planId": 52, "cardId": 16132, - "weight": 200 + "weight": 250 }, { "id": 2140, - "planId": 53, + "planId": 52, "cardId": 16142, - "weight": 200 + "weight": 250 }, { "id": 2141, - "planId": 53, + "planId": 52, "cardId": 16152, - "weight": 200 + "weight": 250 }, { "id": 2142, - "planId": 53, + "planId": 52, "cardId": 16162, - "weight": 200 + "weight": 250 }, { "id": 2143, - "planId": 53, + "planId": 52, "cardId": 16172, - "weight": 200 + "weight": 250 }, { "id": 2144, - "planId": 53, + "planId": 52, "cardId": 16182, - "weight": 200 + "weight": 250 }, { "id": 2145, - "planId": 53, + "planId": 52, "cardId": 11211, "weight": 300 }, { "id": 2146, - "planId": 53, + "planId": 52, "cardId": 11221, "weight": 300 }, { "id": 2147, - "planId": 53, + "planId": 52, "cardId": 11231, "weight": 300 }, { "id": 2148, - "planId": 53, + "planId": 52, "cardId": 11241, "weight": 300 }, { "id": 2149, - "planId": 53, + "planId": 52, "cardId": 11251, "weight": 300 }, { "id": 2150, - "planId": 53, + "planId": 52, "cardId": 11261, "weight": 300 }, { "id": 2151, - "planId": 53, + "planId": 52, "cardId": 11212, "weight": 300 }, { "id": 2152, - "planId": 53, + "planId": 52, "cardId": 11222, "weight": 300 }, { "id": 2153, - "planId": 53, + "planId": 52, "cardId": 11232, "weight": 300 }, { "id": 2154, - "planId": 53, + "planId": 52, "cardId": 11242, "weight": 300 }, { "id": 2155, - "planId": 53, + "planId": 52, "cardId": 11252, "weight": 300 }, { "id": 2156, - "planId": 53, + "planId": 52, "cardId": 11262, "weight": 300 }, { "id": 2157, - "planId": 53, + "planId": 52, "cardId": 14211, "weight": 300 }, { "id": 2158, - "planId": 53, + "planId": 52, "cardId": 14221, "weight": 300 }, { "id": 2159, - "planId": 53, + "planId": 52, "cardId": 14231, "weight": 300 }, { "id": 2160, - "planId": 53, + "planId": 52, "cardId": 14241, "weight": 300 }, { "id": 2161, - "planId": 53, + "planId": 52, "cardId": 14251, "weight": 300 }, { "id": 2162, - "planId": 53, + "planId": 52, "cardId": 14261, "weight": 300 }, { "id": 2163, - "planId": 53, + "planId": 52, "cardId": 14212, "weight": 300 }, { "id": 2164, - "planId": 53, + "planId": 52, "cardId": 14222, "weight": 300 }, { "id": 2165, - "planId": 53, + "planId": 52, "cardId": 14232, "weight": 300 }, { "id": 2166, - "planId": 53, + "planId": 52, "cardId": 14242, "weight": 300 }, { "id": 2167, - "planId": 53, + "planId": 52, "cardId": 14252, "weight": 300 }, { "id": 2168, - "planId": 53, + "planId": 52, "cardId": 14262, "weight": 300 }, { "id": 2169, - "planId": 53, + "planId": 52, "cardId": 17211, "weight": 300 }, { "id": 2170, - "planId": 53, + "planId": 52, "cardId": 17221, "weight": 300 }, { "id": 2171, - "planId": 53, + "planId": 52, "cardId": 17231, "weight": 300 }, { "id": 2172, - "planId": 53, + "planId": 52, "cardId": 17241, "weight": 300 }, { "id": 2173, - "planId": 53, + "planId": 52, "cardId": 17251, "weight": 300 }, { "id": 2174, - "planId": 53, + "planId": 52, "cardId": 17261, "weight": 300 }, { "id": 2175, - "planId": 53, + "planId": 52, "cardId": 17212, "weight": 300 }, { "id": 2176, - "planId": 53, + "planId": 52, "cardId": 17222, "weight": 300 }, { "id": 2177, - "planId": 53, + "planId": 52, "cardId": 17232, "weight": 300 }, { "id": 2178, - "planId": 53, + "planId": 52, "cardId": 17242, "weight": 300 }, { "id": 2179, - "planId": 53, + "planId": 52, "cardId": 17252, "weight": 300 }, { "id": 2180, - "planId": 53, + "planId": 52, "cardId": 17262, "weight": 300 }, { "id": 2181, - "planId": 53, + "planId": 52, "cardId": 15211, "weight": 300 }, { "id": 2182, - "planId": 53, + "planId": 52, "cardId": 15221, "weight": 300 }, { "id": 2183, - "planId": 53, + "planId": 52, "cardId": 15231, "weight": 300 }, { "id": 2184, - "planId": 53, + "planId": 52, "cardId": 15241, "weight": 300 }, { "id": 2185, - "planId": 53, + "planId": 52, "cardId": 15251, "weight": 300 }, { "id": 2186, - "planId": 53, + "planId": 52, "cardId": 15261, "weight": 300 }, { "id": 2187, - "planId": 53, + "planId": 52, "cardId": 15212, "weight": 300 }, { "id": 2188, - "planId": 53, + "planId": 52, "cardId": 15222, "weight": 300 }, { "id": 2189, - "planId": 53, + "planId": 52, "cardId": 15232, "weight": 300 }, { "id": 2190, - "planId": 53, + "planId": 52, "cardId": 15242, "weight": 300 }, { "id": 2191, - "planId": 53, + "planId": 52, "cardId": 15252, "weight": 300 }, { "id": 2192, - "planId": 53, + "planId": 52, "cardId": 15262, "weight": 300 }, { "id": 2193, - "planId": 53, + "planId": 52, "cardId": 18211, "weight": 300 }, { "id": 2194, - "planId": 53, + "planId": 52, "cardId": 18221, "weight": 300 }, { "id": 2195, - "planId": 53, + "planId": 52, "cardId": 18231, "weight": 300 }, { "id": 2196, - "planId": 53, + "planId": 52, "cardId": 18241, "weight": 300 }, { "id": 2197, - "planId": 53, + "planId": 52, "cardId": 18251, "weight": 300 }, { "id": 2198, - "planId": 53, + "planId": 52, "cardId": 18261, "weight": 300 }, { "id": 2199, - "planId": 53, + "planId": 52, "cardId": 18212, "weight": 300 }, { "id": 2200, - "planId": 53, + "planId": 52, "cardId": 18222, "weight": 300 }, { "id": 2201, - "planId": 53, + "planId": 52, "cardId": 18232, "weight": 300 }, { "id": 2202, - "planId": 53, + "planId": 52, "cardId": 18242, "weight": 300 }, { "id": 2203, - "planId": 53, + "planId": 52, "cardId": 18252, "weight": 300 }, { "id": 2204, - "planId": 53, + "planId": 52, "cardId": 18262, "weight": 300 }, { "id": 2205, - "planId": 53, + "planId": 52, "cardId": 13211, "weight": 300 }, { "id": 2206, - "planId": 53, + "planId": 52, "cardId": 13221, "weight": 300 }, { "id": 2207, - "planId": 53, + "planId": 52, "cardId": 13231, "weight": 300 }, { "id": 2208, - "planId": 53, + "planId": 52, "cardId": 13241, "weight": 300 }, { "id": 2209, - "planId": 53, + "planId": 52, "cardId": 13251, "weight": 300 }, { "id": 2210, - "planId": 53, + "planId": 52, "cardId": 13261, "weight": 300 }, { "id": 2211, - "planId": 53, + "planId": 52, "cardId": 13212, "weight": 300 }, { "id": 2212, - "planId": 53, + "planId": 52, "cardId": 13222, "weight": 300 }, { "id": 2213, - "planId": 53, + "planId": 52, "cardId": 13232, "weight": 300 }, { "id": 2214, - "planId": 53, + "planId": 52, "cardId": 13242, "weight": 300 }, { "id": 2215, - "planId": 53, + "planId": 52, "cardId": 13252, "weight": 300 }, { "id": 2216, - "planId": 53, + "planId": 52, "cardId": 13262, "weight": 300 }, { "id": 2217, - "planId": 53, + "planId": 52, "cardId": 12211, "weight": 300 }, { "id": 2218, - "planId": 53, + "planId": 52, "cardId": 12221, "weight": 300 }, { "id": 2219, - "planId": 53, + "planId": 52, "cardId": 12231, "weight": 300 }, { "id": 2220, - "planId": 53, + "planId": 52, "cardId": 12241, "weight": 300 }, { "id": 2221, - "planId": 53, + "planId": 52, "cardId": 12251, "weight": 300 }, { "id": 2222, - "planId": 53, + "planId": 52, "cardId": 12261, "weight": 300 }, { "id": 2223, - "planId": 53, + "planId": 52, "cardId": 12212, "weight": 300 }, { "id": 2224, - "planId": 53, + "planId": 52, "cardId": 12222, "weight": 300 }, { "id": 2225, - "planId": 53, + "planId": 52, "cardId": 12232, "weight": 300 }, { "id": 2226, - "planId": 53, + "planId": 52, "cardId": 12242, "weight": 300 }, { "id": 2227, - "planId": 53, + "planId": 52, "cardId": 12252, "weight": 300 }, { "id": 2228, - "planId": 53, + "planId": 52, "cardId": 12262, "weight": 300 }, { "id": 2229, - "planId": 53, + "planId": 52, "cardId": 16211, "weight": 300 }, { "id": 2230, - "planId": 53, + "planId": 52, "cardId": 16221, "weight": 300 }, { "id": 2231, - "planId": 53, + "planId": 52, "cardId": 16231, "weight": 300 }, { "id": 2232, - "planId": 53, + "planId": 52, "cardId": 16241, "weight": 300 }, { "id": 2233, - "planId": 53, + "planId": 52, "cardId": 16251, "weight": 300 }, { "id": 2234, - "planId": 53, + "planId": 52, "cardId": 16261, "weight": 300 }, { "id": 2235, - "planId": 53, + "planId": 52, "cardId": 16212, "weight": 300 }, { "id": 2236, - "planId": 53, + "planId": 52, "cardId": 16222, "weight": 300 }, { "id": 2237, - "planId": 53, + "planId": 52, "cardId": 16232, "weight": 300 }, { "id": 2238, - "planId": 53, + "planId": 52, "cardId": 16242, "weight": 300 }, { "id": 2239, - "planId": 53, + "planId": 52, "cardId": 16252, "weight": 300 }, { "id": 2240, - "planId": 53, + "planId": 52, "cardId": 16262, "weight": 300 }, { "id": 2241, - "planId": 53, + "planId": 52, "cardId": 11311, - "weight": 150 + "weight": 50 }, { "id": 2242, - "planId": 53, + "planId": 52, "cardId": 11321, - "weight": 150 + "weight": 50 }, { "id": 2243, - "planId": 53, + "planId": 52, "cardId": 11331, - "weight": 150 + "weight": 50 }, { "id": 2244, - "planId": 53, + "planId": 52, "cardId": 11341, - "weight": 150 + "weight": 50 }, { "id": 2245, - "planId": 53, + "planId": 52, "cardId": 11312, - "weight": 150 + "weight": 50 }, { "id": 2246, - "planId": 53, + "planId": 52, "cardId": 11322, - "weight": 150 + "weight": 50 }, { "id": 2247, - "planId": 53, + "planId": 52, "cardId": 11332, - "weight": 150 + "weight": 50 }, { "id": 2248, - "planId": 53, + "planId": 52, "cardId": 11342, - "weight": 150 + "weight": 50 }, { "id": 2249, - "planId": 53, + "planId": 52, "cardId": 14311, - "weight": 150 + "weight": 50 }, { "id": 2250, - "planId": 53, + "planId": 52, "cardId": 14321, - "weight": 150 + "weight": 50 }, { "id": 2251, - "planId": 53, + "planId": 52, "cardId": 14331, - "weight": 150 + "weight": 50 }, { "id": 2252, - "planId": 53, + "planId": 52, "cardId": 14341, - "weight": 150 + "weight": 50 }, { "id": 2253, - "planId": 53, + "planId": 52, "cardId": 14312, - "weight": 150 + "weight": 50 }, { "id": 2254, - "planId": 53, + "planId": 52, "cardId": 14322, - "weight": 150 + "weight": 50 }, { "id": 2255, - "planId": 53, + "planId": 52, "cardId": 14332, - "weight": 150 + "weight": 50 }, { "id": 2256, - "planId": 53, + "planId": 52, "cardId": 14342, - "weight": 150 + "weight": 50 }, { "id": 2257, - "planId": 53, + "planId": 52, "cardId": 17311, - "weight": 150 + "weight": 50 }, { "id": 2258, - "planId": 53, + "planId": 52, "cardId": 17321, - "weight": 150 + "weight": 50 }, { "id": 2259, - "planId": 53, + "planId": 52, "cardId": 17331, - "weight": 150 + "weight": 50 }, { "id": 2260, - "planId": 53, + "planId": 52, "cardId": 17341, - "weight": 150 + "weight": 50 }, { "id": 2261, - "planId": 53, + "planId": 52, "cardId": 17312, - "weight": 150 + "weight": 50 }, { "id": 2262, - "planId": 53, + "planId": 52, "cardId": 17322, - "weight": 150 + "weight": 50 }, { "id": 2263, - "planId": 53, + "planId": 52, "cardId": 17332, - "weight": 150 + "weight": 50 }, { "id": 2264, - "planId": 53, + "planId": 52, "cardId": 17342, - "weight": 150 + "weight": 50 }, { "id": 2265, - "planId": 53, + "planId": 52, "cardId": 15311, - "weight": 150 + "weight": 50 }, { "id": 2266, - "planId": 53, + "planId": 52, "cardId": 15321, - "weight": 150 + "weight": 50 }, { "id": 2267, - "planId": 53, + "planId": 52, "cardId": 15331, - "weight": 150 + "weight": 50 }, { "id": 2268, - "planId": 53, + "planId": 52, "cardId": 15341, - "weight": 150 + "weight": 50 }, { "id": 2269, - "planId": 53, + "planId": 52, "cardId": 15312, - "weight": 150 + "weight": 50 }, { "id": 2270, - "planId": 53, + "planId": 52, "cardId": 15322, - "weight": 150 + "weight": 50 }, { "id": 2271, - "planId": 53, + "planId": 52, "cardId": 15332, - "weight": 150 + "weight": 50 }, { "id": 2272, - "planId": 53, + "planId": 52, "cardId": 15342, - "weight": 150 + "weight": 50 }, { "id": 2273, - "planId": 53, + "planId": 52, "cardId": 18311, - "weight": 150 + "weight": 50 }, { "id": 2274, - "planId": 53, + "planId": 52, "cardId": 18321, - "weight": 150 + "weight": 50 }, { "id": 2275, - "planId": 53, + "planId": 52, "cardId": 18331, - "weight": 150 + "weight": 50 }, { "id": 2276, - "planId": 53, + "planId": 52, "cardId": 18341, - "weight": 150 + "weight": 50 }, { "id": 2277, - "planId": 53, + "planId": 52, "cardId": 18312, - "weight": 150 + "weight": 50 }, { "id": 2278, - "planId": 53, + "planId": 52, "cardId": 18322, - "weight": 150 + "weight": 50 }, { "id": 2279, - "planId": 53, + "planId": 52, "cardId": 18332, - "weight": 150 + "weight": 50 }, { "id": 2280, - "planId": 53, + "planId": 52, "cardId": 18342, - "weight": 150 + "weight": 50 }, { "id": 2281, - "planId": 53, + "planId": 52, "cardId": 13311, - "weight": 150 + "weight": 50 }, { "id": 2282, - "planId": 53, + "planId": 52, "cardId": 13321, - "weight": 150 + "weight": 50 }, { "id": 2283, - "planId": 53, + "planId": 52, "cardId": 13331, - "weight": 150 + "weight": 50 }, { "id": 2284, - "planId": 53, + "planId": 52, "cardId": 13341, - "weight": 150 + "weight": 50 }, { "id": 2285, - "planId": 53, + "planId": 52, "cardId": 13312, - "weight": 150 + "weight": 50 }, { "id": 2286, - "planId": 53, + "planId": 52, "cardId": 13322, - "weight": 150 + "weight": 50 }, { "id": 2287, - "planId": 53, + "planId": 52, "cardId": 13332, - "weight": 150 + "weight": 50 }, { "id": 2288, - "planId": 53, + "planId": 52, "cardId": 13342, - "weight": 150 + "weight": 50 }, { "id": 2289, - "planId": 53, + "planId": 52, "cardId": 12311, - "weight": 150 + "weight": 50 }, { "id": 2290, - "planId": 53, + "planId": 52, "cardId": 12321, - "weight": 150 + "weight": 50 }, { "id": 2291, - "planId": 53, + "planId": 52, "cardId": 12331, - "weight": 150 + "weight": 50 }, { "id": 2292, - "planId": 53, + "planId": 52, "cardId": 12341, - "weight": 150 + "weight": 50 }, { "id": 2293, - "planId": 53, + "planId": 52, "cardId": 12312, - "weight": 150 + "weight": 50 }, { "id": 2294, - "planId": 53, + "planId": 52, "cardId": 12322, - "weight": 150 + "weight": 50 }, { "id": 2295, - "planId": 53, + "planId": 52, "cardId": 12332, - "weight": 150 + "weight": 50 }, { "id": 2296, - "planId": 53, + "planId": 52, "cardId": 12342, - "weight": 150 + "weight": 50 }, { "id": 2297, - "planId": 53, + "planId": 52, "cardId": 16311, - "weight": 150 + "weight": 50 }, { "id": 2298, - "planId": 53, + "planId": 52, "cardId": 16321, - "weight": 150 + "weight": 50 }, { "id": 2299, - "planId": 53, + "planId": 52, "cardId": 16331, - "weight": 150 + "weight": 50 }, { "id": 2300, - "planId": 53, + "planId": 52, "cardId": 16341, - "weight": 150 + "weight": 50 }, { "id": 2301, - "planId": 53, + "planId": 52, "cardId": 16312, - "weight": 150 + "weight": 50 }, { "id": 2302, - "planId": 53, + "planId": 52, "cardId": 16322, - "weight": 150 + "weight": 50 }, { "id": 2303, - "planId": 53, + "planId": 52, "cardId": 16332, - "weight": 150 + "weight": 50 }, { "id": 2304, - "planId": 53, + "planId": 52, "cardId": 16342, - "weight": 150 + "weight": 50 }, { "id": 2305, "planId": 53, "cardId": 11111, - "weight": 90 + "weight": 250 }, { "id": 2306, "planId": 53, "cardId": 11121, - "weight": 90 + "weight": 250 }, { "id": 2307, "planId": 53, "cardId": 11131, - "weight": 90 + "weight": 250 }, { "id": 2308, "planId": 53, "cardId": 11141, - "weight": 90 + "weight": 250 }, { "id": 2309, "planId": 53, "cardId": 11151, - "weight": 90 + "weight": 250 }, { "id": 2310, "planId": 53, "cardId": 11161, - "weight": 90 + "weight": 250 }, { "id": 2311, "planId": 53, "cardId": 11171, - "weight": 90 + "weight": 250 }, { "id": 2312, "planId": 53, "cardId": 11181, - "weight": 90 + "weight": 250 }, { "id": 2313, "planId": 53, "cardId": 11112, - "weight": 90 + "weight": 250 }, { "id": 2314, "planId": 53, "cardId": 11122, - "weight": 90 + "weight": 250 }, { "id": 2315, "planId": 53, "cardId": 11132, - "weight": 90 + "weight": 250 }, { "id": 2316, "planId": 53, "cardId": 11142, - "weight": 90 + "weight": 250 }, { "id": 2317, "planId": 53, "cardId": 11152, - "weight": 90 + "weight": 250 }, { "id": 2318, "planId": 53, "cardId": 11162, - "weight": 90 + "weight": 250 }, { "id": 2319, "planId": 53, "cardId": 11172, - "weight": 90 + "weight": 250 }, { "id": 2320, "planId": 53, "cardId": 11182, - "weight": 90 + "weight": 250 }, { "id": 2321, "planId": 53, "cardId": 14111, - "weight": 90 + "weight": 250 }, { "id": 2322, "planId": 53, "cardId": 14121, - "weight": 90 + "weight": 250 }, { "id": 2323, "planId": 53, "cardId": 14131, - "weight": 90 + "weight": 250 }, { "id": 2324, "planId": 53, "cardId": 14141, - "weight": 90 + "weight": 250 }, { "id": 2325, "planId": 53, "cardId": 14151, - "weight": 90 + "weight": 250 }, { "id": 2326, "planId": 53, "cardId": 14161, - "weight": 90 + "weight": 250 }, { "id": 2327, "planId": 53, "cardId": 14171, - "weight": 90 + "weight": 250 }, { "id": 2328, "planId": 53, "cardId": 14181, - "weight": 90 + "weight": 250 }, { "id": 2329, "planId": 53, "cardId": 14112, - "weight": 90 + "weight": 250 }, { "id": 2330, "planId": 53, "cardId": 14122, - "weight": 90 + "weight": 250 }, { "id": 2331, "planId": 53, "cardId": 14132, - "weight": 90 + "weight": 250 }, { "id": 2332, "planId": 53, "cardId": 14142, - "weight": 90 + "weight": 250 }, { "id": 2333, "planId": 53, "cardId": 14152, - "weight": 90 + "weight": 250 }, { "id": 2334, "planId": 53, "cardId": 14162, - "weight": 90 + "weight": 250 }, { "id": 2335, "planId": 53, "cardId": 14172, - "weight": 90 + "weight": 250 }, { "id": 2336, "planId": 53, "cardId": 14182, - "weight": 90 + "weight": 250 }, { "id": 2337, "planId": 53, "cardId": 17111, - "weight": 90 + "weight": 250 }, { "id": 2338, "planId": 53, "cardId": 17121, - "weight": 90 + "weight": 250 }, { "id": 2339, "planId": 53, "cardId": 17131, - "weight": 90 + "weight": 250 }, { "id": 2340, "planId": 53, "cardId": 17141, - "weight": 90 + "weight": 250 }, { "id": 2341, "planId": 53, "cardId": 17151, - "weight": 90 + "weight": 250 }, { "id": 2342, "planId": 53, "cardId": 17161, - "weight": 90 + "weight": 250 }, { "id": 2343, "planId": 53, "cardId": 17171, - "weight": 90 + "weight": 250 }, { "id": 2344, "planId": 53, "cardId": 17181, - "weight": 90 + "weight": 250 }, { "id": 2345, "planId": 53, "cardId": 17112, - "weight": 90 + "weight": 250 }, { "id": 2346, "planId": 53, "cardId": 17122, - "weight": 90 + "weight": 250 }, { "id": 2347, "planId": 53, "cardId": 17132, - "weight": 90 + "weight": 250 }, { "id": 2348, "planId": 53, "cardId": 17172, - "weight": 90 + "weight": 250 }, { "id": 2349, "planId": 53, "cardId": 17152, - "weight": 90 + "weight": 250 }, { "id": 2350, "planId": 53, "cardId": 17162, - "weight": 90 + "weight": 250 }, { "id": 2351, "planId": 53, "cardId": 17172, - "weight": 90 + "weight": 250 }, { "id": 2352, "planId": 53, "cardId": 17182, - "weight": 90 + "weight": 250 }, { "id": 2353, "planId": 53, "cardId": 15111, - "weight": 90 + "weight": 250 }, { "id": 2354, "planId": 53, "cardId": 15121, - "weight": 90 + "weight": 250 }, { "id": 2355, "planId": 53, "cardId": 15131, - "weight": 90 + "weight": 250 }, { "id": 2356, "planId": 53, "cardId": 15141, - "weight": 90 + "weight": 250 }, { "id": 2357, "planId": 53, "cardId": 15151, - "weight": 90 + "weight": 250 }, { "id": 2358, "planId": 53, "cardId": 15161, - "weight": 90 + "weight": 250 }, { "id": 2359, "planId": 53, "cardId": 15171, - "weight": 90 + "weight": 250 }, { "id": 2360, "planId": 53, "cardId": 15181, - "weight": 90 + "weight": 250 }, { "id": 2361, "planId": 53, "cardId": 15112, - "weight": 90 + "weight": 250 }, { "id": 2362, "planId": 53, "cardId": 15122, - "weight": 90 + "weight": 250 }, { "id": 2363, "planId": 53, "cardId": 15132, - "weight": 90 + "weight": 250 }, { "id": 2364, "planId": 53, "cardId": 15142, - "weight": 90 + "weight": 250 }, { "id": 2365, "planId": 53, "cardId": 15152, - "weight": 90 + "weight": 250 }, { "id": 2366, "planId": 53, "cardId": 15162, - "weight": 90 + "weight": 250 }, { "id": 2367, "planId": 53, "cardId": 15172, - "weight": 90 + "weight": 250 }, { "id": 2368, "planId": 53, "cardId": 15182, - "weight": 90 + "weight": 250 }, { "id": 2369, "planId": 53, "cardId": 18111, - "weight": 90 + "weight": 250 }, { "id": 2370, "planId": 53, "cardId": 18121, - "weight": 90 + "weight": 250 }, { "id": 2371, "planId": 53, "cardId": 18131, - "weight": 90 + "weight": 250 }, { "id": 2372, "planId": 53, "cardId": 18141, - "weight": 90 + "weight": 250 }, { "id": 2373, "planId": 53, "cardId": 18151, - "weight": 90 + "weight": 250 }, { "id": 2374, "planId": 53, "cardId": 18161, - "weight": 90 + "weight": 250 }, { "id": 2375, "planId": 53, "cardId": 18171, - "weight": 90 + "weight": 250 }, { "id": 2376, "planId": 53, "cardId": 18181, - "weight": 90 + "weight": 250 }, { "id": 2377, "planId": 53, "cardId": 18112, - "weight": 90 + "weight": 250 }, { "id": 2378, "planId": 53, "cardId": 18122, - "weight": 90 + "weight": 250 }, { "id": 2379, "planId": 53, "cardId": 18132, - "weight": 90 + "weight": 250 }, { "id": 2380, "planId": 53, "cardId": 18142, - "weight": 90 + "weight": 250 }, { "id": 2381, "planId": 53, "cardId": 18152, - "weight": 90 + "weight": 250 }, { "id": 2382, "planId": 53, "cardId": 18162, - "weight": 90 + "weight": 250 }, { "id": 2383, "planId": 53, "cardId": 18172, - "weight": 90 + "weight": 250 }, { "id": 2384, "planId": 53, "cardId": 18182, - "weight": 90 + "weight": 250 }, { "id": 2385, "planId": 53, "cardId": 13111, - "weight": 90 + "weight": 250 }, { "id": 2386, "planId": 53, "cardId": 13121, - "weight": 90 + "weight": 250 }, { "id": 2387, "planId": 53, "cardId": 13131, - "weight": 90 + "weight": 250 }, { "id": 2388, "planId": 53, "cardId": 13141, - "weight": 90 + "weight": 250 }, { "id": 2389, "planId": 53, "cardId": 13151, - "weight": 90 + "weight": 250 }, { "id": 2390, "planId": 53, "cardId": 13161, - "weight": 90 + "weight": 250 }, { "id": 2391, "planId": 53, "cardId": 13171, - "weight": 90 + "weight": 250 }, { "id": 2392, "planId": 53, "cardId": 13181, - "weight": 90 + "weight": 250 }, { "id": 2393, "planId": 53, "cardId": 13112, - "weight": 90 + "weight": 250 }, { "id": 2394, "planId": 53, "cardId": 13122, - "weight": 90 + "weight": 250 }, { "id": 2395, "planId": 53, "cardId": 13132, - "weight": 90 + "weight": 250 }, { "id": 2396, "planId": 53, "cardId": 13142, - "weight": 90 + "weight": 250 }, { "id": 2397, "planId": 53, "cardId": 13152, - "weight": 90 + "weight": 250 }, { "id": 2398, "planId": 53, "cardId": 13162, - "weight": 90 + "weight": 250 }, { "id": 2399, "planId": 53, "cardId": 13172, - "weight": 90 + "weight": 250 }, { "id": 2400, "planId": 53, "cardId": 13182, - "weight": 90 + "weight": 250 }, { "id": 2401, "planId": 53, "cardId": 12111, - "weight": 90 + "weight": 250 }, { "id": 2402, "planId": 53, "cardId": 12121, - "weight": 90 + "weight": 250 }, { "id": 2403, "planId": 53, "cardId": 12131, - "weight": 90 + "weight": 250 }, { "id": 2404, "planId": 53, "cardId": 12141, - "weight": 90 + "weight": 250 }, { "id": 2405, "planId": 53, "cardId": 12151, - "weight": 90 + "weight": 250 }, { "id": 2406, "planId": 53, "cardId": 12161, - "weight": 90 + "weight": 250 }, { "id": 2407, "planId": 53, "cardId": 12171, - "weight": 90 + "weight": 250 }, { "id": 2408, "planId": 53, "cardId": 12181, - "weight": 90 + "weight": 250 }, { "id": 2409, "planId": 53, "cardId": 12112, - "weight": 90 + "weight": 250 }, { "id": 2410, "planId": 53, "cardId": 12122, - "weight": 90 + "weight": 250 }, { "id": 2411, "planId": 53, "cardId": 12132, - "weight": 90 + "weight": 250 }, { "id": 2412, "planId": 53, "cardId": 12142, - "weight": 90 + "weight": 250 }, { "id": 2413, "planId": 53, "cardId": 12152, - "weight": 90 + "weight": 250 }, { "id": 2414, "planId": 53, "cardId": 12162, - "weight": 90 + "weight": 250 }, { "id": 2415, "planId": 53, "cardId": 12172, - "weight": 90 + "weight": 250 }, { "id": 2416, "planId": 53, "cardId": 12182, - "weight": 90 + "weight": 250 }, { "id": 2417, "planId": 53, "cardId": 16111, - "weight": 90 + "weight": 250 }, { "id": 2418, "planId": 53, "cardId": 16121, - "weight": 90 + "weight": 250 }, { "id": 2419, "planId": 53, "cardId": 16131, - "weight": 90 + "weight": 250 }, { "id": 2420, "planId": 53, "cardId": 16141, - "weight": 90 + "weight": 250 }, { "id": 2421, "planId": 53, "cardId": 16151, - "weight": 90 + "weight": 250 }, { "id": 2422, "planId": 53, "cardId": 16161, - "weight": 90 + "weight": 250 }, { "id": 2423, "planId": 53, "cardId": 16171, - "weight": 90 + "weight": 250 }, { "id": 2424, "planId": 53, "cardId": 16181, - "weight": 90 + "weight": 250 }, { "id": 2425, "planId": 53, "cardId": 16112, - "weight": 90 + "weight": 250 }, { "id": 2426, "planId": 53, "cardId": 16122, - "weight": 90 + "weight": 250 }, { "id": 2427, "planId": 53, "cardId": 16132, - "weight": 90 + "weight": 250 }, { "id": 2428, "planId": 53, "cardId": 16142, - "weight": 90 + "weight": 250 }, { "id": 2429, "planId": 53, "cardId": 16152, - "weight": 90 + "weight": 250 }, { "id": 2430, "planId": 53, "cardId": 16162, - "weight": 90 + "weight": 250 }, { "id": 2431, "planId": 53, "cardId": 16172, - "weight": 90 + "weight": 250 }, { "id": 2432, "planId": 53, "cardId": 16182, - "weight": 90 + "weight": 250 }, { "id": 2433, "planId": 53, "cardId": 11211, - "weight": 160 + "weight": 300 }, { "id": 2434, "planId": 53, "cardId": 11221, - "weight": 160 + "weight": 300 }, { "id": 2435, "planId": 53, "cardId": 11231, - "weight": 160 + "weight": 300 }, { "id": 2436, "planId": 53, "cardId": 11241, - "weight": 160 + "weight": 300 }, { "id": 2437, "planId": 53, "cardId": 11251, - "weight": 160 + "weight": 300 }, { "id": 2438, "planId": 53, "cardId": 11261, - "weight": 160 + "weight": 300 }, { "id": 2439, "planId": 53, "cardId": 11212, - "weight": 160 + "weight": 300 }, { "id": 2440, "planId": 53, "cardId": 11222, - "weight": 160 + "weight": 300 }, { "id": 2441, "planId": 53, "cardId": 11232, - "weight": 160 + "weight": 300 }, { "id": 2442, "planId": 53, "cardId": 11242, - "weight": 160 + "weight": 300 }, { "id": 2443, "planId": 53, "cardId": 11252, - "weight": 160 + "weight": 300 }, { "id": 2444, "planId": 53, "cardId": 11262, - "weight": 160 + "weight": 300 }, { "id": 2445, "planId": 53, "cardId": 14211, - "weight": 160 + "weight": 300 }, { "id": 2446, "planId": 53, "cardId": 14221, - "weight": 160 + "weight": 300 }, { "id": 2447, "planId": 53, "cardId": 14231, - "weight": 160 + "weight": 300 }, { "id": 2448, "planId": 53, "cardId": 14241, - "weight": 160 + "weight": 300 }, { "id": 2449, "planId": 53, "cardId": 14251, - "weight": 160 + "weight": 300 }, { "id": 2450, "planId": 53, "cardId": 14261, - "weight": 160 + "weight": 300 }, { "id": 2451, "planId": 53, "cardId": 14212, - "weight": 160 + "weight": 300 }, { "id": 2452, "planId": 53, "cardId": 14222, - "weight": 160 + "weight": 300 }, { "id": 2453, "planId": 53, "cardId": 14232, - "weight": 160 + "weight": 300 }, { "id": 2454, "planId": 53, "cardId": 14242, - "weight": 160 + "weight": 300 }, { "id": 2455, "planId": 53, "cardId": 14252, - "weight": 160 + "weight": 300 }, { "id": 2456, "planId": 53, "cardId": 14262, - "weight": 160 + "weight": 300 }, { "id": 2457, "planId": 53, "cardId": 17211, - "weight": 160 + "weight": 300 }, { "id": 2458, "planId": 53, "cardId": 17221, - "weight": 160 + "weight": 300 }, { "id": 2459, "planId": 53, "cardId": 17231, - "weight": 160 + "weight": 300 }, { "id": 2460, "planId": 53, "cardId": 17241, - "weight": 160 + "weight": 300 }, { "id": 2461, "planId": 53, "cardId": 17251, - "weight": 160 + "weight": 300 }, { "id": 2462, "planId": 53, "cardId": 17261, - "weight": 160 + "weight": 300 }, { "id": 2463, "planId": 53, "cardId": 17212, - "weight": 160 + "weight": 300 }, { "id": 2464, "planId": 53, "cardId": 17222, - "weight": 160 + "weight": 300 }, { "id": 2465, "planId": 53, "cardId": 17232, - "weight": 160 + "weight": 300 }, { "id": 2466, "planId": 53, "cardId": 17242, - "weight": 160 + "weight": 300 }, { "id": 2467, "planId": 53, "cardId": 17252, - "weight": 160 + "weight": 300 }, { "id": 2468, "planId": 53, "cardId": 17262, - "weight": 160 + "weight": 300 }, { "id": 2469, "planId": 53, "cardId": 15211, - "weight": 160 + "weight": 300 }, { "id": 2470, "planId": 53, "cardId": 15221, - "weight": 160 + "weight": 300 }, { "id": 2471, "planId": 53, "cardId": 15231, - "weight": 160 + "weight": 300 }, { "id": 2472, "planId": 53, "cardId": 15241, - "weight": 160 + "weight": 300 }, { "id": 2473, "planId": 53, "cardId": 15251, - "weight": 160 + "weight": 300 }, { "id": 2474, "planId": 53, "cardId": 15261, - "weight": 160 + "weight": 300 }, { "id": 2475, "planId": 53, "cardId": 15212, - "weight": 160 + "weight": 300 }, { "id": 2476, "planId": 53, "cardId": 15222, - "weight": 160 + "weight": 300 }, { "id": 2477, "planId": 53, "cardId": 15232, - "weight": 160 + "weight": 300 }, { "id": 2478, "planId": 53, "cardId": 15242, - "weight": 160 + "weight": 300 }, { "id": 2479, "planId": 53, "cardId": 15252, - "weight": 160 + "weight": 300 }, { "id": 2480, "planId": 53, "cardId": 15262, - "weight": 160 + "weight": 300 }, { "id": 2481, "planId": 53, "cardId": 18211, - "weight": 160 + "weight": 300 }, { "id": 2482, "planId": 53, "cardId": 18221, - "weight": 160 + "weight": 300 }, { "id": 2483, "planId": 53, "cardId": 18231, - "weight": 160 + "weight": 300 }, { "id": 2484, "planId": 53, "cardId": 18241, - "weight": 160 + "weight": 300 }, { "id": 2485, "planId": 53, "cardId": 18251, - "weight": 160 + "weight": 300 }, { "id": 2486, "planId": 53, "cardId": 18261, - "weight": 160 + "weight": 300 }, { "id": 2487, "planId": 53, "cardId": 18212, - "weight": 160 + "weight": 300 }, { "id": 2488, "planId": 53, "cardId": 18222, - "weight": 160 + "weight": 300 }, { "id": 2489, "planId": 53, "cardId": 18232, - "weight": 160 + "weight": 300 }, { "id": 2490, "planId": 53, "cardId": 18242, - "weight": 160 + "weight": 300 }, { "id": 2491, "planId": 53, "cardId": 18252, - "weight": 160 + "weight": 300 }, { "id": 2492, "planId": 53, "cardId": 18262, - "weight": 160 + "weight": 300 }, { "id": 2493, "planId": 53, "cardId": 13211, - "weight": 160 + "weight": 300 }, { "id": 2494, "planId": 53, "cardId": 13221, - "weight": 160 + "weight": 300 }, { "id": 2495, "planId": 53, "cardId": 13231, - "weight": 160 + "weight": 300 }, { "id": 2496, "planId": 53, "cardId": 13241, - "weight": 160 + "weight": 300 }, { "id": 2497, "planId": 53, "cardId": 13251, - "weight": 160 + "weight": 300 }, { "id": 2498, "planId": 53, "cardId": 13261, - "weight": 160 + "weight": 300 }, { "id": 2499, "planId": 53, "cardId": 13212, - "weight": 160 + "weight": 300 }, { "id": 2500, "planId": 53, "cardId": 13222, - "weight": 160 + "weight": 300 }, { "id": 2501, "planId": 53, "cardId": 13232, - "weight": 160 + "weight": 300 }, { "id": 2502, "planId": 53, "cardId": 13242, - "weight": 160 + "weight": 300 }, { "id": 2503, "planId": 53, "cardId": 13252, - "weight": 160 + "weight": 300 }, { "id": 2504, "planId": 53, "cardId": 13262, - "weight": 160 + "weight": 300 }, { "id": 2505, "planId": 53, "cardId": 12211, - "weight": 160 + "weight": 300 }, { "id": 2506, "planId": 53, "cardId": 12221, - "weight": 160 + "weight": 300 }, { "id": 2507, "planId": 53, "cardId": 12231, - "weight": 160 + "weight": 300 }, { "id": 2508, "planId": 53, "cardId": 12241, - "weight": 160 + "weight": 300 }, { "id": 2509, "planId": 53, "cardId": 12251, - "weight": 160 + "weight": 300 }, { "id": 2510, "planId": 53, "cardId": 12261, - "weight": 160 + "weight": 300 }, { "id": 2511, "planId": 53, "cardId": 12212, - "weight": 160 + "weight": 300 }, { "id": 2512, "planId": 53, "cardId": 12222, - "weight": 160 + "weight": 300 }, { "id": 2513, "planId": 53, "cardId": 12232, - "weight": 160 + "weight": 300 }, { "id": 2514, "planId": 53, "cardId": 12242, - "weight": 160 + "weight": 300 }, { "id": 2515, "planId": 53, "cardId": 12252, - "weight": 160 + "weight": 300 }, { "id": 2516, "planId": 53, "cardId": 12262, - "weight": 160 + "weight": 300 }, { "id": 2517, "planId": 53, "cardId": 16211, - "weight": 160 + "weight": 300 }, { "id": 2518, "planId": 53, "cardId": 16221, - "weight": 160 + "weight": 300 }, { "id": 2519, "planId": 53, "cardId": 16231, - "weight": 160 + "weight": 300 }, { "id": 2520, "planId": 53, "cardId": 16241, - "weight": 160 + "weight": 300 }, { "id": 2521, "planId": 53, "cardId": 16251, - "weight": 160 + "weight": 300 }, { "id": 2522, "planId": 53, "cardId": 16261, - "weight": 160 + "weight": 300 }, { "id": 2523, "planId": 53, "cardId": 16212, - "weight": 160 + "weight": 300 }, { "id": 2524, "planId": 53, "cardId": 16222, - "weight": 160 + "weight": 300 }, { "id": 2525, "planId": 53, "cardId": 16232, - "weight": 160 + "weight": 300 }, { "id": 2526, "planId": 53, "cardId": 16242, - "weight": 160 + "weight": 300 }, { "id": 2527, "planId": 53, "cardId": 16252, - "weight": 160 + "weight": 300 }, { "id": 2528, "planId": 53, "cardId": 16262, - "weight": 160 + "weight": 300 }, { "id": 2529, "planId": 53, "cardId": 11311, - "weight": 180 + "weight": 50 }, { "id": 2530, "planId": 53, "cardId": 11321, - "weight": 180 + "weight": 50 }, { "id": 2531, "planId": 53, "cardId": 11331, - "weight": 180 + "weight": 50 }, { "id": 2532, "planId": 53, "cardId": 11341, - "weight": 180 + "weight": 50 }, { "id": 2533, "planId": 53, "cardId": 11312, - "weight": 180 + "weight": 50 }, { "id": 2534, "planId": 53, "cardId": 11322, - "weight": 180 + "weight": 50 }, { "id": 2535, "planId": 53, "cardId": 11332, - "weight": 180 + "weight": 50 }, { "id": 2536, "planId": 53, "cardId": 11342, - "weight": 180 + "weight": 50 }, { "id": 2537, "planId": 53, "cardId": 14311, - "weight": 180 + "weight": 50 }, { "id": 2538, "planId": 53, "cardId": 14321, - "weight": 180 + "weight": 50 }, { "id": 2539, "planId": 53, "cardId": 14331, - "weight": 180 + "weight": 50 }, { "id": 2540, "planId": 53, "cardId": 14341, - "weight": 180 + "weight": 50 }, { "id": 2541, "planId": 53, "cardId": 14312, - "weight": 180 + "weight": 50 }, { "id": 2542, "planId": 53, "cardId": 14322, - "weight": 180 + "weight": 50 }, { "id": 2543, "planId": 53, "cardId": 14332, - "weight": 180 + "weight": 50 }, { "id": 2544, "planId": 53, "cardId": 14342, - "weight": 180 + "weight": 50 }, { "id": 2545, "planId": 53, "cardId": 17311, - "weight": 180 + "weight": 50 }, { "id": 2546, "planId": 53, "cardId": 17321, - "weight": 180 + "weight": 50 }, { "id": 2547, "planId": 53, "cardId": 17331, - "weight": 180 + "weight": 50 }, { "id": 2548, "planId": 53, "cardId": 17341, - "weight": 180 + "weight": 50 }, { "id": 2549, "planId": 53, "cardId": 17312, - "weight": 180 + "weight": 50 }, { "id": 2550, "planId": 53, "cardId": 17322, - "weight": 180 + "weight": 50 }, { "id": 2551, "planId": 53, "cardId": 17332, - "weight": 180 + "weight": 50 }, { "id": 2552, "planId": 53, "cardId": 17342, - "weight": 180 + "weight": 50 }, { "id": 2553, "planId": 53, "cardId": 15311, - "weight": 180 + "weight": 50 }, { "id": 2554, "planId": 53, "cardId": 15321, - "weight": 180 + "weight": 50 }, { "id": 2555, "planId": 53, "cardId": 15331, - "weight": 180 + "weight": 50 }, { "id": 2556, "planId": 53, "cardId": 15341, - "weight": 180 + "weight": 50 }, { "id": 2557, "planId": 53, "cardId": 15312, - "weight": 180 + "weight": 50 }, { "id": 2558, "planId": 53, "cardId": 15322, - "weight": 180 + "weight": 50 }, { "id": 2559, "planId": 53, "cardId": 15332, - "weight": 180 + "weight": 50 }, { "id": 2560, "planId": 53, "cardId": 15342, - "weight": 180 + "weight": 50 }, { "id": 2561, "planId": 53, "cardId": 18311, - "weight": 180 + "weight": 50 }, { "id": 2562, "planId": 53, "cardId": 18321, - "weight": 180 + "weight": 50 }, { "id": 2563, "planId": 53, "cardId": 18331, - "weight": 180 + "weight": 50 }, { "id": 2564, "planId": 53, "cardId": 18341, - "weight": 180 + "weight": 50 }, { "id": 2565, "planId": 53, "cardId": 18312, - "weight": 180 + "weight": 50 }, { "id": 2566, "planId": 53, "cardId": 18322, - "weight": 180 + "weight": 50 }, { "id": 2567, "planId": 53, "cardId": 18332, - "weight": 180 + "weight": 50 }, { "id": 2568, "planId": 53, "cardId": 18342, - "weight": 180 + "weight": 50 }, { "id": 2569, "planId": 53, "cardId": 13311, - "weight": 180 + "weight": 50 }, { "id": 2570, "planId": 53, "cardId": 13321, - "weight": 180 + "weight": 50 }, { "id": 2571, "planId": 53, "cardId": 13331, - "weight": 180 + "weight": 50 }, { "id": 2572, "planId": 53, "cardId": 13341, - "weight": 180 + "weight": 50 }, { "id": 2573, "planId": 53, "cardId": 13312, - "weight": 180 + "weight": 50 }, { "id": 2574, "planId": 53, "cardId": 13322, - "weight": 180 + "weight": 50 }, { "id": 2575, "planId": 53, "cardId": 13332, - "weight": 180 + "weight": 50 }, { "id": 2576, "planId": 53, "cardId": 13342, - "weight": 180 + "weight": 50 }, { "id": 2577, "planId": 53, "cardId": 12311, - "weight": 180 + "weight": 50 }, { "id": 2578, "planId": 53, "cardId": 12321, - "weight": 180 + "weight": 50 }, { "id": 2579, "planId": 53, "cardId": 12331, - "weight": 180 + "weight": 50 }, { "id": 2580, "planId": 53, "cardId": 12341, - "weight": 180 + "weight": 50 }, { "id": 2581, "planId": 53, "cardId": 12312, - "weight": 180 + "weight": 50 }, { "id": 2582, "planId": 53, "cardId": 12322, - "weight": 180 + "weight": 50 }, { "id": 2583, "planId": 53, "cardId": 12332, - "weight": 180 + "weight": 50 }, { "id": 2584, "planId": 53, "cardId": 12342, - "weight": 180 + "weight": 50 }, { "id": 2585, "planId": 53, "cardId": 16311, - "weight": 180 + "weight": 50 }, { "id": 2586, "planId": 53, "cardId": 16321, - "weight": 180 + "weight": 50 }, { "id": 2587, "planId": 53, "cardId": 16331, - "weight": 180 + "weight": 50 }, { "id": 2588, "planId": 53, "cardId": 16341, - "weight": 180 + "weight": 50 }, { "id": 2589, "planId": 53, "cardId": 16312, - "weight": 180 + "weight": 50 }, { "id": 2590, "planId": 53, "cardId": 16322, - "weight": 180 + "weight": 50 }, { "id": 2591, "planId": 53, "cardId": 16332, - "weight": 180 + "weight": 50 }, { "id": 2592, "planId": 53, "cardId": 16342, - "weight": 180 + "weight": 50 }, { "id": 2593, @@ -16321,4419 +16321,4419 @@ }, { "id": 2721, - "planId": 62, + "planId": 61, "cardId": 11211, "weight": 300 }, { "id": 2722, - "planId": 62, + "planId": 61, "cardId": 11221, "weight": 300 }, { "id": 2723, - "planId": 62, + "planId": 61, "cardId": 11231, "weight": 300 }, { "id": 2724, - "planId": 62, + "planId": 61, "cardId": 11241, "weight": 300 }, { "id": 2725, - "planId": 62, + "planId": 61, "cardId": 11251, "weight": 300 }, { "id": 2726, - "planId": 62, + "planId": 61, "cardId": 11261, "weight": 300 }, { "id": 2727, - "planId": 62, + "planId": 61, "cardId": 11212, "weight": 300 }, { "id": 2728, - "planId": 62, + "planId": 61, "cardId": 11222, "weight": 300 }, { "id": 2729, - "planId": 62, + "planId": 61, "cardId": 11232, "weight": 300 }, { "id": 2730, - "planId": 62, + "planId": 61, "cardId": 11242, "weight": 300 }, { "id": 2731, - "planId": 62, + "planId": 61, "cardId": 11252, "weight": 300 }, { "id": 2732, - "planId": 62, + "planId": 61, "cardId": 11262, "weight": 300 }, { "id": 2733, - "planId": 62, + "planId": 61, "cardId": 14211, "weight": 300 }, { "id": 2734, - "planId": 62, + "planId": 61, "cardId": 14221, "weight": 300 }, { "id": 2735, - "planId": 62, + "planId": 61, "cardId": 14231, "weight": 300 }, { "id": 2736, - "planId": 62, + "planId": 61, "cardId": 14241, "weight": 300 }, { "id": 2737, - "planId": 62, + "planId": 61, "cardId": 14251, "weight": 300 }, { "id": 2738, - "planId": 62, + "planId": 61, "cardId": 14261, "weight": 300 }, { "id": 2739, - "planId": 62, + "planId": 61, "cardId": 14212, "weight": 300 }, { "id": 2740, - "planId": 62, + "planId": 61, "cardId": 14222, "weight": 300 }, { "id": 2741, - "planId": 62, + "planId": 61, "cardId": 14232, "weight": 300 }, { "id": 2742, - "planId": 62, + "planId": 61, "cardId": 14242, "weight": 300 }, { "id": 2743, - "planId": 62, + "planId": 61, "cardId": 14252, "weight": 300 }, { "id": 2744, - "planId": 62, + "planId": 61, "cardId": 14262, "weight": 300 }, { "id": 2745, - "planId": 62, + "planId": 61, "cardId": 17211, "weight": 300 }, { "id": 2746, - "planId": 62, + "planId": 61, "cardId": 17221, "weight": 300 }, { "id": 2747, - "planId": 62, + "planId": 61, "cardId": 17231, "weight": 300 }, { "id": 2748, - "planId": 62, + "planId": 61, "cardId": 17241, "weight": 300 }, { "id": 2749, - "planId": 62, + "planId": 61, "cardId": 17251, "weight": 300 }, { "id": 2750, - "planId": 62, + "planId": 61, "cardId": 17261, "weight": 300 }, { "id": 2751, - "planId": 62, + "planId": 61, "cardId": 17212, "weight": 300 }, { "id": 2752, - "planId": 62, + "planId": 61, "cardId": 17222, "weight": 300 }, { "id": 2753, - "planId": 62, + "planId": 61, "cardId": 17232, "weight": 300 }, { "id": 2754, - "planId": 62, + "planId": 61, "cardId": 17242, "weight": 300 }, { "id": 2755, - "planId": 62, + "planId": 61, "cardId": 17252, "weight": 300 }, { "id": 2756, - "planId": 62, + "planId": 61, "cardId": 17262, "weight": 300 }, { "id": 2757, - "planId": 62, + "planId": 61, "cardId": 15211, "weight": 300 }, { "id": 2758, - "planId": 62, + "planId": 61, "cardId": 15221, "weight": 300 }, { "id": 2759, - "planId": 62, + "planId": 61, "cardId": 15231, "weight": 300 }, { "id": 2760, - "planId": 62, + "planId": 61, "cardId": 15241, "weight": 300 }, { "id": 2761, - "planId": 62, + "planId": 61, "cardId": 15251, "weight": 300 }, { "id": 2762, - "planId": 62, + "planId": 61, "cardId": 15261, "weight": 300 }, { "id": 2763, - "planId": 62, + "planId": 61, "cardId": 15212, "weight": 300 }, { "id": 2764, - "planId": 62, + "planId": 61, "cardId": 15222, "weight": 300 }, { "id": 2765, - "planId": 62, + "planId": 61, "cardId": 15232, "weight": 300 }, { "id": 2766, - "planId": 62, + "planId": 61, "cardId": 15242, "weight": 300 }, { "id": 2767, - "planId": 62, + "planId": 61, "cardId": 15252, "weight": 300 }, { "id": 2768, - "planId": 62, + "planId": 61, "cardId": 15262, "weight": 300 }, { "id": 2769, - "planId": 62, + "planId": 61, "cardId": 18211, "weight": 300 }, { "id": 2770, - "planId": 62, + "planId": 61, "cardId": 18221, "weight": 300 }, { "id": 2771, - "planId": 62, + "planId": 61, "cardId": 18231, "weight": 300 }, { "id": 2772, - "planId": 62, + "planId": 61, "cardId": 18241, "weight": 300 }, { "id": 2773, - "planId": 62, + "planId": 61, "cardId": 18251, "weight": 300 }, { "id": 2774, - "planId": 62, + "planId": 61, "cardId": 18261, "weight": 300 }, { "id": 2775, - "planId": 62, + "planId": 61, "cardId": 18212, "weight": 300 }, { "id": 2776, - "planId": 62, + "planId": 61, "cardId": 18222, "weight": 300 }, { "id": 2777, - "planId": 62, + "planId": 61, "cardId": 18232, "weight": 300 }, { "id": 2778, - "planId": 62, + "planId": 61, "cardId": 18242, "weight": 300 }, { "id": 2779, - "planId": 62, + "planId": 61, "cardId": 18252, "weight": 300 }, { "id": 2780, - "planId": 62, + "planId": 61, "cardId": 18262, "weight": 300 }, { "id": 2781, - "planId": 62, + "planId": 61, "cardId": 13211, "weight": 300 }, { "id": 2782, - "planId": 62, + "planId": 61, "cardId": 13221, "weight": 300 }, { "id": 2783, - "planId": 62, + "planId": 61, "cardId": 13231, "weight": 300 }, { "id": 2784, - "planId": 62, + "planId": 61, "cardId": 13241, "weight": 300 }, { "id": 2785, - "planId": 62, + "planId": 61, "cardId": 13251, "weight": 300 }, { "id": 2786, - "planId": 62, + "planId": 61, "cardId": 13261, "weight": 300 }, { "id": 2787, - "planId": 62, + "planId": 61, "cardId": 13212, "weight": 300 }, { "id": 2788, - "planId": 62, + "planId": 61, "cardId": 13222, "weight": 300 }, { "id": 2789, - "planId": 62, + "planId": 61, "cardId": 13232, "weight": 300 }, { "id": 2790, - "planId": 62, + "planId": 61, "cardId": 13242, "weight": 300 }, { "id": 2791, - "planId": 62, + "planId": 61, "cardId": 13252, "weight": 300 }, { "id": 2792, - "planId": 62, + "planId": 61, "cardId": 13262, "weight": 300 }, { "id": 2793, - "planId": 62, + "planId": 61, "cardId": 12211, "weight": 300 }, { "id": 2794, - "planId": 62, + "planId": 61, "cardId": 12221, "weight": 300 }, { "id": 2795, - "planId": 62, + "planId": 61, "cardId": 12231, "weight": 300 }, { "id": 2796, - "planId": 62, + "planId": 61, "cardId": 12241, "weight": 300 }, { "id": 2797, - "planId": 62, + "planId": 61, "cardId": 12251, "weight": 300 }, { "id": 2798, - "planId": 62, + "planId": 61, "cardId": 12261, "weight": 300 }, { "id": 2799, - "planId": 62, + "planId": 61, "cardId": 12212, "weight": 300 }, { "id": 2800, - "planId": 62, + "planId": 61, "cardId": 12222, "weight": 300 }, { "id": 2801, - "planId": 62, + "planId": 61, "cardId": 12232, "weight": 300 }, { "id": 2802, - "planId": 62, + "planId": 61, "cardId": 12242, "weight": 300 }, { "id": 2803, - "planId": 62, + "planId": 61, "cardId": 12252, "weight": 300 }, { "id": 2804, - "planId": 62, + "planId": 61, "cardId": 12262, "weight": 300 }, { "id": 2805, - "planId": 62, + "planId": 61, "cardId": 16211, "weight": 300 }, { "id": 2806, - "planId": 62, + "planId": 61, "cardId": 16221, "weight": 300 }, { "id": 2807, - "planId": 62, + "planId": 61, "cardId": 16231, "weight": 300 }, { "id": 2808, - "planId": 62, + "planId": 61, "cardId": 16241, "weight": 300 }, { "id": 2809, - "planId": 62, + "planId": 61, "cardId": 16251, "weight": 300 }, { "id": 2810, - "planId": 62, + "planId": 61, "cardId": 16261, "weight": 300 }, { "id": 2811, - "planId": 62, + "planId": 61, "cardId": 16212, "weight": 300 }, { "id": 2812, - "planId": 62, + "planId": 61, "cardId": 16222, "weight": 300 }, { "id": 2813, - "planId": 62, + "planId": 61, "cardId": 16232, "weight": 300 }, { "id": 2814, - "planId": 62, + "planId": 61, "cardId": 16242, "weight": 300 }, { "id": 2815, - "planId": 62, + "planId": 61, "cardId": 16252, "weight": 300 }, { "id": 2816, - "planId": 62, + "planId": 61, "cardId": 16262, "weight": 300 }, { "id": 2817, - "planId": 63, + "planId": 61, "cardId": 11311, "weight": 50 }, { "id": 2818, - "planId": 63, + "planId": 61, "cardId": 11321, "weight": 50 }, { "id": 2819, - "planId": 63, + "planId": 61, "cardId": 11331, "weight": 50 }, { "id": 2820, - "planId": 63, + "planId": 61, "cardId": 11341, "weight": 50 }, { "id": 2821, - "planId": 63, + "planId": 61, "cardId": 11312, "weight": 50 }, { "id": 2822, - "planId": 63, + "planId": 61, "cardId": 11322, "weight": 50 }, { "id": 2823, - "planId": 63, + "planId": 61, "cardId": 11332, "weight": 50 }, { "id": 2824, - "planId": 63, + "planId": 61, "cardId": 11342, "weight": 50 }, { "id": 2825, - "planId": 63, + "planId": 61, "cardId": 14311, "weight": 50 }, { "id": 2826, - "planId": 63, + "planId": 61, "cardId": 14321, "weight": 50 }, { "id": 2827, - "planId": 63, + "planId": 61, "cardId": 14331, "weight": 50 }, { "id": 2828, - "planId": 63, + "planId": 61, "cardId": 14341, "weight": 50 }, { "id": 2829, - "planId": 63, + "planId": 61, "cardId": 14312, "weight": 50 }, { "id": 2830, - "planId": 63, + "planId": 61, "cardId": 14322, "weight": 50 }, { "id": 2831, - "planId": 63, + "planId": 61, "cardId": 14332, "weight": 50 }, { "id": 2832, - "planId": 63, + "planId": 61, "cardId": 14342, "weight": 50 }, { "id": 2833, - "planId": 63, + "planId": 61, "cardId": 17311, "weight": 50 }, { "id": 2834, - "planId": 63, + "planId": 61, "cardId": 17321, "weight": 50 }, { "id": 2835, - "planId": 63, + "planId": 61, "cardId": 17331, "weight": 50 }, { "id": 2836, - "planId": 63, + "planId": 61, "cardId": 17341, "weight": 50 }, { "id": 2837, - "planId": 63, + "planId": 61, "cardId": 17312, "weight": 50 }, { "id": 2838, - "planId": 63, + "planId": 61, "cardId": 17322, "weight": 50 }, { "id": 2839, - "planId": 63, + "planId": 61, "cardId": 17332, "weight": 50 }, { "id": 2840, - "planId": 63, + "planId": 61, "cardId": 17342, "weight": 50 }, { "id": 2841, - "planId": 63, + "planId": 61, "cardId": 15311, "weight": 50 }, { "id": 2842, - "planId": 63, + "planId": 61, "cardId": 15321, "weight": 50 }, { "id": 2843, - "planId": 63, + "planId": 61, "cardId": 15331, "weight": 50 }, { "id": 2844, - "planId": 63, + "planId": 61, "cardId": 15341, "weight": 50 }, { "id": 2845, - "planId": 63, + "planId": 61, "cardId": 15312, "weight": 50 }, { "id": 2846, - "planId": 63, + "planId": 61, "cardId": 15322, "weight": 50 }, { "id": 2847, - "planId": 63, + "planId": 61, "cardId": 15332, "weight": 50 }, { "id": 2848, - "planId": 63, + "planId": 61, "cardId": 15342, "weight": 50 }, { "id": 2849, - "planId": 63, + "planId": 61, "cardId": 18311, "weight": 50 }, { "id": 2850, - "planId": 63, + "planId": 61, "cardId": 18321, "weight": 50 }, { "id": 2851, - "planId": 63, + "planId": 61, "cardId": 18331, "weight": 50 }, { "id": 2852, - "planId": 63, + "planId": 61, "cardId": 18341, "weight": 50 }, { "id": 2853, - "planId": 63, + "planId": 61, "cardId": 18312, "weight": 50 }, { "id": 2854, - "planId": 63, + "planId": 61, "cardId": 18322, "weight": 50 }, { "id": 2855, - "planId": 63, + "planId": 61, "cardId": 18332, "weight": 50 }, { "id": 2856, - "planId": 63, + "planId": 61, "cardId": 18342, "weight": 50 }, { "id": 2857, - "planId": 63, + "planId": 61, "cardId": 13311, "weight": 50 }, { "id": 2858, - "planId": 63, + "planId": 61, "cardId": 13321, "weight": 50 }, { "id": 2859, - "planId": 63, + "planId": 61, "cardId": 13331, "weight": 50 }, { "id": 2860, - "planId": 63, + "planId": 61, "cardId": 13341, "weight": 50 }, { "id": 2861, - "planId": 63, + "planId": 61, "cardId": 13312, "weight": 50 }, { "id": 2862, - "planId": 63, + "planId": 61, "cardId": 13322, "weight": 50 }, { "id": 2863, - "planId": 63, + "planId": 61, "cardId": 13332, "weight": 50 }, { "id": 2864, - "planId": 63, + "planId": 61, "cardId": 13342, "weight": 50 }, { "id": 2865, - "planId": 63, + "planId": 61, "cardId": 12311, "weight": 50 }, { "id": 2866, - "planId": 63, + "planId": 61, "cardId": 12321, "weight": 50 }, { "id": 2867, - "planId": 63, + "planId": 61, "cardId": 12331, "weight": 50 }, { "id": 2868, - "planId": 63, + "planId": 61, "cardId": 12341, "weight": 50 }, { "id": 2869, - "planId": 63, + "planId": 61, "cardId": 12312, "weight": 50 }, { "id": 2870, - "planId": 63, + "planId": 61, "cardId": 12322, "weight": 50 }, { "id": 2871, - "planId": 63, + "planId": 61, "cardId": 12332, "weight": 50 }, { "id": 2872, - "planId": 63, + "planId": 61, "cardId": 12342, "weight": 50 }, { "id": 2873, - "planId": 63, + "planId": 61, "cardId": 16311, "weight": 50 }, { "id": 2874, - "planId": 63, + "planId": 61, "cardId": 16321, "weight": 50 }, { "id": 2875, - "planId": 63, + "planId": 61, "cardId": 16331, "weight": 50 }, { "id": 2876, - "planId": 63, + "planId": 61, "cardId": 16341, "weight": 50 }, { "id": 2877, - "planId": 63, + "planId": 61, "cardId": 16312, "weight": 50 }, { "id": 2878, - "planId": 63, + "planId": 61, "cardId": 16322, "weight": 50 }, { "id": 2879, - "planId": 63, + "planId": 61, "cardId": 16332, "weight": 50 }, { "id": 2880, - "planId": 63, + "planId": 61, "cardId": 16342, "weight": 50 }, { "id": 2881, - "planId": 63, + "planId": 62, "cardId": 11111, - "weight": 200 + "weight": 250 }, { "id": 2882, - "planId": 63, + "planId": 62, "cardId": 11121, - "weight": 200 + "weight": 250 }, { "id": 2883, - "planId": 63, + "planId": 62, "cardId": 11131, - "weight": 200 + "weight": 250 }, { "id": 2884, - "planId": 63, + "planId": 62, "cardId": 11141, - "weight": 200 + "weight": 250 }, { "id": 2885, - "planId": 63, + "planId": 62, "cardId": 11151, - "weight": 200 + "weight": 250 }, { "id": 2886, - "planId": 63, + "planId": 62, "cardId": 11161, - "weight": 200 + "weight": 250 }, { "id": 2887, - "planId": 63, + "planId": 62, "cardId": 11171, - "weight": 200 + "weight": 250 }, { "id": 2888, - "planId": 63, + "planId": 62, "cardId": 11181, - "weight": 200 + "weight": 250 }, { "id": 2889, - "planId": 63, + "planId": 62, "cardId": 11112, - "weight": 200 + "weight": 250 }, { "id": 2890, - "planId": 63, + "planId": 62, "cardId": 11122, - "weight": 200 + "weight": 250 }, { "id": 2891, - "planId": 63, + "planId": 62, "cardId": 11132, - "weight": 200 + "weight": 250 }, { "id": 2892, - "planId": 63, + "planId": 62, "cardId": 11142, - "weight": 200 + "weight": 250 }, { "id": 2893, - "planId": 63, + "planId": 62, "cardId": 11152, - "weight": 200 + "weight": 250 }, { "id": 2894, - "planId": 63, + "planId": 62, "cardId": 11162, - "weight": 200 + "weight": 250 }, { "id": 2895, - "planId": 63, + "planId": 62, "cardId": 11172, - "weight": 200 + "weight": 250 }, { "id": 2896, - "planId": 63, + "planId": 62, "cardId": 11182, - "weight": 200 + "weight": 250 }, { "id": 2897, - "planId": 63, + "planId": 62, "cardId": 14111, - "weight": 200 + "weight": 250 }, { "id": 2898, - "planId": 63, + "planId": 62, "cardId": 14121, - "weight": 200 + "weight": 250 }, { "id": 2899, - "planId": 63, + "planId": 62, "cardId": 14131, - "weight": 200 + "weight": 250 }, { "id": 2900, - "planId": 63, + "planId": 62, "cardId": 14141, - "weight": 200 + "weight": 250 }, { "id": 2901, - "planId": 63, + "planId": 62, "cardId": 14151, - "weight": 200 + "weight": 250 }, { "id": 2902, - "planId": 63, + "planId": 62, "cardId": 14161, - "weight": 200 + "weight": 250 }, { "id": 2903, - "planId": 63, + "planId": 62, "cardId": 14171, - "weight": 200 + "weight": 250 }, { "id": 2904, - "planId": 63, + "planId": 62, "cardId": 14181, - "weight": 200 + "weight": 250 }, { "id": 2905, - "planId": 63, + "planId": 62, "cardId": 14112, - "weight": 200 + "weight": 250 }, { "id": 2906, - "planId": 63, + "planId": 62, "cardId": 14122, - "weight": 200 + "weight": 250 }, { "id": 2907, - "planId": 63, + "planId": 62, "cardId": 14132, - "weight": 200 + "weight": 250 }, { "id": 2908, - "planId": 63, + "planId": 62, "cardId": 14142, - "weight": 200 + "weight": 250 }, { "id": 2909, - "planId": 63, + "planId": 62, "cardId": 14152, - "weight": 200 + "weight": 250 }, { "id": 2910, - "planId": 63, + "planId": 62, "cardId": 14162, - "weight": 200 + "weight": 250 }, { "id": 2911, - "planId": 63, + "planId": 62, "cardId": 14172, - "weight": 200 + "weight": 250 }, { "id": 2912, - "planId": 63, + "planId": 62, "cardId": 14182, - "weight": 200 + "weight": 250 }, { "id": 2913, - "planId": 63, + "planId": 62, "cardId": 17111, - "weight": 200 + "weight": 250 }, { "id": 2914, - "planId": 63, + "planId": 62, "cardId": 17121, - "weight": 200 + "weight": 250 }, { "id": 2915, - "planId": 63, + "planId": 62, "cardId": 17131, - "weight": 200 + "weight": 250 }, { "id": 2916, - "planId": 63, + "planId": 62, "cardId": 17141, - "weight": 200 + "weight": 250 }, { "id": 2917, - "planId": 63, + "planId": 62, "cardId": 17151, - "weight": 200 + "weight": 250 }, { "id": 2918, - "planId": 63, + "planId": 62, "cardId": 17161, - "weight": 200 + "weight": 250 }, { "id": 2919, - "planId": 63, + "planId": 62, "cardId": 17171, - "weight": 200 + "weight": 250 }, { "id": 2920, - "planId": 63, + "planId": 62, "cardId": 17181, - "weight": 200 + "weight": 250 }, { "id": 2921, - "planId": 63, + "planId": 62, "cardId": 17112, - "weight": 200 + "weight": 250 }, { "id": 2922, - "planId": 63, + "planId": 62, "cardId": 17122, - "weight": 200 + "weight": 250 }, { "id": 2923, - "planId": 63, + "planId": 62, "cardId": 17132, - "weight": 200 + "weight": 250 }, { "id": 2924, - "planId": 63, + "planId": 62, "cardId": 17172, - "weight": 200 + "weight": 250 }, { "id": 2925, - "planId": 63, + "planId": 62, "cardId": 17152, - "weight": 200 + "weight": 250 }, { "id": 2926, - "planId": 63, + "planId": 62, "cardId": 17162, - "weight": 200 + "weight": 250 }, { "id": 2927, - "planId": 63, + "planId": 62, "cardId": 17172, - "weight": 200 + "weight": 250 }, { "id": 2928, - "planId": 63, + "planId": 62, "cardId": 17182, - "weight": 200 + "weight": 250 }, { "id": 2929, - "planId": 63, + "planId": 62, "cardId": 15111, - "weight": 200 + "weight": 250 }, { "id": 2930, - "planId": 63, + "planId": 62, "cardId": 15121, - "weight": 200 + "weight": 250 }, { "id": 2931, - "planId": 63, + "planId": 62, "cardId": 15131, - "weight": 200 + "weight": 250 }, { "id": 2932, - "planId": 63, + "planId": 62, "cardId": 15141, - "weight": 200 + "weight": 250 }, { "id": 2933, - "planId": 63, + "planId": 62, "cardId": 15151, - "weight": 200 + "weight": 250 }, { "id": 2934, - "planId": 63, + "planId": 62, "cardId": 15161, - "weight": 200 + "weight": 250 }, { "id": 2935, - "planId": 63, + "planId": 62, "cardId": 15171, - "weight": 200 + "weight": 250 }, { "id": 2936, - "planId": 63, + "planId": 62, "cardId": 15181, - "weight": 200 + "weight": 250 }, { "id": 2937, - "planId": 63, + "planId": 62, "cardId": 15112, - "weight": 200 + "weight": 250 }, { "id": 2938, - "planId": 63, + "planId": 62, "cardId": 15122, - "weight": 200 + "weight": 250 }, { "id": 2939, - "planId": 63, + "planId": 62, "cardId": 15132, - "weight": 200 + "weight": 250 }, { "id": 2940, - "planId": 63, + "planId": 62, "cardId": 15142, - "weight": 200 + "weight": 250 }, { "id": 2941, - "planId": 63, + "planId": 62, "cardId": 15152, - "weight": 200 + "weight": 250 }, { "id": 2942, - "planId": 63, + "planId": 62, "cardId": 15162, - "weight": 200 + "weight": 250 }, { "id": 2943, - "planId": 63, + "planId": 62, "cardId": 15172, - "weight": 200 + "weight": 250 }, { "id": 2944, - "planId": 63, + "planId": 62, "cardId": 15182, - "weight": 200 + "weight": 250 }, { "id": 2945, - "planId": 63, + "planId": 62, "cardId": 18111, - "weight": 200 + "weight": 250 }, { "id": 2946, - "planId": 63, + "planId": 62, "cardId": 18121, - "weight": 200 + "weight": 250 }, { "id": 2947, - "planId": 63, + "planId": 62, "cardId": 18131, - "weight": 200 + "weight": 250 }, { "id": 2948, - "planId": 63, + "planId": 62, "cardId": 18141, - "weight": 200 + "weight": 250 }, { "id": 2949, - "planId": 63, + "planId": 62, "cardId": 18151, - "weight": 200 + "weight": 250 }, { "id": 2950, - "planId": 63, + "planId": 62, "cardId": 18161, - "weight": 200 + "weight": 250 }, { "id": 2951, - "planId": 63, + "planId": 62, "cardId": 18171, - "weight": 200 + "weight": 250 }, { "id": 2952, - "planId": 63, + "planId": 62, "cardId": 18181, - "weight": 200 + "weight": 250 }, { "id": 2953, - "planId": 63, + "planId": 62, "cardId": 18112, - "weight": 200 + "weight": 250 }, { "id": 2954, - "planId": 63, + "planId": 62, "cardId": 18122, - "weight": 200 + "weight": 250 }, { "id": 2955, - "planId": 63, + "planId": 62, "cardId": 18132, - "weight": 200 + "weight": 250 }, { "id": 2956, - "planId": 63, + "planId": 62, "cardId": 18142, - "weight": 200 + "weight": 250 }, { "id": 2957, - "planId": 63, + "planId": 62, "cardId": 18152, - "weight": 200 + "weight": 250 }, { "id": 2958, - "planId": 63, + "planId": 62, "cardId": 18162, - "weight": 200 + "weight": 250 }, { "id": 2959, - "planId": 63, + "planId": 62, "cardId": 18172, - "weight": 200 + "weight": 250 }, { "id": 2960, - "planId": 63, + "planId": 62, "cardId": 18182, - "weight": 200 + "weight": 250 }, { "id": 2961, - "planId": 63, + "planId": 62, "cardId": 13111, - "weight": 200 + "weight": 250 }, { "id": 2962, - "planId": 63, + "planId": 62, "cardId": 13121, - "weight": 200 + "weight": 250 }, { "id": 2963, - "planId": 63, + "planId": 62, "cardId": 13131, - "weight": 200 + "weight": 250 }, { "id": 2964, - "planId": 63, + "planId": 62, "cardId": 13141, - "weight": 200 + "weight": 250 }, { "id": 2965, - "planId": 63, + "planId": 62, "cardId": 13151, - "weight": 200 + "weight": 250 }, { "id": 2966, - "planId": 63, + "planId": 62, "cardId": 13161, - "weight": 200 + "weight": 250 }, { "id": 2967, - "planId": 63, + "planId": 62, "cardId": 13171, - "weight": 200 + "weight": 250 }, { "id": 2968, - "planId": 63, + "planId": 62, "cardId": 13181, - "weight": 200 + "weight": 250 }, { "id": 2969, - "planId": 63, + "planId": 62, "cardId": 13112, - "weight": 200 + "weight": 250 }, { "id": 2970, - "planId": 63, + "planId": 62, "cardId": 13122, - "weight": 200 + "weight": 250 }, { "id": 2971, - "planId": 63, + "planId": 62, "cardId": 13132, - "weight": 200 + "weight": 250 }, { "id": 2972, - "planId": 63, + "planId": 62, "cardId": 13142, - "weight": 200 + "weight": 250 }, { "id": 2973, - "planId": 63, + "planId": 62, "cardId": 13152, - "weight": 200 + "weight": 250 }, { "id": 2974, - "planId": 63, + "planId": 62, "cardId": 13162, - "weight": 200 + "weight": 250 }, { "id": 2975, - "planId": 63, + "planId": 62, "cardId": 13172, - "weight": 200 + "weight": 250 }, { "id": 2976, - "planId": 63, + "planId": 62, "cardId": 13182, - "weight": 200 + "weight": 250 }, { "id": 2977, - "planId": 63, + "planId": 62, "cardId": 12111, - "weight": 200 + "weight": 250 }, { "id": 2978, - "planId": 63, + "planId": 62, "cardId": 12121, - "weight": 200 + "weight": 250 }, { "id": 2979, - "planId": 63, + "planId": 62, "cardId": 12131, - "weight": 200 + "weight": 250 }, { "id": 2980, - "planId": 63, + "planId": 62, "cardId": 12141, - "weight": 200 + "weight": 250 }, { "id": 2981, - "planId": 63, + "planId": 62, "cardId": 12151, - "weight": 200 + "weight": 250 }, { "id": 2982, - "planId": 63, + "planId": 62, "cardId": 12161, - "weight": 200 + "weight": 250 }, { "id": 2983, - "planId": 63, + "planId": 62, "cardId": 12171, - "weight": 200 + "weight": 250 }, { "id": 2984, - "planId": 63, + "planId": 62, "cardId": 12181, - "weight": 200 + "weight": 250 }, { "id": 2985, - "planId": 63, + "planId": 62, "cardId": 12112, - "weight": 200 + "weight": 250 }, { "id": 2986, - "planId": 63, + "planId": 62, "cardId": 12122, - "weight": 200 + "weight": 250 }, { "id": 2987, - "planId": 63, + "planId": 62, "cardId": 12132, - "weight": 200 + "weight": 250 }, { "id": 2988, - "planId": 63, + "planId": 62, "cardId": 12142, - "weight": 200 + "weight": 250 }, { "id": 2989, - "planId": 63, + "planId": 62, "cardId": 12152, - "weight": 200 + "weight": 250 }, { "id": 2990, - "planId": 63, + "planId": 62, "cardId": 12162, - "weight": 200 + "weight": 250 }, { "id": 2991, - "planId": 63, + "planId": 62, "cardId": 12172, - "weight": 200 + "weight": 250 }, { "id": 2992, - "planId": 63, + "planId": 62, "cardId": 12182, - "weight": 200 + "weight": 250 }, { "id": 2993, - "planId": 63, + "planId": 62, "cardId": 16111, - "weight": 200 + "weight": 250 }, { "id": 2994, - "planId": 63, + "planId": 62, "cardId": 16121, - "weight": 200 + "weight": 250 }, { "id": 2995, - "planId": 63, + "planId": 62, "cardId": 16131, - "weight": 200 + "weight": 250 }, { "id": 2996, - "planId": 63, + "planId": 62, "cardId": 16141, - "weight": 200 + "weight": 250 }, { "id": 2997, - "planId": 63, + "planId": 62, "cardId": 16151, - "weight": 200 + "weight": 250 }, { "id": 2998, - "planId": 63, + "planId": 62, "cardId": 16161, - "weight": 200 + "weight": 250 }, { "id": 2999, - "planId": 63, + "planId": 62, "cardId": 16171, - "weight": 200 + "weight": 250 }, { "id": 3000, - "planId": 63, + "planId": 62, "cardId": 16181, - "weight": 200 + "weight": 250 }, { "id": 3001, - "planId": 63, + "planId": 62, "cardId": 16112, - "weight": 200 + "weight": 250 }, { "id": 3002, - "planId": 63, + "planId": 62, "cardId": 16122, - "weight": 200 + "weight": 250 }, { "id": 3003, - "planId": 63, + "planId": 62, "cardId": 16132, - "weight": 200 + "weight": 250 }, { "id": 3004, - "planId": 63, + "planId": 62, "cardId": 16142, - "weight": 200 + "weight": 250 }, { "id": 3005, - "planId": 63, + "planId": 62, "cardId": 16152, - "weight": 200 + "weight": 250 }, { "id": 3006, - "planId": 63, + "planId": 62, "cardId": 16162, - "weight": 200 + "weight": 250 }, { "id": 3007, - "planId": 63, + "planId": 62, "cardId": 16172, - "weight": 200 + "weight": 250 }, { "id": 3008, - "planId": 63, + "planId": 62, "cardId": 16182, - "weight": 200 + "weight": 250 }, { "id": 3009, - "planId": 63, + "planId": 62, "cardId": 11211, "weight": 300 }, { "id": 3010, - "planId": 63, + "planId": 62, "cardId": 11221, "weight": 300 }, { "id": 3011, - "planId": 63, + "planId": 62, "cardId": 11231, "weight": 300 }, { "id": 3012, - "planId": 63, + "planId": 62, "cardId": 11241, "weight": 300 }, { "id": 3013, - "planId": 63, + "planId": 62, "cardId": 11251, "weight": 300 }, { "id": 3014, - "planId": 63, + "planId": 62, "cardId": 11261, "weight": 300 }, { "id": 3015, - "planId": 63, + "planId": 62, "cardId": 11212, "weight": 300 }, { "id": 3016, - "planId": 63, + "planId": 62, "cardId": 11222, "weight": 300 }, { "id": 3017, - "planId": 63, + "planId": 62, "cardId": 11232, "weight": 300 }, { "id": 3018, - "planId": 63, + "planId": 62, "cardId": 11242, "weight": 300 }, { "id": 3019, - "planId": 63, + "planId": 62, "cardId": 11252, "weight": 300 }, { "id": 3020, - "planId": 63, + "planId": 62, "cardId": 11262, "weight": 300 }, { "id": 3021, - "planId": 63, + "planId": 62, "cardId": 14211, "weight": 300 }, { "id": 3022, - "planId": 63, + "planId": 62, "cardId": 14221, "weight": 300 }, { "id": 3023, - "planId": 63, + "planId": 62, "cardId": 14231, "weight": 300 }, { "id": 3024, - "planId": 63, + "planId": 62, "cardId": 14241, "weight": 300 }, { "id": 3025, - "planId": 63, + "planId": 62, "cardId": 14251, "weight": 300 }, { "id": 3026, - "planId": 63, + "planId": 62, "cardId": 14261, "weight": 300 }, { "id": 3027, - "planId": 63, + "planId": 62, "cardId": 14212, "weight": 300 }, { "id": 3028, - "planId": 63, + "planId": 62, "cardId": 14222, "weight": 300 }, { "id": 3029, - "planId": 63, + "planId": 62, "cardId": 14232, "weight": 300 }, { "id": 3030, - "planId": 63, + "planId": 62, "cardId": 14242, "weight": 300 }, { "id": 3031, - "planId": 63, + "planId": 62, "cardId": 14252, "weight": 300 }, { "id": 3032, - "planId": 63, + "planId": 62, "cardId": 14262, "weight": 300 }, { "id": 3033, - "planId": 63, + "planId": 62, "cardId": 17211, "weight": 300 }, { "id": 3034, - "planId": 63, + "planId": 62, "cardId": 17221, "weight": 300 }, { "id": 3035, - "planId": 63, + "planId": 62, "cardId": 17231, "weight": 300 }, { "id": 3036, - "planId": 63, + "planId": 62, "cardId": 17241, "weight": 300 }, { "id": 3037, - "planId": 63, + "planId": 62, "cardId": 17251, "weight": 300 }, { "id": 3038, - "planId": 63, + "planId": 62, "cardId": 17261, "weight": 300 }, { "id": 3039, - "planId": 63, + "planId": 62, "cardId": 17212, "weight": 300 }, { "id": 3040, - "planId": 63, + "planId": 62, "cardId": 17222, "weight": 300 }, { "id": 3041, - "planId": 63, + "planId": 62, "cardId": 17232, "weight": 300 }, { "id": 3042, - "planId": 63, + "planId": 62, "cardId": 17242, "weight": 300 }, { "id": 3043, - "planId": 63, + "planId": 62, "cardId": 17252, "weight": 300 }, { "id": 3044, - "planId": 63, + "planId": 62, "cardId": 17262, "weight": 300 }, { "id": 3045, - "planId": 63, + "planId": 62, "cardId": 15211, "weight": 300 }, { "id": 3046, - "planId": 63, + "planId": 62, "cardId": 15221, "weight": 300 }, { "id": 3047, - "planId": 63, + "planId": 62, "cardId": 15231, "weight": 300 }, { "id": 3048, - "planId": 63, + "planId": 62, "cardId": 15241, "weight": 300 }, { "id": 3049, - "planId": 63, + "planId": 62, "cardId": 15251, "weight": 300 }, { "id": 3050, - "planId": 63, + "planId": 62, "cardId": 15261, "weight": 300 }, { "id": 3051, - "planId": 63, + "planId": 62, "cardId": 15212, "weight": 300 }, { "id": 3052, - "planId": 63, + "planId": 62, "cardId": 15222, "weight": 300 }, { "id": 3053, - "planId": 63, + "planId": 62, "cardId": 15232, "weight": 300 }, { "id": 3054, - "planId": 63, + "planId": 62, "cardId": 15242, "weight": 300 }, { "id": 3055, - "planId": 63, + "planId": 62, "cardId": 15252, "weight": 300 }, { "id": 3056, - "planId": 63, + "planId": 62, "cardId": 15262, "weight": 300 }, { "id": 3057, - "planId": 63, + "planId": 62, "cardId": 18211, "weight": 300 }, { "id": 3058, - "planId": 63, + "planId": 62, "cardId": 18221, "weight": 300 }, { "id": 3059, - "planId": 63, + "planId": 62, "cardId": 18231, "weight": 300 }, { "id": 3060, - "planId": 63, + "planId": 62, "cardId": 18241, "weight": 300 }, { "id": 3061, - "planId": 63, + "planId": 62, "cardId": 18251, "weight": 300 }, { "id": 3062, - "planId": 63, + "planId": 62, "cardId": 18261, "weight": 300 }, { "id": 3063, - "planId": 63, + "planId": 62, "cardId": 18212, "weight": 300 }, { "id": 3064, - "planId": 63, + "planId": 62, "cardId": 18222, "weight": 300 }, { "id": 3065, - "planId": 63, + "planId": 62, "cardId": 18232, "weight": 300 }, { "id": 3066, - "planId": 63, + "planId": 62, "cardId": 18242, "weight": 300 }, { "id": 3067, - "planId": 63, + "planId": 62, "cardId": 18252, "weight": 300 }, { "id": 3068, - "planId": 63, + "planId": 62, "cardId": 18262, "weight": 300 }, { "id": 3069, - "planId": 63, + "planId": 62, "cardId": 13211, "weight": 300 }, { "id": 3070, - "planId": 63, + "planId": 62, "cardId": 13221, "weight": 300 }, { "id": 3071, - "planId": 63, + "planId": 62, "cardId": 13231, "weight": 300 }, { "id": 3072, - "planId": 63, + "planId": 62, "cardId": 13241, "weight": 300 }, { "id": 3073, - "planId": 63, + "planId": 62, "cardId": 13251, "weight": 300 }, { "id": 3074, - "planId": 63, + "planId": 62, "cardId": 13261, "weight": 300 }, { "id": 3075, - "planId": 63, + "planId": 62, "cardId": 13212, "weight": 300 }, { "id": 3076, - "planId": 63, + "planId": 62, "cardId": 13222, "weight": 300 }, { "id": 3077, - "planId": 63, + "planId": 62, "cardId": 13232, "weight": 300 }, { "id": 3078, - "planId": 63, + "planId": 62, "cardId": 13242, "weight": 300 }, { "id": 3079, - "planId": 63, + "planId": 62, "cardId": 13252, "weight": 300 }, { "id": 3080, - "planId": 63, + "planId": 62, "cardId": 13262, "weight": 300 }, { "id": 3081, - "planId": 63, + "planId": 62, "cardId": 12211, "weight": 300 }, { "id": 3082, - "planId": 63, + "planId": 62, "cardId": 12221, "weight": 300 }, { "id": 3083, - "planId": 63, + "planId": 62, "cardId": 12231, "weight": 300 }, { "id": 3084, - "planId": 63, + "planId": 62, "cardId": 12241, "weight": 300 }, { "id": 3085, - "planId": 63, + "planId": 62, "cardId": 12251, "weight": 300 }, { "id": 3086, - "planId": 63, + "planId": 62, "cardId": 12261, "weight": 300 }, { "id": 3087, - "planId": 63, + "planId": 62, "cardId": 12212, "weight": 300 }, { "id": 3088, - "planId": 63, + "planId": 62, "cardId": 12222, "weight": 300 }, { "id": 3089, - "planId": 63, + "planId": 62, "cardId": 12232, "weight": 300 }, { "id": 3090, - "planId": 63, + "planId": 62, "cardId": 12242, "weight": 300 }, { "id": 3091, - "planId": 63, + "planId": 62, "cardId": 12252, "weight": 300 }, { "id": 3092, - "planId": 63, + "planId": 62, "cardId": 12262, "weight": 300 }, { "id": 3093, - "planId": 63, + "planId": 62, "cardId": 16211, "weight": 300 }, { "id": 3094, - "planId": 63, + "planId": 62, "cardId": 16221, "weight": 300 }, { "id": 3095, - "planId": 63, + "planId": 62, "cardId": 16231, "weight": 300 }, { "id": 3096, - "planId": 63, + "planId": 62, "cardId": 16241, "weight": 300 }, { "id": 3097, - "planId": 63, + "planId": 62, "cardId": 16251, "weight": 300 }, { "id": 3098, - "planId": 63, + "planId": 62, "cardId": 16261, "weight": 300 }, { "id": 3099, - "planId": 63, + "planId": 62, "cardId": 16212, "weight": 300 }, { "id": 3100, - "planId": 63, + "planId": 62, "cardId": 16222, "weight": 300 }, { "id": 3101, - "planId": 63, + "planId": 62, "cardId": 16232, "weight": 300 }, { "id": 3102, - "planId": 63, + "planId": 62, "cardId": 16242, "weight": 300 }, { "id": 3103, - "planId": 63, + "planId": 62, "cardId": 16252, "weight": 300 }, { "id": 3104, - "planId": 63, + "planId": 62, "cardId": 16262, "weight": 300 }, { "id": 3105, - "planId": 63, + "planId": 62, "cardId": 11311, - "weight": 150 + "weight": 50 }, { "id": 3106, - "planId": 63, + "planId": 62, "cardId": 11321, - "weight": 150 + "weight": 50 }, { "id": 3107, - "planId": 63, + "planId": 62, "cardId": 11331, - "weight": 150 + "weight": 50 }, { "id": 3108, - "planId": 63, + "planId": 62, "cardId": 11341, - "weight": 150 + "weight": 50 }, { "id": 3109, - "planId": 63, + "planId": 62, "cardId": 11312, - "weight": 150 + "weight": 50 }, { "id": 3110, - "planId": 63, + "planId": 62, "cardId": 11322, - "weight": 150 + "weight": 50 }, { "id": 3111, - "planId": 63, + "planId": 62, "cardId": 11332, - "weight": 150 + "weight": 50 }, { "id": 3112, - "planId": 63, + "planId": 62, "cardId": 11342, - "weight": 150 + "weight": 50 }, { "id": 3113, - "planId": 63, + "planId": 62, "cardId": 14311, - "weight": 150 + "weight": 50 }, { "id": 3114, - "planId": 63, + "planId": 62, "cardId": 14321, - "weight": 150 + "weight": 50 }, { "id": 3115, - "planId": 63, + "planId": 62, "cardId": 14331, - "weight": 150 + "weight": 50 }, { "id": 3116, - "planId": 63, + "planId": 62, "cardId": 14341, - "weight": 150 + "weight": 50 }, { "id": 3117, - "planId": 63, + "planId": 62, "cardId": 14312, - "weight": 150 + "weight": 50 }, { "id": 3118, - "planId": 63, + "planId": 62, "cardId": 14322, - "weight": 150 + "weight": 50 }, { "id": 3119, - "planId": 63, + "planId": 62, "cardId": 14332, - "weight": 150 + "weight": 50 }, { "id": 3120, - "planId": 63, + "planId": 62, "cardId": 14342, - "weight": 150 + "weight": 50 }, { "id": 3121, - "planId": 63, + "planId": 62, "cardId": 17311, - "weight": 150 + "weight": 50 }, { "id": 3122, - "planId": 63, + "planId": 62, "cardId": 17321, - "weight": 150 + "weight": 50 }, { "id": 3123, - "planId": 63, + "planId": 62, "cardId": 17331, - "weight": 150 + "weight": 50 }, { "id": 3124, - "planId": 63, + "planId": 62, "cardId": 17341, - "weight": 150 + "weight": 50 }, { "id": 3125, - "planId": 63, + "planId": 62, "cardId": 17312, - "weight": 150 + "weight": 50 }, { "id": 3126, - "planId": 63, + "planId": 62, "cardId": 17322, - "weight": 150 + "weight": 50 }, { "id": 3127, - "planId": 63, + "planId": 62, "cardId": 17332, - "weight": 150 + "weight": 50 }, { "id": 3128, - "planId": 63, + "planId": 62, "cardId": 17342, - "weight": 150 + "weight": 50 }, { "id": 3129, - "planId": 63, + "planId": 62, "cardId": 15311, - "weight": 150 + "weight": 50 }, { "id": 3130, - "planId": 63, + "planId": 62, "cardId": 15321, - "weight": 150 + "weight": 50 }, { "id": 3131, - "planId": 63, + "planId": 62, "cardId": 15331, - "weight": 150 + "weight": 50 }, { "id": 3132, - "planId": 63, + "planId": 62, "cardId": 15341, - "weight": 150 + "weight": 50 }, { "id": 3133, - "planId": 63, + "planId": 62, "cardId": 15312, - "weight": 150 + "weight": 50 }, { "id": 3134, - "planId": 63, + "planId": 62, "cardId": 15322, - "weight": 150 + "weight": 50 }, { "id": 3135, - "planId": 63, + "planId": 62, "cardId": 15332, - "weight": 150 + "weight": 50 }, { "id": 3136, - "planId": 63, + "planId": 62, "cardId": 15342, - "weight": 150 + "weight": 50 }, { "id": 3137, - "planId": 63, + "planId": 62, "cardId": 18311, - "weight": 150 + "weight": 50 }, { "id": 3138, - "planId": 63, + "planId": 62, "cardId": 18321, - "weight": 150 + "weight": 50 }, { "id": 3139, - "planId": 63, + "planId": 62, "cardId": 18331, - "weight": 150 + "weight": 50 }, { "id": 3140, - "planId": 63, + "planId": 62, "cardId": 18341, - "weight": 150 + "weight": 50 }, { "id": 3141, - "planId": 63, + "planId": 62, "cardId": 18312, - "weight": 150 + "weight": 50 }, { "id": 3142, - "planId": 63, + "planId": 62, "cardId": 18322, - "weight": 150 + "weight": 50 }, { "id": 3143, - "planId": 63, + "planId": 62, "cardId": 18332, - "weight": 150 + "weight": 50 }, { "id": 3144, - "planId": 63, + "planId": 62, "cardId": 18342, - "weight": 150 + "weight": 50 }, { "id": 3145, - "planId": 63, + "planId": 62, "cardId": 13311, - "weight": 150 + "weight": 50 }, { "id": 3146, - "planId": 63, + "planId": 62, "cardId": 13321, - "weight": 150 + "weight": 50 }, { "id": 3147, - "planId": 63, + "planId": 62, "cardId": 13331, - "weight": 150 + "weight": 50 }, { "id": 3148, - "planId": 63, + "planId": 62, "cardId": 13341, - "weight": 150 + "weight": 50 }, { "id": 3149, - "planId": 63, + "planId": 62, "cardId": 13312, - "weight": 150 + "weight": 50 }, { "id": 3150, - "planId": 63, + "planId": 62, "cardId": 13322, - "weight": 150 + "weight": 50 }, { "id": 3151, - "planId": 63, + "planId": 62, "cardId": 13332, - "weight": 150 + "weight": 50 }, { "id": 3152, - "planId": 63, + "planId": 62, "cardId": 13342, - "weight": 150 + "weight": 50 }, { "id": 3153, - "planId": 63, + "planId": 62, "cardId": 12311, - "weight": 150 + "weight": 50 }, { "id": 3154, - "planId": 63, + "planId": 62, "cardId": 12321, - "weight": 150 + "weight": 50 }, { "id": 3155, - "planId": 63, + "planId": 62, "cardId": 12331, - "weight": 150 + "weight": 50 }, { "id": 3156, - "planId": 63, + "planId": 62, "cardId": 12341, - "weight": 150 + "weight": 50 }, { "id": 3157, - "planId": 63, + "planId": 62, "cardId": 12312, - "weight": 150 + "weight": 50 }, { "id": 3158, - "planId": 63, + "planId": 62, "cardId": 12322, - "weight": 150 + "weight": 50 }, { "id": 3159, - "planId": 63, + "planId": 62, "cardId": 12332, - "weight": 150 + "weight": 50 }, { "id": 3160, - "planId": 63, + "planId": 62, "cardId": 12342, - "weight": 150 + "weight": 50 }, { "id": 3161, - "planId": 63, + "planId": 62, "cardId": 16311, - "weight": 150 + "weight": 50 }, { "id": 3162, - "planId": 63, + "planId": 62, "cardId": 16321, - "weight": 150 + "weight": 50 }, { "id": 3163, - "planId": 63, + "planId": 62, "cardId": 16331, - "weight": 150 + "weight": 50 }, { "id": 3164, - "planId": 63, + "planId": 62, "cardId": 16341, - "weight": 150 + "weight": 50 }, { "id": 3165, - "planId": 63, + "planId": 62, "cardId": 16312, - "weight": 150 + "weight": 50 }, { "id": 3166, - "planId": 63, + "planId": 62, "cardId": 16322, - "weight": 150 + "weight": 50 }, { "id": 3167, - "planId": 63, + "planId": 62, "cardId": 16332, - "weight": 150 + "weight": 50 }, { "id": 3168, - "planId": 63, + "planId": 62, "cardId": 16342, - "weight": 150 + "weight": 50 }, { "id": 3169, "planId": 63, "cardId": 11111, - "weight": 90 + "weight": 250 }, { "id": 3170, "planId": 63, "cardId": 11121, - "weight": 90 + "weight": 250 }, { "id": 3171, "planId": 63, "cardId": 11131, - "weight": 90 + "weight": 250 }, { "id": 3172, "planId": 63, "cardId": 11141, - "weight": 90 + "weight": 250 }, { "id": 3173, "planId": 63, "cardId": 11151, - "weight": 90 + "weight": 250 }, { "id": 3174, "planId": 63, "cardId": 11161, - "weight": 90 + "weight": 250 }, { "id": 3175, "planId": 63, "cardId": 11171, - "weight": 90 + "weight": 250 }, { "id": 3176, "planId": 63, "cardId": 11181, - "weight": 90 + "weight": 250 }, { "id": 3177, "planId": 63, "cardId": 11112, - "weight": 90 + "weight": 250 }, { "id": 3178, "planId": 63, "cardId": 11122, - "weight": 90 + "weight": 250 }, { "id": 3179, "planId": 63, "cardId": 11132, - "weight": 90 + "weight": 250 }, { "id": 3180, "planId": 63, "cardId": 11142, - "weight": 90 + "weight": 250 }, { "id": 3181, "planId": 63, "cardId": 11152, - "weight": 90 + "weight": 250 }, { "id": 3182, "planId": 63, "cardId": 11162, - "weight": 90 + "weight": 250 }, { "id": 3183, "planId": 63, "cardId": 11172, - "weight": 90 + "weight": 250 }, { "id": 3184, "planId": 63, "cardId": 11182, - "weight": 90 + "weight": 250 }, { "id": 3185, "planId": 63, "cardId": 14111, - "weight": 90 + "weight": 250 }, { "id": 3186, "planId": 63, "cardId": 14121, - "weight": 90 + "weight": 250 }, { "id": 3187, "planId": 63, "cardId": 14131, - "weight": 90 + "weight": 250 }, { "id": 3188, "planId": 63, "cardId": 14141, - "weight": 90 + "weight": 250 }, { "id": 3189, "planId": 63, "cardId": 14151, - "weight": 90 + "weight": 250 }, { "id": 3190, "planId": 63, "cardId": 14161, - "weight": 90 + "weight": 250 }, { "id": 3191, "planId": 63, "cardId": 14171, - "weight": 90 + "weight": 250 }, { "id": 3192, "planId": 63, "cardId": 14181, - "weight": 90 + "weight": 250 }, { "id": 3193, "planId": 63, "cardId": 14112, - "weight": 90 + "weight": 250 }, { "id": 3194, "planId": 63, "cardId": 14122, - "weight": 90 + "weight": 250 }, { "id": 3195, "planId": 63, "cardId": 14132, - "weight": 90 + "weight": 250 }, { "id": 3196, "planId": 63, "cardId": 14142, - "weight": 90 + "weight": 250 }, { "id": 3197, "planId": 63, "cardId": 14152, - "weight": 90 + "weight": 250 }, { "id": 3198, "planId": 63, "cardId": 14162, - "weight": 90 + "weight": 250 }, { "id": 3199, "planId": 63, "cardId": 14172, - "weight": 90 + "weight": 250 }, { "id": 3200, "planId": 63, "cardId": 14182, - "weight": 90 + "weight": 250 }, { "id": 3201, "planId": 63, "cardId": 17111, - "weight": 90 + "weight": 250 }, { "id": 3202, "planId": 63, "cardId": 17121, - "weight": 90 + "weight": 250 }, { "id": 3203, "planId": 63, "cardId": 17131, - "weight": 90 + "weight": 250 }, { "id": 3204, "planId": 63, "cardId": 17141, - "weight": 90 + "weight": 250 }, { "id": 3205, "planId": 63, "cardId": 17151, - "weight": 90 + "weight": 250 }, { "id": 3206, "planId": 63, "cardId": 17161, - "weight": 90 + "weight": 250 }, { "id": 3207, "planId": 63, "cardId": 17171, - "weight": 90 + "weight": 250 }, { "id": 3208, "planId": 63, "cardId": 17181, - "weight": 90 + "weight": 250 }, { "id": 3209, "planId": 63, "cardId": 17112, - "weight": 90 + "weight": 250 }, { "id": 3210, "planId": 63, "cardId": 17122, - "weight": 90 + "weight": 250 }, { "id": 3211, "planId": 63, "cardId": 17132, - "weight": 90 + "weight": 250 }, { "id": 3212, "planId": 63, "cardId": 17172, - "weight": 90 + "weight": 250 }, { "id": 3213, "planId": 63, "cardId": 17152, - "weight": 90 + "weight": 250 }, { "id": 3214, "planId": 63, "cardId": 17162, - "weight": 90 + "weight": 250 }, { "id": 3215, "planId": 63, "cardId": 17172, - "weight": 90 + "weight": 250 }, { "id": 3216, "planId": 63, "cardId": 17182, - "weight": 90 + "weight": 250 }, { "id": 3217, "planId": 63, "cardId": 15111, - "weight": 90 + "weight": 250 }, { "id": 3218, "planId": 63, "cardId": 15121, - "weight": 90 + "weight": 250 }, { "id": 3219, "planId": 63, "cardId": 15131, - "weight": 90 + "weight": 250 }, { "id": 3220, "planId": 63, "cardId": 15141, - "weight": 90 + "weight": 250 }, { "id": 3221, "planId": 63, "cardId": 15151, - "weight": 90 + "weight": 250 }, { "id": 3222, "planId": 63, "cardId": 15161, - "weight": 90 + "weight": 250 }, { "id": 3223, "planId": 63, "cardId": 15171, - "weight": 90 + "weight": 250 }, { "id": 3224, "planId": 63, "cardId": 15181, - "weight": 90 + "weight": 250 }, { "id": 3225, "planId": 63, "cardId": 15112, - "weight": 90 + "weight": 250 }, { "id": 3226, "planId": 63, "cardId": 15122, - "weight": 90 + "weight": 250 }, { "id": 3227, "planId": 63, "cardId": 15132, - "weight": 90 + "weight": 250 }, { "id": 3228, "planId": 63, "cardId": 15142, - "weight": 90 + "weight": 250 }, { "id": 3229, "planId": 63, "cardId": 15152, - "weight": 90 + "weight": 250 }, { "id": 3230, "planId": 63, "cardId": 15162, - "weight": 90 + "weight": 250 }, { "id": 3231, "planId": 63, "cardId": 15172, - "weight": 90 + "weight": 250 }, { "id": 3232, "planId": 63, "cardId": 15182, - "weight": 90 + "weight": 250 }, { "id": 3233, "planId": 63, "cardId": 18111, - "weight": 90 + "weight": 250 }, { "id": 3234, "planId": 63, "cardId": 18121, - "weight": 90 + "weight": 250 }, { "id": 3235, "planId": 63, "cardId": 18131, - "weight": 90 + "weight": 250 }, { "id": 3236, "planId": 63, "cardId": 18141, - "weight": 90 + "weight": 250 }, { "id": 3237, "planId": 63, "cardId": 18151, - "weight": 90 + "weight": 250 }, { "id": 3238, "planId": 63, "cardId": 18161, - "weight": 90 + "weight": 250 }, { "id": 3239, "planId": 63, "cardId": 18171, - "weight": 90 + "weight": 250 }, { "id": 3240, "planId": 63, "cardId": 18181, - "weight": 90 + "weight": 250 }, { "id": 3241, "planId": 63, "cardId": 18112, - "weight": 90 + "weight": 250 }, { "id": 3242, "planId": 63, "cardId": 18122, - "weight": 90 + "weight": 250 }, { "id": 3243, "planId": 63, "cardId": 18132, - "weight": 90 + "weight": 250 }, { "id": 3244, "planId": 63, "cardId": 18142, - "weight": 90 + "weight": 250 }, { "id": 3245, "planId": 63, "cardId": 18152, - "weight": 90 + "weight": 250 }, { "id": 3246, "planId": 63, "cardId": 18162, - "weight": 90 + "weight": 250 }, { "id": 3247, "planId": 63, "cardId": 18172, - "weight": 90 + "weight": 250 }, { "id": 3248, "planId": 63, "cardId": 18182, - "weight": 90 + "weight": 250 }, { "id": 3249, "planId": 63, "cardId": 13111, - "weight": 90 + "weight": 250 }, { "id": 3250, "planId": 63, "cardId": 13121, - "weight": 90 + "weight": 250 }, { "id": 3251, "planId": 63, "cardId": 13131, - "weight": 90 + "weight": 250 }, { "id": 3252, "planId": 63, "cardId": 13141, - "weight": 90 + "weight": 250 }, { "id": 3253, "planId": 63, "cardId": 13151, - "weight": 90 + "weight": 250 }, { "id": 3254, "planId": 63, "cardId": 13161, - "weight": 90 + "weight": 250 }, { "id": 3255, "planId": 63, "cardId": 13171, - "weight": 90 + "weight": 250 }, { "id": 3256, "planId": 63, "cardId": 13181, - "weight": 90 + "weight": 250 }, { "id": 3257, "planId": 63, "cardId": 13112, - "weight": 90 + "weight": 250 }, { "id": 3258, "planId": 63, "cardId": 13122, - "weight": 90 + "weight": 250 }, { "id": 3259, "planId": 63, "cardId": 13132, - "weight": 90 + "weight": 250 }, { "id": 3260, "planId": 63, "cardId": 13142, - "weight": 90 + "weight": 250 }, { "id": 3261, "planId": 63, "cardId": 13152, - "weight": 90 + "weight": 250 }, { "id": 3262, "planId": 63, "cardId": 13162, - "weight": 90 + "weight": 250 }, { "id": 3263, "planId": 63, "cardId": 13172, - "weight": 90 + "weight": 250 }, { "id": 3264, "planId": 63, "cardId": 13182, - "weight": 90 + "weight": 250 }, { "id": 3265, "planId": 63, "cardId": 12111, - "weight": 90 + "weight": 250 }, { "id": 3266, "planId": 63, "cardId": 12121, - "weight": 90 + "weight": 250 }, { "id": 3267, "planId": 63, "cardId": 12131, - "weight": 90 + "weight": 250 }, { "id": 3268, "planId": 63, "cardId": 12141, - "weight": 90 + "weight": 250 }, { "id": 3269, "planId": 63, "cardId": 12151, - "weight": 90 + "weight": 250 }, { "id": 3270, "planId": 63, "cardId": 12161, - "weight": 90 + "weight": 250 }, { "id": 3271, "planId": 63, "cardId": 12171, - "weight": 90 + "weight": 250 }, { "id": 3272, "planId": 63, "cardId": 12181, - "weight": 90 + "weight": 250 }, { "id": 3273, "planId": 63, "cardId": 12112, - "weight": 90 + "weight": 250 }, { "id": 3274, "planId": 63, "cardId": 12122, - "weight": 90 + "weight": 250 }, { "id": 3275, "planId": 63, "cardId": 12132, - "weight": 90 + "weight": 250 }, { "id": 3276, "planId": 63, "cardId": 12142, - "weight": 90 + "weight": 250 }, { "id": 3277, "planId": 63, "cardId": 12152, - "weight": 90 + "weight": 250 }, { "id": 3278, "planId": 63, "cardId": 12162, - "weight": 90 + "weight": 250 }, { "id": 3279, "planId": 63, "cardId": 12172, - "weight": 90 + "weight": 250 }, { "id": 3280, "planId": 63, "cardId": 12182, - "weight": 90 + "weight": 250 }, { "id": 3281, "planId": 63, "cardId": 16111, - "weight": 90 + "weight": 250 }, { "id": 3282, "planId": 63, "cardId": 16121, - "weight": 90 + "weight": 250 }, { "id": 3283, "planId": 63, "cardId": 16131, - "weight": 90 + "weight": 250 }, { "id": 3284, "planId": 63, "cardId": 16141, - "weight": 90 + "weight": 250 }, { "id": 3285, "planId": 63, "cardId": 16151, - "weight": 90 + "weight": 250 }, { "id": 3286, "planId": 63, "cardId": 16161, - "weight": 90 + "weight": 250 }, { "id": 3287, "planId": 63, "cardId": 16171, - "weight": 90 + "weight": 250 }, { "id": 3288, "planId": 63, "cardId": 16181, - "weight": 90 + "weight": 250 }, { "id": 3289, "planId": 63, "cardId": 16112, - "weight": 90 + "weight": 250 }, { "id": 3290, "planId": 63, "cardId": 16122, - "weight": 90 + "weight": 250 }, { "id": 3291, "planId": 63, "cardId": 16132, - "weight": 90 + "weight": 250 }, { "id": 3292, "planId": 63, "cardId": 16142, - "weight": 90 + "weight": 250 }, { "id": 3293, "planId": 63, "cardId": 16152, - "weight": 90 + "weight": 250 }, { "id": 3294, "planId": 63, "cardId": 16162, - "weight": 90 + "weight": 250 }, { "id": 3295, "planId": 63, "cardId": 16172, - "weight": 90 + "weight": 250 }, { "id": 3296, "planId": 63, "cardId": 16182, - "weight": 90 + "weight": 250 }, { "id": 3297, "planId": 63, "cardId": 11211, - "weight": 160 + "weight": 300 }, { "id": 3298, "planId": 63, "cardId": 11221, - "weight": 160 + "weight": 300 }, { "id": 3299, "planId": 63, "cardId": 11231, - "weight": 160 + "weight": 300 }, { "id": 3300, "planId": 63, "cardId": 11241, - "weight": 160 + "weight": 300 }, { "id": 3301, "planId": 63, "cardId": 11251, - "weight": 160 + "weight": 300 }, { "id": 3302, "planId": 63, "cardId": 11261, - "weight": 160 + "weight": 300 }, { "id": 3303, "planId": 63, "cardId": 11212, - "weight": 160 + "weight": 300 }, { "id": 3304, "planId": 63, "cardId": 11222, - "weight": 160 + "weight": 300 }, { "id": 3305, "planId": 63, "cardId": 11232, - "weight": 160 + "weight": 300 }, { "id": 3306, "planId": 63, "cardId": 11242, - "weight": 160 + "weight": 300 }, { "id": 3307, "planId": 63, "cardId": 11252, - "weight": 160 + "weight": 300 }, { "id": 3308, "planId": 63, "cardId": 11262, - "weight": 160 + "weight": 300 }, { "id": 3309, "planId": 63, "cardId": 14211, - "weight": 160 + "weight": 300 }, { "id": 3310, "planId": 63, "cardId": 14221, - "weight": 160 + "weight": 300 }, { "id": 3311, "planId": 63, "cardId": 14231, - "weight": 160 + "weight": 300 }, { "id": 3312, "planId": 63, "cardId": 14241, - "weight": 160 + "weight": 300 }, { "id": 3313, "planId": 63, "cardId": 14251, - "weight": 160 + "weight": 300 }, { "id": 3314, "planId": 63, "cardId": 14261, - "weight": 160 + "weight": 300 }, { "id": 3315, "planId": 63, "cardId": 14212, - "weight": 160 + "weight": 300 }, { "id": 3316, "planId": 63, "cardId": 14222, - "weight": 160 + "weight": 300 }, { "id": 3317, "planId": 63, "cardId": 14232, - "weight": 160 + "weight": 300 }, { "id": 3318, "planId": 63, "cardId": 14242, - "weight": 160 + "weight": 300 }, { "id": 3319, "planId": 63, "cardId": 14252, - "weight": 160 + "weight": 300 }, { "id": 3320, "planId": 63, "cardId": 14262, - "weight": 160 + "weight": 300 }, { "id": 3321, "planId": 63, "cardId": 17211, - "weight": 160 + "weight": 300 }, { "id": 3322, "planId": 63, "cardId": 17221, - "weight": 160 + "weight": 300 }, { "id": 3323, "planId": 63, "cardId": 17231, - "weight": 160 + "weight": 300 }, { "id": 3324, "planId": 63, "cardId": 17241, - "weight": 160 + "weight": 300 }, { "id": 3325, "planId": 63, "cardId": 17251, - "weight": 160 + "weight": 300 }, { "id": 3326, "planId": 63, "cardId": 17261, - "weight": 160 + "weight": 300 }, { "id": 3327, "planId": 63, "cardId": 17212, - "weight": 160 + "weight": 300 }, { "id": 3328, "planId": 63, "cardId": 17222, - "weight": 160 + "weight": 300 }, { "id": 3329, "planId": 63, "cardId": 17232, - "weight": 160 + "weight": 300 }, { "id": 3330, "planId": 63, "cardId": 17242, - "weight": 160 + "weight": 300 }, { "id": 3331, "planId": 63, "cardId": 17252, - "weight": 160 + "weight": 300 }, { "id": 3332, "planId": 63, "cardId": 17262, - "weight": 160 + "weight": 300 }, { "id": 3333, "planId": 63, "cardId": 15211, - "weight": 160 + "weight": 300 }, { "id": 3334, "planId": 63, "cardId": 15221, - "weight": 160 + "weight": 300 }, { "id": 3335, "planId": 63, "cardId": 15231, - "weight": 160 + "weight": 300 }, { "id": 3336, "planId": 63, "cardId": 15241, - "weight": 160 + "weight": 300 }, { "id": 3337, "planId": 63, "cardId": 15251, - "weight": 160 + "weight": 300 }, { "id": 3338, "planId": 63, "cardId": 15261, - "weight": 160 + "weight": 300 }, { "id": 3339, "planId": 63, "cardId": 15212, - "weight": 160 + "weight": 300 }, { "id": 3340, "planId": 63, "cardId": 15222, - "weight": 160 + "weight": 300 }, { "id": 3341, "planId": 63, "cardId": 15232, - "weight": 160 + "weight": 300 }, { "id": 3342, "planId": 63, "cardId": 15242, - "weight": 160 + "weight": 300 }, { "id": 3343, "planId": 63, "cardId": 15252, - "weight": 160 + "weight": 300 }, { "id": 3344, "planId": 63, "cardId": 15262, - "weight": 160 + "weight": 300 }, { "id": 3345, "planId": 63, "cardId": 18211, - "weight": 160 + "weight": 300 }, { "id": 3346, "planId": 63, "cardId": 18221, - "weight": 160 + "weight": 300 }, { "id": 3347, "planId": 63, "cardId": 18231, - "weight": 160 + "weight": 300 }, { "id": 3348, "planId": 63, "cardId": 18241, - "weight": 160 + "weight": 300 }, { "id": 3349, "planId": 63, "cardId": 18251, - "weight": 160 + "weight": 300 }, { "id": 3350, "planId": 63, "cardId": 18261, - "weight": 160 + "weight": 300 }, { "id": 3351, "planId": 63, "cardId": 18212, - "weight": 160 + "weight": 300 }, { "id": 3352, "planId": 63, "cardId": 18222, - "weight": 160 + "weight": 300 }, { "id": 3353, "planId": 63, "cardId": 18232, - "weight": 160 + "weight": 300 }, { "id": 3354, "planId": 63, "cardId": 18242, - "weight": 160 + "weight": 300 }, { "id": 3355, "planId": 63, "cardId": 18252, - "weight": 160 + "weight": 300 }, { "id": 3356, "planId": 63, "cardId": 18262, - "weight": 160 + "weight": 300 }, { "id": 3357, "planId": 63, "cardId": 13211, - "weight": 160 + "weight": 300 }, { "id": 3358, "planId": 63, "cardId": 13221, - "weight": 160 + "weight": 300 }, { "id": 3359, "planId": 63, "cardId": 13231, - "weight": 160 + "weight": 300 }, { "id": 3360, "planId": 63, "cardId": 13241, - "weight": 160 + "weight": 300 }, { "id": 3361, "planId": 63, "cardId": 13251, - "weight": 160 + "weight": 300 }, { "id": 3362, "planId": 63, "cardId": 13261, - "weight": 160 + "weight": 300 }, { "id": 3363, "planId": 63, "cardId": 13212, - "weight": 160 + "weight": 300 }, { "id": 3364, "planId": 63, "cardId": 13222, - "weight": 160 + "weight": 300 }, { "id": 3365, "planId": 63, "cardId": 13232, - "weight": 160 + "weight": 300 }, { "id": 3366, "planId": 63, "cardId": 13242, - "weight": 160 + "weight": 300 }, { "id": 3367, "planId": 63, "cardId": 13252, - "weight": 160 + "weight": 300 }, { "id": 3368, "planId": 63, "cardId": 13262, - "weight": 160 + "weight": 300 }, { "id": 3369, "planId": 63, "cardId": 12211, - "weight": 160 + "weight": 300 }, { "id": 3370, "planId": 63, "cardId": 12221, - "weight": 160 + "weight": 300 }, { "id": 3371, "planId": 63, "cardId": 12231, - "weight": 160 + "weight": 300 }, { "id": 3372, "planId": 63, "cardId": 12241, - "weight": 160 + "weight": 300 }, { "id": 3373, "planId": 63, "cardId": 12251, - "weight": 160 + "weight": 300 }, { "id": 3374, "planId": 63, "cardId": 12261, - "weight": 160 + "weight": 300 }, { "id": 3375, "planId": 63, "cardId": 12212, - "weight": 160 + "weight": 300 }, { "id": 3376, "planId": 63, "cardId": 12222, - "weight": 160 + "weight": 300 }, { "id": 3377, "planId": 63, "cardId": 12232, - "weight": 160 + "weight": 300 }, { "id": 3378, "planId": 63, "cardId": 12242, - "weight": 160 + "weight": 300 }, { "id": 3379, "planId": 63, "cardId": 12252, - "weight": 160 + "weight": 300 }, { "id": 3380, "planId": 63, "cardId": 12262, - "weight": 160 + "weight": 300 }, { "id": 3381, "planId": 63, "cardId": 16211, - "weight": 160 + "weight": 300 }, { "id": 3382, "planId": 63, "cardId": 16221, - "weight": 160 + "weight": 300 }, { "id": 3383, "planId": 63, "cardId": 16231, - "weight": 160 + "weight": 300 }, { "id": 3384, "planId": 63, "cardId": 16241, - "weight": 160 + "weight": 300 }, { "id": 3385, "planId": 63, "cardId": 16251, - "weight": 160 + "weight": 300 }, { "id": 3386, "planId": 63, "cardId": 16261, - "weight": 160 + "weight": 300 }, { "id": 3387, "planId": 63, "cardId": 16212, - "weight": 160 + "weight": 300 }, { "id": 3388, "planId": 63, "cardId": 16222, - "weight": 160 + "weight": 300 }, { "id": 3389, "planId": 63, "cardId": 16232, - "weight": 160 + "weight": 300 }, { "id": 3390, "planId": 63, "cardId": 16242, - "weight": 160 + "weight": 300 }, { "id": 3391, "planId": 63, "cardId": 16252, - "weight": 160 + "weight": 300 }, { "id": 3392, "planId": 63, "cardId": 16262, - "weight": 160 + "weight": 300 }, { "id": 3393, "planId": 63, "cardId": 11311, - "weight": 180 + "weight": 50 }, { "id": 3394, "planId": 63, "cardId": 11321, - "weight": 180 + "weight": 50 }, { "id": 3395, "planId": 63, "cardId": 11331, - "weight": 180 + "weight": 50 }, { "id": 3396, "planId": 63, "cardId": 11341, - "weight": 180 + "weight": 50 }, { "id": 3397, "planId": 63, "cardId": 11312, - "weight": 180 + "weight": 50 }, { "id": 3398, "planId": 63, "cardId": 11322, - "weight": 180 + "weight": 50 }, { "id": 3399, "planId": 63, "cardId": 11332, - "weight": 180 + "weight": 50 }, { "id": 3400, "planId": 63, "cardId": 11342, - "weight": 180 + "weight": 50 }, { "id": 3401, "planId": 63, "cardId": 14311, - "weight": 180 + "weight": 50 }, { "id": 3402, "planId": 63, "cardId": 14321, - "weight": 180 + "weight": 50 }, { "id": 3403, "planId": 63, "cardId": 14331, - "weight": 180 + "weight": 50 }, { "id": 3404, "planId": 63, "cardId": 14341, - "weight": 180 + "weight": 50 }, { "id": 3405, "planId": 63, "cardId": 14312, - "weight": 180 + "weight": 50 }, { "id": 3406, "planId": 63, "cardId": 14322, - "weight": 180 + "weight": 50 }, { "id": 3407, "planId": 63, "cardId": 14332, - "weight": 180 + "weight": 50 }, { "id": 3408, "planId": 63, "cardId": 14342, - "weight": 180 + "weight": 50 }, { "id": 3409, "planId": 63, "cardId": 17311, - "weight": 180 + "weight": 50 }, { "id": 3410, "planId": 63, "cardId": 17321, - "weight": 180 + "weight": 50 }, { "id": 3411, "planId": 63, "cardId": 17331, - "weight": 180 + "weight": 50 }, { "id": 3412, "planId": 63, "cardId": 17341, - "weight": 180 + "weight": 50 }, { "id": 3413, "planId": 63, "cardId": 17312, - "weight": 180 + "weight": 50 }, { "id": 3414, "planId": 63, "cardId": 17322, - "weight": 180 + "weight": 50 }, { "id": 3415, "planId": 63, "cardId": 17332, - "weight": 180 + "weight": 50 }, { "id": 3416, "planId": 63, "cardId": 17342, - "weight": 180 + "weight": 50 }, { "id": 3417, "planId": 63, "cardId": 15311, - "weight": 180 + "weight": 50 }, { "id": 3418, "planId": 63, "cardId": 15321, - "weight": 180 + "weight": 50 }, { "id": 3419, "planId": 63, "cardId": 15331, - "weight": 180 + "weight": 50 }, { "id": 3420, "planId": 63, "cardId": 15341, - "weight": 180 + "weight": 50 }, { "id": 3421, "planId": 63, "cardId": 15312, - "weight": 180 + "weight": 50 }, { "id": 3422, "planId": 63, "cardId": 15322, - "weight": 180 + "weight": 50 }, { "id": 3423, "planId": 63, "cardId": 15332, - "weight": 180 + "weight": 50 }, { "id": 3424, "planId": 63, "cardId": 15342, - "weight": 180 + "weight": 50 }, { "id": 3425, "planId": 63, "cardId": 18311, - "weight": 180 + "weight": 50 }, { "id": 3426, "planId": 63, "cardId": 18321, - "weight": 180 + "weight": 50 }, { "id": 3427, "planId": 63, "cardId": 18331, - "weight": 180 + "weight": 50 }, { "id": 3428, "planId": 63, "cardId": 18341, - "weight": 180 + "weight": 50 }, { "id": 3429, "planId": 63, "cardId": 18312, - "weight": 180 + "weight": 50 }, { "id": 3430, "planId": 63, "cardId": 18322, - "weight": 180 + "weight": 50 }, { "id": 3431, "planId": 63, "cardId": 18332, - "weight": 180 + "weight": 50 }, { "id": 3432, "planId": 63, "cardId": 18342, - "weight": 180 + "weight": 50 }, { "id": 3433, "planId": 63, "cardId": 13311, - "weight": 180 + "weight": 50 }, { "id": 3434, "planId": 63, "cardId": 13321, - "weight": 180 + "weight": 50 }, { "id": 3435, "planId": 63, "cardId": 13331, - "weight": 180 + "weight": 50 }, { "id": 3436, "planId": 63, "cardId": 13341, - "weight": 180 + "weight": 50 }, { "id": 3437, "planId": 63, "cardId": 13312, - "weight": 180 + "weight": 50 }, { "id": 3438, "planId": 63, "cardId": 13322, - "weight": 180 + "weight": 50 }, { "id": 3439, "planId": 63, "cardId": 13332, - "weight": 180 + "weight": 50 }, { "id": 3440, "planId": 63, "cardId": 13342, - "weight": 180 + "weight": 50 }, { "id": 3441, "planId": 63, "cardId": 12311, - "weight": 180 + "weight": 50 }, { "id": 3442, "planId": 63, "cardId": 12321, - "weight": 180 + "weight": 50 }, { "id": 3443, "planId": 63, "cardId": 12331, - "weight": 180 + "weight": 50 }, { "id": 3444, "planId": 63, "cardId": 12341, - "weight": 180 + "weight": 50 }, { "id": 3445, "planId": 63, "cardId": 12312, - "weight": 180 + "weight": 50 }, { "id": 3446, "planId": 63, "cardId": 12322, - "weight": 180 + "weight": 50 }, { "id": 3447, "planId": 63, "cardId": 12332, - "weight": 180 + "weight": 50 }, { "id": 3448, "planId": 63, "cardId": 12342, - "weight": 180 + "weight": 50 }, { "id": 3449, "planId": 63, "cardId": 16311, - "weight": 180 + "weight": 50 }, { "id": 3450, "planId": 63, "cardId": 16321, - "weight": 180 + "weight": 50 }, { "id": 3451, "planId": 63, "cardId": 16331, - "weight": 180 + "weight": 50 }, { "id": 3452, "planId": 63, "cardId": 16341, - "weight": 180 + "weight": 50 }, { "id": 3453, "planId": 63, "cardId": 16312, - "weight": 180 + "weight": 50 }, { "id": 3454, "planId": 63, "cardId": 16322, - "weight": 180 + "weight": 50 }, { "id": 3455, "planId": 63, "cardId": 16332, - "weight": 180 + "weight": 50 }, { "id": 3456, "planId": 63, "cardId": 16342, - "weight": 180 + "weight": 50 }, { "id": 3457, @@ -21505,4419 +21505,4419 @@ }, { "id": 3585, - "planId": 72, + "planId": 71, "cardId": 11211, "weight": 300 }, { "id": 3586, - "planId": 72, + "planId": 71, "cardId": 11221, "weight": 300 }, { "id": 3587, - "planId": 72, + "planId": 71, "cardId": 11231, "weight": 300 }, { "id": 3588, - "planId": 72, + "planId": 71, "cardId": 11241, "weight": 300 }, { "id": 3589, - "planId": 72, + "planId": 71, "cardId": 11251, "weight": 300 }, { "id": 3590, - "planId": 72, + "planId": 71, "cardId": 11261, "weight": 300 }, { "id": 3591, - "planId": 72, + "planId": 71, "cardId": 11212, "weight": 300 }, { "id": 3592, - "planId": 72, + "planId": 71, "cardId": 11222, "weight": 300 }, { "id": 3593, - "planId": 72, + "planId": 71, "cardId": 11232, "weight": 300 }, { "id": 3594, - "planId": 72, + "planId": 71, "cardId": 11242, "weight": 300 }, { "id": 3595, - "planId": 72, + "planId": 71, "cardId": 11252, "weight": 300 }, { "id": 3596, - "planId": 72, + "planId": 71, "cardId": 11262, "weight": 300 }, { "id": 3597, - "planId": 72, + "planId": 71, "cardId": 14211, "weight": 300 }, { "id": 3598, - "planId": 72, + "planId": 71, "cardId": 14221, "weight": 300 }, { "id": 3599, - "planId": 72, + "planId": 71, "cardId": 14231, "weight": 300 }, { "id": 3600, - "planId": 72, + "planId": 71, "cardId": 14241, "weight": 300 }, { "id": 3601, - "planId": 72, + "planId": 71, "cardId": 14251, "weight": 300 }, { "id": 3602, - "planId": 72, + "planId": 71, "cardId": 14261, "weight": 300 }, { "id": 3603, - "planId": 72, + "planId": 71, "cardId": 14212, "weight": 300 }, { "id": 3604, - "planId": 72, + "planId": 71, "cardId": 14222, "weight": 300 }, { "id": 3605, - "planId": 72, + "planId": 71, "cardId": 14232, "weight": 300 }, { "id": 3606, - "planId": 72, + "planId": 71, "cardId": 14242, "weight": 300 }, { "id": 3607, - "planId": 72, + "planId": 71, "cardId": 14252, "weight": 300 }, { "id": 3608, - "planId": 72, + "planId": 71, "cardId": 14262, "weight": 300 }, { "id": 3609, - "planId": 72, + "planId": 71, "cardId": 17211, "weight": 300 }, { "id": 3610, - "planId": 72, + "planId": 71, "cardId": 17221, "weight": 300 }, { "id": 3611, - "planId": 72, + "planId": 71, "cardId": 17231, "weight": 300 }, { "id": 3612, - "planId": 72, + "planId": 71, "cardId": 17241, "weight": 300 }, { "id": 3613, - "planId": 72, + "planId": 71, "cardId": 17251, "weight": 300 }, { "id": 3614, - "planId": 72, + "planId": 71, "cardId": 17261, "weight": 300 }, { "id": 3615, - "planId": 72, + "planId": 71, "cardId": 17212, "weight": 300 }, { "id": 3616, - "planId": 72, + "planId": 71, "cardId": 17222, "weight": 300 }, { "id": 3617, - "planId": 72, + "planId": 71, "cardId": 17232, "weight": 300 }, { "id": 3618, - "planId": 72, + "planId": 71, "cardId": 17242, "weight": 300 }, { "id": 3619, - "planId": 72, + "planId": 71, "cardId": 17252, "weight": 300 }, { "id": 3620, - "planId": 72, + "planId": 71, "cardId": 17262, "weight": 300 }, { "id": 3621, - "planId": 72, + "planId": 71, "cardId": 15211, "weight": 300 }, { "id": 3622, - "planId": 72, + "planId": 71, "cardId": 15221, "weight": 300 }, { "id": 3623, - "planId": 72, + "planId": 71, "cardId": 15231, "weight": 300 }, { "id": 3624, - "planId": 72, + "planId": 71, "cardId": 15241, "weight": 300 }, { "id": 3625, - "planId": 72, + "planId": 71, "cardId": 15251, "weight": 300 }, { "id": 3626, - "planId": 72, + "planId": 71, "cardId": 15261, "weight": 300 }, { "id": 3627, - "planId": 72, + "planId": 71, "cardId": 15212, "weight": 300 }, { "id": 3628, - "planId": 72, + "planId": 71, "cardId": 15222, "weight": 300 }, { "id": 3629, - "planId": 72, + "planId": 71, "cardId": 15232, "weight": 300 }, { "id": 3630, - "planId": 72, + "planId": 71, "cardId": 15242, "weight": 300 }, { "id": 3631, - "planId": 72, + "planId": 71, "cardId": 15252, "weight": 300 }, { "id": 3632, - "planId": 72, + "planId": 71, "cardId": 15262, "weight": 300 }, { "id": 3633, - "planId": 72, + "planId": 71, "cardId": 18211, "weight": 300 }, { "id": 3634, - "planId": 72, + "planId": 71, "cardId": 18221, "weight": 300 }, { "id": 3635, - "planId": 72, + "planId": 71, "cardId": 18231, "weight": 300 }, { "id": 3636, - "planId": 72, + "planId": 71, "cardId": 18241, "weight": 300 }, { "id": 3637, - "planId": 72, + "planId": 71, "cardId": 18251, "weight": 300 }, { "id": 3638, - "planId": 72, + "planId": 71, "cardId": 18261, "weight": 300 }, { "id": 3639, - "planId": 72, + "planId": 71, "cardId": 18212, "weight": 300 }, { "id": 3640, - "planId": 72, + "planId": 71, "cardId": 18222, "weight": 300 }, { "id": 3641, - "planId": 72, + "planId": 71, "cardId": 18232, "weight": 300 }, { "id": 3642, - "planId": 72, + "planId": 71, "cardId": 18242, "weight": 300 }, { "id": 3643, - "planId": 72, + "planId": 71, "cardId": 18252, "weight": 300 }, { "id": 3644, - "planId": 72, + "planId": 71, "cardId": 18262, "weight": 300 }, { "id": 3645, - "planId": 72, + "planId": 71, "cardId": 13211, "weight": 300 }, { "id": 3646, - "planId": 72, + "planId": 71, "cardId": 13221, "weight": 300 }, { "id": 3647, - "planId": 72, + "planId": 71, "cardId": 13231, "weight": 300 }, { "id": 3648, - "planId": 72, + "planId": 71, "cardId": 13241, "weight": 300 }, { "id": 3649, - "planId": 72, + "planId": 71, "cardId": 13251, "weight": 300 }, { "id": 3650, - "planId": 72, + "planId": 71, "cardId": 13261, "weight": 300 }, { "id": 3651, - "planId": 72, + "planId": 71, "cardId": 13212, "weight": 300 }, { "id": 3652, - "planId": 72, + "planId": 71, "cardId": 13222, "weight": 300 }, { "id": 3653, - "planId": 72, + "planId": 71, "cardId": 13232, "weight": 300 }, { "id": 3654, - "planId": 72, + "planId": 71, "cardId": 13242, "weight": 300 }, { "id": 3655, - "planId": 72, + "planId": 71, "cardId": 13252, "weight": 300 }, { "id": 3656, - "planId": 72, + "planId": 71, "cardId": 13262, "weight": 300 }, { "id": 3657, - "planId": 72, + "planId": 71, "cardId": 12211, "weight": 300 }, { "id": 3658, - "planId": 72, + "planId": 71, "cardId": 12221, "weight": 300 }, { "id": 3659, - "planId": 72, + "planId": 71, "cardId": 12231, "weight": 300 }, { "id": 3660, - "planId": 72, + "planId": 71, "cardId": 12241, "weight": 300 }, { "id": 3661, - "planId": 72, + "planId": 71, "cardId": 12251, "weight": 300 }, { "id": 3662, - "planId": 72, + "planId": 71, "cardId": 12261, "weight": 300 }, { "id": 3663, - "planId": 72, + "planId": 71, "cardId": 12212, "weight": 300 }, { "id": 3664, - "planId": 72, + "planId": 71, "cardId": 12222, "weight": 300 }, { "id": 3665, - "planId": 72, + "planId": 71, "cardId": 12232, "weight": 300 }, { "id": 3666, - "planId": 72, + "planId": 71, "cardId": 12242, "weight": 300 }, { "id": 3667, - "planId": 72, + "planId": 71, "cardId": 12252, "weight": 300 }, { "id": 3668, - "planId": 72, + "planId": 71, "cardId": 12262, "weight": 300 }, { "id": 3669, - "planId": 72, + "planId": 71, "cardId": 16211, "weight": 300 }, { "id": 3670, - "planId": 72, + "planId": 71, "cardId": 16221, "weight": 300 }, { "id": 3671, - "planId": 72, + "planId": 71, "cardId": 16231, "weight": 300 }, { "id": 3672, - "planId": 72, + "planId": 71, "cardId": 16241, "weight": 300 }, { "id": 3673, - "planId": 72, + "planId": 71, "cardId": 16251, "weight": 300 }, { "id": 3674, - "planId": 72, + "planId": 71, "cardId": 16261, "weight": 300 }, { "id": 3675, - "planId": 72, + "planId": 71, "cardId": 16212, "weight": 300 }, { "id": 3676, - "planId": 72, + "planId": 71, "cardId": 16222, "weight": 300 }, { "id": 3677, - "planId": 72, + "planId": 71, "cardId": 16232, "weight": 300 }, { "id": 3678, - "planId": 72, + "planId": 71, "cardId": 16242, "weight": 300 }, { "id": 3679, - "planId": 72, + "planId": 71, "cardId": 16252, "weight": 300 }, { "id": 3680, - "planId": 72, + "planId": 71, "cardId": 16262, "weight": 300 }, { "id": 3681, - "planId": 73, + "planId": 71, "cardId": 11311, "weight": 50 }, { "id": 3682, - "planId": 73, + "planId": 71, "cardId": 11321, "weight": 50 }, { "id": 3683, - "planId": 73, + "planId": 71, "cardId": 11331, "weight": 50 }, { "id": 3684, - "planId": 73, + "planId": 71, "cardId": 11341, "weight": 50 }, { "id": 3685, - "planId": 73, + "planId": 71, "cardId": 11312, "weight": 50 }, { "id": 3686, - "planId": 73, + "planId": 71, "cardId": 11322, "weight": 50 }, { "id": 3687, - "planId": 73, + "planId": 71, "cardId": 11332, "weight": 50 }, { "id": 3688, - "planId": 73, + "planId": 71, "cardId": 11342, "weight": 50 }, { "id": 3689, - "planId": 73, + "planId": 71, "cardId": 14311, "weight": 50 }, { "id": 3690, - "planId": 73, + "planId": 71, "cardId": 14321, "weight": 50 }, { "id": 3691, - "planId": 73, + "planId": 71, "cardId": 14331, "weight": 50 }, { "id": 3692, - "planId": 73, + "planId": 71, "cardId": 14341, "weight": 50 }, { "id": 3693, - "planId": 73, + "planId": 71, "cardId": 14312, "weight": 50 }, { "id": 3694, - "planId": 73, + "planId": 71, "cardId": 14322, "weight": 50 }, { "id": 3695, - "planId": 73, + "planId": 71, "cardId": 14332, "weight": 50 }, { "id": 3696, - "planId": 73, + "planId": 71, "cardId": 14342, "weight": 50 }, { "id": 3697, - "planId": 73, + "planId": 71, "cardId": 17311, "weight": 50 }, { "id": 3698, - "planId": 73, + "planId": 71, "cardId": 17321, "weight": 50 }, { "id": 3699, - "planId": 73, + "planId": 71, "cardId": 17331, "weight": 50 }, { "id": 3700, - "planId": 73, + "planId": 71, "cardId": 17341, "weight": 50 }, { "id": 3701, - "planId": 73, + "planId": 71, "cardId": 17312, "weight": 50 }, { "id": 3702, - "planId": 73, + "planId": 71, "cardId": 17322, "weight": 50 }, { "id": 3703, - "planId": 73, + "planId": 71, "cardId": 17332, "weight": 50 }, { "id": 3704, - "planId": 73, + "planId": 71, "cardId": 17342, "weight": 50 }, { "id": 3705, - "planId": 73, + "planId": 71, "cardId": 15311, "weight": 50 }, { "id": 3706, - "planId": 73, + "planId": 71, "cardId": 15321, "weight": 50 }, { "id": 3707, - "planId": 73, + "planId": 71, "cardId": 15331, "weight": 50 }, { "id": 3708, - "planId": 73, + "planId": 71, "cardId": 15341, "weight": 50 }, { "id": 3709, - "planId": 73, + "planId": 71, "cardId": 15312, "weight": 50 }, { "id": 3710, - "planId": 73, + "planId": 71, "cardId": 15322, "weight": 50 }, { "id": 3711, - "planId": 73, + "planId": 71, "cardId": 15332, "weight": 50 }, { "id": 3712, - "planId": 73, + "planId": 71, "cardId": 15342, "weight": 50 }, { "id": 3713, - "planId": 73, + "planId": 71, "cardId": 18311, "weight": 50 }, { "id": 3714, - "planId": 73, + "planId": 71, "cardId": 18321, "weight": 50 }, { "id": 3715, - "planId": 73, + "planId": 71, "cardId": 18331, "weight": 50 }, { "id": 3716, - "planId": 73, + "planId": 71, "cardId": 18341, "weight": 50 }, { "id": 3717, - "planId": 73, + "planId": 71, "cardId": 18312, "weight": 50 }, { "id": 3718, - "planId": 73, + "planId": 71, "cardId": 18322, "weight": 50 }, { "id": 3719, - "planId": 73, + "planId": 71, "cardId": 18332, "weight": 50 }, { "id": 3720, - "planId": 73, + "planId": 71, "cardId": 18342, "weight": 50 }, { "id": 3721, - "planId": 73, + "planId": 71, "cardId": 13311, "weight": 50 }, { "id": 3722, - "planId": 73, + "planId": 71, "cardId": 13321, "weight": 50 }, { "id": 3723, - "planId": 73, + "planId": 71, "cardId": 13331, "weight": 50 }, { "id": 3724, - "planId": 73, + "planId": 71, "cardId": 13341, "weight": 50 }, { "id": 3725, - "planId": 73, + "planId": 71, "cardId": 13312, "weight": 50 }, { "id": 3726, - "planId": 73, + "planId": 71, "cardId": 13322, "weight": 50 }, { "id": 3727, - "planId": 73, + "planId": 71, "cardId": 13332, "weight": 50 }, { "id": 3728, - "planId": 73, + "planId": 71, "cardId": 13342, "weight": 50 }, { "id": 3729, - "planId": 73, + "planId": 71, "cardId": 12311, "weight": 50 }, { "id": 3730, - "planId": 73, + "planId": 71, "cardId": 12321, "weight": 50 }, { "id": 3731, - "planId": 73, + "planId": 71, "cardId": 12331, "weight": 50 }, { "id": 3732, - "planId": 73, + "planId": 71, "cardId": 12341, "weight": 50 }, { "id": 3733, - "planId": 73, + "planId": 71, "cardId": 12312, "weight": 50 }, { "id": 3734, - "planId": 73, + "planId": 71, "cardId": 12322, "weight": 50 }, { "id": 3735, - "planId": 73, + "planId": 71, "cardId": 12332, "weight": 50 }, { "id": 3736, - "planId": 73, + "planId": 71, "cardId": 12342, "weight": 50 }, { "id": 3737, - "planId": 73, + "planId": 71, "cardId": 16311, "weight": 50 }, { "id": 3738, - "planId": 73, + "planId": 71, "cardId": 16321, "weight": 50 }, { "id": 3739, - "planId": 73, + "planId": 71, "cardId": 16331, "weight": 50 }, { "id": 3740, - "planId": 73, + "planId": 71, "cardId": 16341, "weight": 50 }, { "id": 3741, - "planId": 73, + "planId": 71, "cardId": 16312, "weight": 50 }, { "id": 3742, - "planId": 73, + "planId": 71, "cardId": 16322, "weight": 50 }, { "id": 3743, - "planId": 73, + "planId": 71, "cardId": 16332, "weight": 50 }, { "id": 3744, - "planId": 73, + "planId": 71, "cardId": 16342, "weight": 50 }, { "id": 3745, - "planId": 73, + "planId": 72, "cardId": 11111, - "weight": 200 + "weight": 250 }, { "id": 3746, - "planId": 73, + "planId": 72, "cardId": 11121, - "weight": 200 + "weight": 250 }, { "id": 3747, - "planId": 73, + "planId": 72, "cardId": 11131, - "weight": 200 + "weight": 250 }, { "id": 3748, - "planId": 73, + "planId": 72, "cardId": 11141, - "weight": 200 + "weight": 250 }, { "id": 3749, - "planId": 73, + "planId": 72, "cardId": 11151, - "weight": 200 + "weight": 250 }, { "id": 3750, - "planId": 73, + "planId": 72, "cardId": 11161, - "weight": 200 + "weight": 250 }, { "id": 3751, - "planId": 73, + "planId": 72, "cardId": 11171, - "weight": 200 + "weight": 250 }, { "id": 3752, - "planId": 73, + "planId": 72, "cardId": 11181, - "weight": 200 + "weight": 250 }, { "id": 3753, - "planId": 73, + "planId": 72, "cardId": 11112, - "weight": 200 + "weight": 250 }, { "id": 3754, - "planId": 73, + "planId": 72, "cardId": 11122, - "weight": 200 + "weight": 250 }, { "id": 3755, - "planId": 73, + "planId": 72, "cardId": 11132, - "weight": 200 + "weight": 250 }, { "id": 3756, - "planId": 73, + "planId": 72, "cardId": 11142, - "weight": 200 + "weight": 250 }, { "id": 3757, - "planId": 73, + "planId": 72, "cardId": 11152, - "weight": 200 + "weight": 250 }, { "id": 3758, - "planId": 73, + "planId": 72, "cardId": 11162, - "weight": 200 + "weight": 250 }, { "id": 3759, - "planId": 73, + "planId": 72, "cardId": 11172, - "weight": 200 + "weight": 250 }, { "id": 3760, - "planId": 73, + "planId": 72, "cardId": 11182, - "weight": 200 + "weight": 250 }, { "id": 3761, - "planId": 73, + "planId": 72, "cardId": 14111, - "weight": 200 + "weight": 250 }, { "id": 3762, - "planId": 73, + "planId": 72, "cardId": 14121, - "weight": 200 + "weight": 250 }, { "id": 3763, - "planId": 73, + "planId": 72, "cardId": 14131, - "weight": 200 + "weight": 250 }, { "id": 3764, - "planId": 73, + "planId": 72, "cardId": 14141, - "weight": 200 + "weight": 250 }, { "id": 3765, - "planId": 73, + "planId": 72, "cardId": 14151, - "weight": 200 + "weight": 250 }, { "id": 3766, - "planId": 73, + "planId": 72, "cardId": 14161, - "weight": 200 + "weight": 250 }, { "id": 3767, - "planId": 73, + "planId": 72, "cardId": 14171, - "weight": 200 + "weight": 250 }, { "id": 3768, - "planId": 73, + "planId": 72, "cardId": 14181, - "weight": 200 + "weight": 250 }, { "id": 3769, - "planId": 73, + "planId": 72, "cardId": 14112, - "weight": 200 + "weight": 250 }, { "id": 3770, - "planId": 73, + "planId": 72, "cardId": 14122, - "weight": 200 + "weight": 250 }, { "id": 3771, - "planId": 73, + "planId": 72, "cardId": 14132, - "weight": 200 + "weight": 250 }, { "id": 3772, - "planId": 73, + "planId": 72, "cardId": 14142, - "weight": 200 + "weight": 250 }, { "id": 3773, - "planId": 73, + "planId": 72, "cardId": 14152, - "weight": 200 + "weight": 250 }, { "id": 3774, - "planId": 73, + "planId": 72, "cardId": 14162, - "weight": 200 + "weight": 250 }, { "id": 3775, - "planId": 73, + "planId": 72, "cardId": 14172, - "weight": 200 + "weight": 250 }, { "id": 3776, - "planId": 73, + "planId": 72, "cardId": 14182, - "weight": 200 + "weight": 250 }, { "id": 3777, - "planId": 73, + "planId": 72, "cardId": 17111, - "weight": 200 + "weight": 250 }, { "id": 3778, - "planId": 73, + "planId": 72, "cardId": 17121, - "weight": 200 + "weight": 250 }, { "id": 3779, - "planId": 73, + "planId": 72, "cardId": 17131, - "weight": 200 + "weight": 250 }, { "id": 3780, - "planId": 73, + "planId": 72, "cardId": 17141, - "weight": 200 + "weight": 250 }, { "id": 3781, - "planId": 73, + "planId": 72, "cardId": 17151, - "weight": 200 + "weight": 250 }, { "id": 3782, - "planId": 73, + "planId": 72, "cardId": 17161, - "weight": 200 + "weight": 250 }, { "id": 3783, - "planId": 73, + "planId": 72, "cardId": 17171, - "weight": 200 + "weight": 250 }, { "id": 3784, - "planId": 73, + "planId": 72, "cardId": 17181, - "weight": 200 + "weight": 250 }, { "id": 3785, - "planId": 73, + "planId": 72, "cardId": 17112, - "weight": 200 + "weight": 250 }, { "id": 3786, - "planId": 73, + "planId": 72, "cardId": 17122, - "weight": 200 + "weight": 250 }, { "id": 3787, - "planId": 73, + "planId": 72, "cardId": 17132, - "weight": 200 + "weight": 250 }, { "id": 3788, - "planId": 73, + "planId": 72, "cardId": 17172, - "weight": 200 + "weight": 250 }, { "id": 3789, - "planId": 73, + "planId": 72, "cardId": 17152, - "weight": 200 + "weight": 250 }, { "id": 3790, - "planId": 73, + "planId": 72, "cardId": 17162, - "weight": 200 + "weight": 250 }, { "id": 3791, - "planId": 73, + "planId": 72, "cardId": 17172, - "weight": 200 + "weight": 250 }, { "id": 3792, - "planId": 73, + "planId": 72, "cardId": 17182, - "weight": 200 + "weight": 250 }, { "id": 3793, - "planId": 73, + "planId": 72, "cardId": 15111, - "weight": 200 + "weight": 250 }, { "id": 3794, - "planId": 73, + "planId": 72, "cardId": 15121, - "weight": 200 + "weight": 250 }, { "id": 3795, - "planId": 73, + "planId": 72, "cardId": 15131, - "weight": 200 + "weight": 250 }, { "id": 3796, - "planId": 73, + "planId": 72, "cardId": 15141, - "weight": 200 + "weight": 250 }, { "id": 3797, - "planId": 73, + "planId": 72, "cardId": 15151, - "weight": 200 + "weight": 250 }, { "id": 3798, - "planId": 73, + "planId": 72, "cardId": 15161, - "weight": 200 + "weight": 250 }, { "id": 3799, - "planId": 73, + "planId": 72, "cardId": 15171, - "weight": 200 + "weight": 250 }, { "id": 3800, - "planId": 73, + "planId": 72, "cardId": 15181, - "weight": 200 + "weight": 250 }, { "id": 3801, - "planId": 73, + "planId": 72, "cardId": 15112, - "weight": 200 + "weight": 250 }, { "id": 3802, - "planId": 73, + "planId": 72, "cardId": 15122, - "weight": 200 + "weight": 250 }, { "id": 3803, - "planId": 73, + "planId": 72, "cardId": 15132, - "weight": 200 + "weight": 250 }, { "id": 3804, - "planId": 73, + "planId": 72, "cardId": 15142, - "weight": 200 + "weight": 250 }, { "id": 3805, - "planId": 73, + "planId": 72, "cardId": 15152, - "weight": 200 + "weight": 250 }, { "id": 3806, - "planId": 73, + "planId": 72, "cardId": 15162, - "weight": 200 + "weight": 250 }, { "id": 3807, - "planId": 73, + "planId": 72, "cardId": 15172, - "weight": 200 + "weight": 250 }, { "id": 3808, - "planId": 73, + "planId": 72, "cardId": 15182, - "weight": 200 + "weight": 250 }, { "id": 3809, - "planId": 73, + "planId": 72, "cardId": 18111, - "weight": 200 + "weight": 250 }, { "id": 3810, - "planId": 73, + "planId": 72, "cardId": 18121, - "weight": 200 + "weight": 250 }, { "id": 3811, - "planId": 73, + "planId": 72, "cardId": 18131, - "weight": 200 + "weight": 250 }, { "id": 3812, - "planId": 73, + "planId": 72, "cardId": 18141, - "weight": 200 + "weight": 250 }, { "id": 3813, - "planId": 73, + "planId": 72, "cardId": 18151, - "weight": 200 + "weight": 250 }, { "id": 3814, - "planId": 73, + "planId": 72, "cardId": 18161, - "weight": 200 + "weight": 250 }, { "id": 3815, - "planId": 73, + "planId": 72, "cardId": 18171, - "weight": 200 + "weight": 250 }, { "id": 3816, - "planId": 73, + "planId": 72, "cardId": 18181, - "weight": 200 + "weight": 250 }, { "id": 3817, - "planId": 73, + "planId": 72, "cardId": 18112, - "weight": 200 + "weight": 250 }, { "id": 3818, - "planId": 73, + "planId": 72, "cardId": 18122, - "weight": 200 + "weight": 250 }, { "id": 3819, - "planId": 73, + "planId": 72, "cardId": 18132, - "weight": 200 + "weight": 250 }, { "id": 3820, - "planId": 73, + "planId": 72, "cardId": 18142, - "weight": 200 + "weight": 250 }, { "id": 3821, - "planId": 73, + "planId": 72, "cardId": 18152, - "weight": 200 + "weight": 250 }, { "id": 3822, - "planId": 73, + "planId": 72, "cardId": 18162, - "weight": 200 + "weight": 250 }, { "id": 3823, - "planId": 73, + "planId": 72, "cardId": 18172, - "weight": 200 + "weight": 250 }, { "id": 3824, - "planId": 73, + "planId": 72, "cardId": 18182, - "weight": 200 + "weight": 250 }, { "id": 3825, - "planId": 73, + "planId": 72, "cardId": 13111, - "weight": 200 + "weight": 250 }, { "id": 3826, - "planId": 73, + "planId": 72, "cardId": 13121, - "weight": 200 + "weight": 250 }, { "id": 3827, - "planId": 73, + "planId": 72, "cardId": 13131, - "weight": 200 + "weight": 250 }, { "id": 3828, - "planId": 73, + "planId": 72, "cardId": 13141, - "weight": 200 + "weight": 250 }, { "id": 3829, - "planId": 73, + "planId": 72, "cardId": 13151, - "weight": 200 + "weight": 250 }, { "id": 3830, - "planId": 73, + "planId": 72, "cardId": 13161, - "weight": 200 + "weight": 250 }, { "id": 3831, - "planId": 73, + "planId": 72, "cardId": 13171, - "weight": 200 + "weight": 250 }, { "id": 3832, - "planId": 73, + "planId": 72, "cardId": 13181, - "weight": 200 + "weight": 250 }, { "id": 3833, - "planId": 73, + "planId": 72, "cardId": 13112, - "weight": 200 + "weight": 250 }, { "id": 3834, - "planId": 73, + "planId": 72, "cardId": 13122, - "weight": 200 + "weight": 250 }, { "id": 3835, - "planId": 73, + "planId": 72, "cardId": 13132, - "weight": 200 + "weight": 250 }, { "id": 3836, - "planId": 73, + "planId": 72, "cardId": 13142, - "weight": 200 + "weight": 250 }, { "id": 3837, - "planId": 73, + "planId": 72, "cardId": 13152, - "weight": 200 + "weight": 250 }, { "id": 3838, - "planId": 73, + "planId": 72, "cardId": 13162, - "weight": 200 + "weight": 250 }, { "id": 3839, - "planId": 73, + "planId": 72, "cardId": 13172, - "weight": 200 + "weight": 250 }, { "id": 3840, - "planId": 73, + "planId": 72, "cardId": 13182, - "weight": 200 + "weight": 250 }, { "id": 3841, - "planId": 73, + "planId": 72, "cardId": 12111, - "weight": 200 + "weight": 250 }, { "id": 3842, - "planId": 73, + "planId": 72, "cardId": 12121, - "weight": 200 + "weight": 250 }, { "id": 3843, - "planId": 73, + "planId": 72, "cardId": 12131, - "weight": 200 + "weight": 250 }, { "id": 3844, - "planId": 73, + "planId": 72, "cardId": 12141, - "weight": 200 + "weight": 250 }, { "id": 3845, - "planId": 73, + "planId": 72, "cardId": 12151, - "weight": 200 + "weight": 250 }, { "id": 3846, - "planId": 73, + "planId": 72, "cardId": 12161, - "weight": 200 + "weight": 250 }, { "id": 3847, - "planId": 73, + "planId": 72, "cardId": 12171, - "weight": 200 + "weight": 250 }, { "id": 3848, - "planId": 73, + "planId": 72, "cardId": 12181, - "weight": 200 + "weight": 250 }, { "id": 3849, - "planId": 73, + "planId": 72, "cardId": 12112, - "weight": 200 + "weight": 250 }, { "id": 3850, - "planId": 73, + "planId": 72, "cardId": 12122, - "weight": 200 + "weight": 250 }, { "id": 3851, - "planId": 73, + "planId": 72, "cardId": 12132, - "weight": 200 + "weight": 250 }, { "id": 3852, - "planId": 73, + "planId": 72, "cardId": 12142, - "weight": 200 + "weight": 250 }, { "id": 3853, - "planId": 73, + "planId": 72, "cardId": 12152, - "weight": 200 + "weight": 250 }, { "id": 3854, - "planId": 73, + "planId": 72, "cardId": 12162, - "weight": 200 + "weight": 250 }, { "id": 3855, - "planId": 73, + "planId": 72, "cardId": 12172, - "weight": 200 + "weight": 250 }, { "id": 3856, - "planId": 73, + "planId": 72, "cardId": 12182, - "weight": 200 + "weight": 250 }, { "id": 3857, - "planId": 73, + "planId": 72, "cardId": 16111, - "weight": 200 + "weight": 250 }, { "id": 3858, - "planId": 73, + "planId": 72, "cardId": 16121, - "weight": 200 + "weight": 250 }, { "id": 3859, - "planId": 73, + "planId": 72, "cardId": 16131, - "weight": 200 + "weight": 250 }, { "id": 3860, - "planId": 73, + "planId": 72, "cardId": 16141, - "weight": 200 + "weight": 250 }, { "id": 3861, - "planId": 73, + "planId": 72, "cardId": 16151, - "weight": 200 + "weight": 250 }, { "id": 3862, - "planId": 73, + "planId": 72, "cardId": 16161, - "weight": 200 + "weight": 250 }, { "id": 3863, - "planId": 73, + "planId": 72, "cardId": 16171, - "weight": 200 + "weight": 250 }, { "id": 3864, - "planId": 73, + "planId": 72, "cardId": 16181, - "weight": 200 + "weight": 250 }, { "id": 3865, - "planId": 73, + "planId": 72, "cardId": 16112, - "weight": 200 + "weight": 250 }, { "id": 3866, - "planId": 73, + "planId": 72, "cardId": 16122, - "weight": 200 + "weight": 250 }, { "id": 3867, - "planId": 73, + "planId": 72, "cardId": 16132, - "weight": 200 + "weight": 250 }, { "id": 3868, - "planId": 73, + "planId": 72, "cardId": 16142, - "weight": 200 + "weight": 250 }, { "id": 3869, - "planId": 73, + "planId": 72, "cardId": 16152, - "weight": 200 + "weight": 250 }, { "id": 3870, - "planId": 73, + "planId": 72, "cardId": 16162, - "weight": 200 + "weight": 250 }, { "id": 3871, - "planId": 73, + "planId": 72, "cardId": 16172, - "weight": 200 + "weight": 250 }, { "id": 3872, - "planId": 73, + "planId": 72, "cardId": 16182, - "weight": 200 + "weight": 250 }, { "id": 3873, - "planId": 73, + "planId": 72, "cardId": 11211, "weight": 300 }, { "id": 3874, - "planId": 73, + "planId": 72, "cardId": 11221, "weight": 300 }, { "id": 3875, - "planId": 73, + "planId": 72, "cardId": 11231, "weight": 300 }, { "id": 3876, - "planId": 73, + "planId": 72, "cardId": 11241, "weight": 300 }, { "id": 3877, - "planId": 73, + "planId": 72, "cardId": 11251, "weight": 300 }, { "id": 3878, - "planId": 73, + "planId": 72, "cardId": 11261, "weight": 300 }, { "id": 3879, - "planId": 73, + "planId": 72, "cardId": 11212, "weight": 300 }, { "id": 3880, - "planId": 73, + "planId": 72, "cardId": 11222, "weight": 300 }, { "id": 3881, - "planId": 73, + "planId": 72, "cardId": 11232, "weight": 300 }, { "id": 3882, - "planId": 73, + "planId": 72, "cardId": 11242, "weight": 300 }, { "id": 3883, - "planId": 73, + "planId": 72, "cardId": 11252, "weight": 300 }, { "id": 3884, - "planId": 73, + "planId": 72, "cardId": 11262, "weight": 300 }, { "id": 3885, - "planId": 73, + "planId": 72, "cardId": 14211, "weight": 300 }, { "id": 3886, - "planId": 73, + "planId": 72, "cardId": 14221, "weight": 300 }, { "id": 3887, - "planId": 73, + "planId": 72, "cardId": 14231, "weight": 300 }, { "id": 3888, - "planId": 73, + "planId": 72, "cardId": 14241, "weight": 300 }, { "id": 3889, - "planId": 73, + "planId": 72, "cardId": 14251, "weight": 300 }, { "id": 3890, - "planId": 73, + "planId": 72, "cardId": 14261, "weight": 300 }, { "id": 3891, - "planId": 73, + "planId": 72, "cardId": 14212, "weight": 300 }, { "id": 3892, - "planId": 73, + "planId": 72, "cardId": 14222, "weight": 300 }, { "id": 3893, - "planId": 73, + "planId": 72, "cardId": 14232, "weight": 300 }, { "id": 3894, - "planId": 73, + "planId": 72, "cardId": 14242, "weight": 300 }, { "id": 3895, - "planId": 73, + "planId": 72, "cardId": 14252, "weight": 300 }, { "id": 3896, - "planId": 73, + "planId": 72, "cardId": 14262, "weight": 300 }, { "id": 3897, - "planId": 73, + "planId": 72, "cardId": 17211, "weight": 300 }, { "id": 3898, - "planId": 73, + "planId": 72, "cardId": 17221, "weight": 300 }, { "id": 3899, - "planId": 73, + "planId": 72, "cardId": 17231, "weight": 300 }, { "id": 3900, - "planId": 73, + "planId": 72, "cardId": 17241, "weight": 300 }, { "id": 3901, - "planId": 73, + "planId": 72, "cardId": 17251, "weight": 300 }, { "id": 3902, - "planId": 73, + "planId": 72, "cardId": 17261, "weight": 300 }, { "id": 3903, - "planId": 73, + "planId": 72, "cardId": 17212, "weight": 300 }, { "id": 3904, - "planId": 73, + "planId": 72, "cardId": 17222, "weight": 300 }, { "id": 3905, - "planId": 73, + "planId": 72, "cardId": 17232, "weight": 300 }, { "id": 3906, - "planId": 73, + "planId": 72, "cardId": 17242, "weight": 300 }, { "id": 3907, - "planId": 73, + "planId": 72, "cardId": 17252, "weight": 300 }, { "id": 3908, - "planId": 73, + "planId": 72, "cardId": 17262, "weight": 300 }, { "id": 3909, - "planId": 73, + "planId": 72, "cardId": 15211, "weight": 300 }, { "id": 3910, - "planId": 73, + "planId": 72, "cardId": 15221, "weight": 300 }, { "id": 3911, - "planId": 73, + "planId": 72, "cardId": 15231, "weight": 300 }, { "id": 3912, - "planId": 73, + "planId": 72, "cardId": 15241, "weight": 300 }, { "id": 3913, - "planId": 73, + "planId": 72, "cardId": 15251, "weight": 300 }, { "id": 3914, - "planId": 73, + "planId": 72, "cardId": 15261, "weight": 300 }, { "id": 3915, - "planId": 73, + "planId": 72, "cardId": 15212, "weight": 300 }, { "id": 3916, - "planId": 73, + "planId": 72, "cardId": 15222, "weight": 300 }, { "id": 3917, - "planId": 73, + "planId": 72, "cardId": 15232, "weight": 300 }, { "id": 3918, - "planId": 73, + "planId": 72, "cardId": 15242, "weight": 300 }, { "id": 3919, - "planId": 73, + "planId": 72, "cardId": 15252, "weight": 300 }, { "id": 3920, - "planId": 73, + "planId": 72, "cardId": 15262, "weight": 300 }, { "id": 3921, - "planId": 73, + "planId": 72, "cardId": 18211, "weight": 300 }, { "id": 3922, - "planId": 73, + "planId": 72, "cardId": 18221, "weight": 300 }, { "id": 3923, - "planId": 73, + "planId": 72, "cardId": 18231, "weight": 300 }, { "id": 3924, - "planId": 73, + "planId": 72, "cardId": 18241, "weight": 300 }, { "id": 3925, - "planId": 73, + "planId": 72, "cardId": 18251, "weight": 300 }, { "id": 3926, - "planId": 73, + "planId": 72, "cardId": 18261, "weight": 300 }, { "id": 3927, - "planId": 73, + "planId": 72, "cardId": 18212, "weight": 300 }, { "id": 3928, - "planId": 73, + "planId": 72, "cardId": 18222, "weight": 300 }, { "id": 3929, - "planId": 73, + "planId": 72, "cardId": 18232, "weight": 300 }, { "id": 3930, - "planId": 73, + "planId": 72, "cardId": 18242, "weight": 300 }, { "id": 3931, - "planId": 73, + "planId": 72, "cardId": 18252, "weight": 300 }, { "id": 3932, - "planId": 73, + "planId": 72, "cardId": 18262, "weight": 300 }, { "id": 3933, - "planId": 73, + "planId": 72, "cardId": 13211, "weight": 300 }, { "id": 3934, - "planId": 73, + "planId": 72, "cardId": 13221, "weight": 300 }, { "id": 3935, - "planId": 73, + "planId": 72, "cardId": 13231, "weight": 300 }, { "id": 3936, - "planId": 73, + "planId": 72, "cardId": 13241, "weight": 300 }, { "id": 3937, - "planId": 73, + "planId": 72, "cardId": 13251, "weight": 300 }, { "id": 3938, - "planId": 73, + "planId": 72, "cardId": 13261, "weight": 300 }, { "id": 3939, - "planId": 73, + "planId": 72, "cardId": 13212, "weight": 300 }, { "id": 3940, - "planId": 73, + "planId": 72, "cardId": 13222, "weight": 300 }, { "id": 3941, - "planId": 73, + "planId": 72, "cardId": 13232, "weight": 300 }, { "id": 3942, - "planId": 73, + "planId": 72, "cardId": 13242, "weight": 300 }, { "id": 3943, - "planId": 73, + "planId": 72, "cardId": 13252, "weight": 300 }, { "id": 3944, - "planId": 73, + "planId": 72, "cardId": 13262, "weight": 300 }, { "id": 3945, - "planId": 73, + "planId": 72, "cardId": 12211, "weight": 300 }, { "id": 3946, - "planId": 73, + "planId": 72, "cardId": 12221, "weight": 300 }, { "id": 3947, - "planId": 73, + "planId": 72, "cardId": 12231, "weight": 300 }, { "id": 3948, - "planId": 73, + "planId": 72, "cardId": 12241, "weight": 300 }, { "id": 3949, - "planId": 73, + "planId": 72, "cardId": 12251, "weight": 300 }, { "id": 3950, - "planId": 73, + "planId": 72, "cardId": 12261, "weight": 300 }, { "id": 3951, - "planId": 73, + "planId": 72, "cardId": 12212, "weight": 300 }, { "id": 3952, - "planId": 73, + "planId": 72, "cardId": 12222, "weight": 300 }, { "id": 3953, - "planId": 73, + "planId": 72, "cardId": 12232, "weight": 300 }, { "id": 3954, - "planId": 73, + "planId": 72, "cardId": 12242, "weight": 300 }, { "id": 3955, - "planId": 73, + "planId": 72, "cardId": 12252, "weight": 300 }, { "id": 3956, - "planId": 73, + "planId": 72, "cardId": 12262, "weight": 300 }, { "id": 3957, - "planId": 73, + "planId": 72, "cardId": 16211, "weight": 300 }, { "id": 3958, - "planId": 73, + "planId": 72, "cardId": 16221, "weight": 300 }, { "id": 3959, - "planId": 73, + "planId": 72, "cardId": 16231, "weight": 300 }, { "id": 3960, - "planId": 73, + "planId": 72, "cardId": 16241, "weight": 300 }, { "id": 3961, - "planId": 73, + "planId": 72, "cardId": 16251, "weight": 300 }, { "id": 3962, - "planId": 73, + "planId": 72, "cardId": 16261, "weight": 300 }, { "id": 3963, - "planId": 73, + "planId": 72, "cardId": 16212, "weight": 300 }, { "id": 3964, - "planId": 73, + "planId": 72, "cardId": 16222, "weight": 300 }, { "id": 3965, - "planId": 73, + "planId": 72, "cardId": 16232, "weight": 300 }, { "id": 3966, - "planId": 73, + "planId": 72, "cardId": 16242, "weight": 300 }, { "id": 3967, - "planId": 73, + "planId": 72, "cardId": 16252, "weight": 300 }, { "id": 3968, - "planId": 73, + "planId": 72, "cardId": 16262, "weight": 300 }, { "id": 3969, - "planId": 73, + "planId": 72, "cardId": 11311, - "weight": 150 + "weight": 50 }, { "id": 3970, - "planId": 73, + "planId": 72, "cardId": 11321, - "weight": 150 + "weight": 50 }, { "id": 3971, - "planId": 73, + "planId": 72, "cardId": 11331, - "weight": 150 + "weight": 50 }, { "id": 3972, - "planId": 73, + "planId": 72, "cardId": 11341, - "weight": 150 + "weight": 50 }, { "id": 3973, - "planId": 73, + "planId": 72, "cardId": 11312, - "weight": 150 + "weight": 50 }, { "id": 3974, - "planId": 73, + "planId": 72, "cardId": 11322, - "weight": 150 + "weight": 50 }, { "id": 3975, - "planId": 73, + "planId": 72, "cardId": 11332, - "weight": 150 + "weight": 50 }, { "id": 3976, - "planId": 73, + "planId": 72, "cardId": 11342, - "weight": 150 + "weight": 50 }, { "id": 3977, - "planId": 73, + "planId": 72, "cardId": 14311, - "weight": 150 + "weight": 50 }, { "id": 3978, - "planId": 73, + "planId": 72, "cardId": 14321, - "weight": 150 + "weight": 50 }, { "id": 3979, - "planId": 73, + "planId": 72, "cardId": 14331, - "weight": 150 + "weight": 50 }, { "id": 3980, - "planId": 73, + "planId": 72, "cardId": 14341, - "weight": 150 + "weight": 50 }, { "id": 3981, - "planId": 73, + "planId": 72, "cardId": 14312, - "weight": 150 + "weight": 50 }, { "id": 3982, - "planId": 73, + "planId": 72, "cardId": 14322, - "weight": 150 + "weight": 50 }, { "id": 3983, - "planId": 73, + "planId": 72, "cardId": 14332, - "weight": 150 + "weight": 50 }, { "id": 3984, - "planId": 73, + "planId": 72, "cardId": 14342, - "weight": 150 + "weight": 50 }, { "id": 3985, - "planId": 73, + "planId": 72, "cardId": 17311, - "weight": 150 + "weight": 50 }, { "id": 3986, - "planId": 73, + "planId": 72, "cardId": 17321, - "weight": 150 + "weight": 50 }, { "id": 3987, - "planId": 73, + "planId": 72, "cardId": 17331, - "weight": 150 + "weight": 50 }, { "id": 3988, - "planId": 73, + "planId": 72, "cardId": 17341, - "weight": 150 + "weight": 50 }, { "id": 3989, - "planId": 73, + "planId": 72, "cardId": 17312, - "weight": 150 + "weight": 50 }, { "id": 3990, - "planId": 73, + "planId": 72, "cardId": 17322, - "weight": 150 + "weight": 50 }, { "id": 3991, - "planId": 73, + "planId": 72, "cardId": 17332, - "weight": 150 + "weight": 50 }, { "id": 3992, - "planId": 73, + "planId": 72, "cardId": 17342, - "weight": 150 + "weight": 50 }, { "id": 3993, - "planId": 73, + "planId": 72, "cardId": 15311, - "weight": 150 + "weight": 50 }, { "id": 3994, - "planId": 73, + "planId": 72, "cardId": 15321, - "weight": 150 + "weight": 50 }, { "id": 3995, - "planId": 73, + "planId": 72, "cardId": 15331, - "weight": 150 + "weight": 50 }, { "id": 3996, - "planId": 73, + "planId": 72, "cardId": 15341, - "weight": 150 + "weight": 50 }, { "id": 3997, - "planId": 73, + "planId": 72, "cardId": 15312, - "weight": 150 + "weight": 50 }, { "id": 3998, - "planId": 73, + "planId": 72, "cardId": 15322, - "weight": 150 + "weight": 50 }, { "id": 3999, - "planId": 73, + "planId": 72, "cardId": 15332, - "weight": 150 + "weight": 50 }, { "id": 4000, - "planId": 73, + "planId": 72, "cardId": 15342, - "weight": 150 + "weight": 50 }, { "id": 4001, - "planId": 73, + "planId": 72, "cardId": 18311, - "weight": 150 + "weight": 50 }, { "id": 4002, - "planId": 73, + "planId": 72, "cardId": 18321, - "weight": 150 + "weight": 50 }, { "id": 4003, - "planId": 73, + "planId": 72, "cardId": 18331, - "weight": 150 + "weight": 50 }, { "id": 4004, - "planId": 73, + "planId": 72, "cardId": 18341, - "weight": 150 + "weight": 50 }, { "id": 4005, - "planId": 73, + "planId": 72, "cardId": 18312, - "weight": 150 + "weight": 50 }, { "id": 4006, - "planId": 73, + "planId": 72, "cardId": 18322, - "weight": 150 + "weight": 50 }, { "id": 4007, - "planId": 73, + "planId": 72, "cardId": 18332, - "weight": 150 + "weight": 50 }, { "id": 4008, - "planId": 73, + "planId": 72, "cardId": 18342, - "weight": 150 + "weight": 50 }, { "id": 4009, - "planId": 73, + "planId": 72, "cardId": 13311, - "weight": 150 + "weight": 50 }, { "id": 4010, - "planId": 73, + "planId": 72, "cardId": 13321, - "weight": 150 + "weight": 50 }, { "id": 4011, - "planId": 73, + "planId": 72, "cardId": 13331, - "weight": 150 + "weight": 50 }, { "id": 4012, - "planId": 73, + "planId": 72, "cardId": 13341, - "weight": 150 + "weight": 50 }, { "id": 4013, - "planId": 73, + "planId": 72, "cardId": 13312, - "weight": 150 + "weight": 50 }, { "id": 4014, - "planId": 73, + "planId": 72, "cardId": 13322, - "weight": 150 + "weight": 50 }, { "id": 4015, - "planId": 73, + "planId": 72, "cardId": 13332, - "weight": 150 + "weight": 50 }, { "id": 4016, - "planId": 73, + "planId": 72, "cardId": 13342, - "weight": 150 + "weight": 50 }, { "id": 4017, - "planId": 73, + "planId": 72, "cardId": 12311, - "weight": 150 + "weight": 50 }, { "id": 4018, - "planId": 73, + "planId": 72, "cardId": 12321, - "weight": 150 + "weight": 50 }, { "id": 4019, - "planId": 73, + "planId": 72, "cardId": 12331, - "weight": 150 + "weight": 50 }, { "id": 4020, - "planId": 73, + "planId": 72, "cardId": 12341, - "weight": 150 + "weight": 50 }, { "id": 4021, - "planId": 73, + "planId": 72, "cardId": 12312, - "weight": 150 + "weight": 50 }, { "id": 4022, - "planId": 73, + "planId": 72, "cardId": 12322, - "weight": 150 + "weight": 50 }, { "id": 4023, - "planId": 73, + "planId": 72, "cardId": 12332, - "weight": 150 + "weight": 50 }, { "id": 4024, - "planId": 73, + "planId": 72, "cardId": 12342, - "weight": 150 + "weight": 50 }, { "id": 4025, - "planId": 73, + "planId": 72, "cardId": 16311, - "weight": 150 + "weight": 50 }, { "id": 4026, - "planId": 73, + "planId": 72, "cardId": 16321, - "weight": 150 + "weight": 50 }, { "id": 4027, - "planId": 73, + "planId": 72, "cardId": 16331, - "weight": 150 + "weight": 50 }, { "id": 4028, - "planId": 73, + "planId": 72, "cardId": 16341, - "weight": 150 + "weight": 50 }, { "id": 4029, - "planId": 73, + "planId": 72, "cardId": 16312, - "weight": 150 + "weight": 50 }, { "id": 4030, - "planId": 73, + "planId": 72, "cardId": 16322, - "weight": 150 + "weight": 50 }, { "id": 4031, - "planId": 73, + "planId": 72, "cardId": 16332, - "weight": 150 + "weight": 50 }, { "id": 4032, - "planId": 73, + "planId": 72, "cardId": 16342, - "weight": 150 + "weight": 50 }, { "id": 4033, "planId": 73, "cardId": 11111, - "weight": 90 + "weight": 250 }, { "id": 4034, "planId": 73, "cardId": 11121, - "weight": 90 + "weight": 250 }, { "id": 4035, "planId": 73, "cardId": 11131, - "weight": 90 + "weight": 250 }, { "id": 4036, "planId": 73, "cardId": 11141, - "weight": 90 + "weight": 250 }, { "id": 4037, "planId": 73, "cardId": 11151, - "weight": 90 + "weight": 250 }, { "id": 4038, "planId": 73, "cardId": 11161, - "weight": 90 + "weight": 250 }, { "id": 4039, "planId": 73, "cardId": 11171, - "weight": 90 + "weight": 250 }, { "id": 4040, "planId": 73, "cardId": 11181, - "weight": 90 + "weight": 250 }, { "id": 4041, "planId": 73, "cardId": 11112, - "weight": 90 + "weight": 250 }, { "id": 4042, "planId": 73, "cardId": 11122, - "weight": 90 + "weight": 250 }, { "id": 4043, "planId": 73, "cardId": 11132, - "weight": 90 + "weight": 250 }, { "id": 4044, "planId": 73, "cardId": 11142, - "weight": 90 + "weight": 250 }, { "id": 4045, "planId": 73, "cardId": 11152, - "weight": 90 + "weight": 250 }, { "id": 4046, "planId": 73, "cardId": 11162, - "weight": 90 + "weight": 250 }, { "id": 4047, "planId": 73, "cardId": 11172, - "weight": 90 + "weight": 250 }, { "id": 4048, "planId": 73, "cardId": 11182, - "weight": 90 + "weight": 250 }, { "id": 4049, "planId": 73, "cardId": 14111, - "weight": 90 + "weight": 250 }, { "id": 4050, "planId": 73, "cardId": 14121, - "weight": 90 + "weight": 250 }, { "id": 4051, "planId": 73, "cardId": 14131, - "weight": 90 + "weight": 250 }, { "id": 4052, "planId": 73, "cardId": 14141, - "weight": 90 + "weight": 250 }, { "id": 4053, "planId": 73, "cardId": 14151, - "weight": 90 + "weight": 250 }, { "id": 4054, "planId": 73, "cardId": 14161, - "weight": 90 + "weight": 250 }, { "id": 4055, "planId": 73, "cardId": 14171, - "weight": 90 + "weight": 250 }, { "id": 4056, "planId": 73, "cardId": 14181, - "weight": 90 + "weight": 250 }, { "id": 4057, "planId": 73, "cardId": 14112, - "weight": 90 + "weight": 250 }, { "id": 4058, "planId": 73, "cardId": 14122, - "weight": 90 + "weight": 250 }, { "id": 4059, "planId": 73, "cardId": 14132, - "weight": 90 + "weight": 250 }, { "id": 4060, "planId": 73, "cardId": 14142, - "weight": 90 + "weight": 250 }, { "id": 4061, "planId": 73, "cardId": 14152, - "weight": 90 + "weight": 250 }, { "id": 4062, "planId": 73, "cardId": 14162, - "weight": 90 + "weight": 250 }, { "id": 4063, "planId": 73, "cardId": 14172, - "weight": 90 + "weight": 250 }, { "id": 4064, "planId": 73, "cardId": 14182, - "weight": 90 + "weight": 250 }, { "id": 4065, "planId": 73, "cardId": 17111, - "weight": 90 + "weight": 250 }, { "id": 4066, "planId": 73, "cardId": 17121, - "weight": 90 + "weight": 250 }, { "id": 4067, "planId": 73, "cardId": 17131, - "weight": 90 + "weight": 250 }, { "id": 4068, "planId": 73, "cardId": 17141, - "weight": 90 + "weight": 250 }, { "id": 4069, "planId": 73, "cardId": 17151, - "weight": 90 + "weight": 250 }, { "id": 4070, "planId": 73, "cardId": 17161, - "weight": 90 + "weight": 250 }, { "id": 4071, "planId": 73, "cardId": 17171, - "weight": 90 + "weight": 250 }, { "id": 4072, "planId": 73, "cardId": 17181, - "weight": 90 + "weight": 250 }, { "id": 4073, "planId": 73, "cardId": 17112, - "weight": 90 + "weight": 250 }, { "id": 4074, "planId": 73, "cardId": 17122, - "weight": 90 + "weight": 250 }, { "id": 4075, "planId": 73, "cardId": 17132, - "weight": 90 + "weight": 250 }, { "id": 4076, "planId": 73, "cardId": 17172, - "weight": 90 + "weight": 250 }, { "id": 4077, "planId": 73, "cardId": 17152, - "weight": 90 + "weight": 250 }, { "id": 4078, "planId": 73, "cardId": 17162, - "weight": 90 + "weight": 250 }, { "id": 4079, "planId": 73, "cardId": 17172, - "weight": 90 + "weight": 250 }, { "id": 4080, "planId": 73, "cardId": 17182, - "weight": 90 + "weight": 250 }, { "id": 4081, "planId": 73, "cardId": 15111, - "weight": 90 + "weight": 250 }, { "id": 4082, "planId": 73, "cardId": 15121, - "weight": 90 + "weight": 250 }, { "id": 4083, "planId": 73, "cardId": 15131, - "weight": 90 + "weight": 250 }, { "id": 4084, "planId": 73, "cardId": 15141, - "weight": 90 + "weight": 250 }, { "id": 4085, "planId": 73, "cardId": 15151, - "weight": 90 + "weight": 250 }, { "id": 4086, "planId": 73, "cardId": 15161, - "weight": 90 + "weight": 250 }, { "id": 4087, "planId": 73, "cardId": 15171, - "weight": 90 + "weight": 250 }, { "id": 4088, "planId": 73, "cardId": 15181, - "weight": 90 + "weight": 250 }, { "id": 4089, "planId": 73, "cardId": 15112, - "weight": 90 + "weight": 250 }, { "id": 4090, "planId": 73, "cardId": 15122, - "weight": 90 + "weight": 250 }, { "id": 4091, "planId": 73, "cardId": 15132, - "weight": 90 + "weight": 250 }, { "id": 4092, "planId": 73, "cardId": 15142, - "weight": 90 + "weight": 250 }, { "id": 4093, "planId": 73, "cardId": 15152, - "weight": 90 + "weight": 250 }, { "id": 4094, "planId": 73, "cardId": 15162, - "weight": 90 + "weight": 250 }, { "id": 4095, "planId": 73, "cardId": 15172, - "weight": 90 + "weight": 250 }, { "id": 4096, "planId": 73, "cardId": 15182, - "weight": 90 + "weight": 250 }, { "id": 4097, "planId": 73, "cardId": 18111, - "weight": 90 + "weight": 250 }, { "id": 4098, "planId": 73, "cardId": 18121, - "weight": 90 + "weight": 250 }, { "id": 4099, "planId": 73, "cardId": 18131, - "weight": 90 + "weight": 250 }, { "id": 4100, "planId": 73, "cardId": 18141, - "weight": 90 + "weight": 250 }, { "id": 4101, "planId": 73, "cardId": 18151, - "weight": 90 + "weight": 250 }, { "id": 4102, "planId": 73, "cardId": 18161, - "weight": 90 + "weight": 250 }, { "id": 4103, "planId": 73, "cardId": 18171, - "weight": 90 + "weight": 250 }, { "id": 4104, "planId": 73, "cardId": 18181, - "weight": 90 + "weight": 250 }, { "id": 4105, "planId": 73, "cardId": 18112, - "weight": 90 + "weight": 250 }, { "id": 4106, "planId": 73, "cardId": 18122, - "weight": 90 + "weight": 250 }, { "id": 4107, "planId": 73, "cardId": 18132, - "weight": 90 + "weight": 250 }, { "id": 4108, "planId": 73, "cardId": 18142, - "weight": 90 + "weight": 250 }, { "id": 4109, "planId": 73, "cardId": 18152, - "weight": 90 + "weight": 250 }, { "id": 4110, "planId": 73, "cardId": 18162, - "weight": 90 + "weight": 250 }, { "id": 4111, "planId": 73, "cardId": 18172, - "weight": 90 + "weight": 250 }, { "id": 4112, "planId": 73, "cardId": 18182, - "weight": 90 + "weight": 250 }, { "id": 4113, "planId": 73, "cardId": 13111, - "weight": 90 + "weight": 250 }, { "id": 4114, "planId": 73, "cardId": 13121, - "weight": 90 + "weight": 250 }, { "id": 4115, "planId": 73, "cardId": 13131, - "weight": 90 + "weight": 250 }, { "id": 4116, "planId": 73, "cardId": 13141, - "weight": 90 + "weight": 250 }, { "id": 4117, "planId": 73, "cardId": 13151, - "weight": 90 + "weight": 250 }, { "id": 4118, "planId": 73, "cardId": 13161, - "weight": 90 + "weight": 250 }, { "id": 4119, "planId": 73, "cardId": 13171, - "weight": 90 + "weight": 250 }, { "id": 4120, "planId": 73, "cardId": 13181, - "weight": 90 + "weight": 250 }, { "id": 4121, "planId": 73, "cardId": 13112, - "weight": 90 + "weight": 250 }, { "id": 4122, "planId": 73, "cardId": 13122, - "weight": 90 + "weight": 250 }, { "id": 4123, "planId": 73, "cardId": 13132, - "weight": 90 + "weight": 250 }, { "id": 4124, "planId": 73, "cardId": 13142, - "weight": 90 + "weight": 250 }, { "id": 4125, "planId": 73, "cardId": 13152, - "weight": 90 + "weight": 250 }, { "id": 4126, "planId": 73, "cardId": 13162, - "weight": 90 + "weight": 250 }, { "id": 4127, "planId": 73, "cardId": 13172, - "weight": 90 + "weight": 250 }, { "id": 4128, "planId": 73, "cardId": 13182, - "weight": 90 + "weight": 250 }, { "id": 4129, "planId": 73, "cardId": 12111, - "weight": 90 + "weight": 250 }, { "id": 4130, "planId": 73, "cardId": 12121, - "weight": 90 + "weight": 250 }, { "id": 4131, "planId": 73, "cardId": 12131, - "weight": 90 + "weight": 250 }, { "id": 4132, "planId": 73, "cardId": 12141, - "weight": 90 + "weight": 250 }, { "id": 4133, "planId": 73, "cardId": 12151, - "weight": 90 + "weight": 250 }, { "id": 4134, "planId": 73, "cardId": 12161, - "weight": 90 + "weight": 250 }, { "id": 4135, "planId": 73, "cardId": 12171, - "weight": 90 + "weight": 250 }, { "id": 4136, "planId": 73, "cardId": 12181, - "weight": 90 + "weight": 250 }, { "id": 4137, "planId": 73, "cardId": 12112, - "weight": 90 + "weight": 250 }, { "id": 4138, "planId": 73, "cardId": 12122, - "weight": 90 + "weight": 250 }, { "id": 4139, "planId": 73, "cardId": 12132, - "weight": 90 + "weight": 250 }, { "id": 4140, "planId": 73, "cardId": 12142, - "weight": 90 + "weight": 250 }, { "id": 4141, "planId": 73, "cardId": 12152, - "weight": 90 + "weight": 250 }, { "id": 4142, "planId": 73, "cardId": 12162, - "weight": 90 + "weight": 250 }, { "id": 4143, "planId": 73, "cardId": 12172, - "weight": 90 + "weight": 250 }, { "id": 4144, "planId": 73, "cardId": 12182, - "weight": 90 + "weight": 250 }, { "id": 4145, "planId": 73, "cardId": 16111, - "weight": 90 + "weight": 250 }, { "id": 4146, "planId": 73, "cardId": 16121, - "weight": 90 + "weight": 250 }, { "id": 4147, "planId": 73, "cardId": 16131, - "weight": 90 + "weight": 250 }, { "id": 4148, "planId": 73, "cardId": 16141, - "weight": 90 + "weight": 250 }, { "id": 4149, "planId": 73, "cardId": 16151, - "weight": 90 + "weight": 250 }, { "id": 4150, "planId": 73, "cardId": 16161, - "weight": 90 + "weight": 250 }, { "id": 4151, "planId": 73, "cardId": 16171, - "weight": 90 + "weight": 250 }, { "id": 4152, "planId": 73, "cardId": 16181, - "weight": 90 + "weight": 250 }, { "id": 4153, "planId": 73, "cardId": 16112, - "weight": 90 + "weight": 250 }, { "id": 4154, "planId": 73, "cardId": 16122, - "weight": 90 + "weight": 250 }, { "id": 4155, "planId": 73, "cardId": 16132, - "weight": 90 + "weight": 250 }, { "id": 4156, "planId": 73, "cardId": 16142, - "weight": 90 + "weight": 250 }, { "id": 4157, "planId": 73, "cardId": 16152, - "weight": 90 + "weight": 250 }, { "id": 4158, "planId": 73, "cardId": 16162, - "weight": 90 + "weight": 250 }, { "id": 4159, "planId": 73, "cardId": 16172, - "weight": 90 + "weight": 250 }, { "id": 4160, "planId": 73, "cardId": 16182, - "weight": 90 + "weight": 250 }, { "id": 4161, "planId": 73, "cardId": 11211, - "weight": 160 + "weight": 300 }, { "id": 4162, "planId": 73, "cardId": 11221, - "weight": 160 + "weight": 300 }, { "id": 4163, "planId": 73, "cardId": 11231, - "weight": 160 + "weight": 300 }, { "id": 4164, "planId": 73, "cardId": 11241, - "weight": 160 + "weight": 300 }, { "id": 4165, "planId": 73, "cardId": 11251, - "weight": 160 + "weight": 300 }, { "id": 4166, "planId": 73, "cardId": 11261, - "weight": 160 + "weight": 300 }, { "id": 4167, "planId": 73, "cardId": 11212, - "weight": 160 + "weight": 300 }, { "id": 4168, "planId": 73, "cardId": 11222, - "weight": 160 + "weight": 300 }, { "id": 4169, "planId": 73, "cardId": 11232, - "weight": 160 + "weight": 300 }, { "id": 4170, "planId": 73, "cardId": 11242, - "weight": 160 + "weight": 300 }, { "id": 4171, "planId": 73, "cardId": 11252, - "weight": 160 + "weight": 300 }, { "id": 4172, "planId": 73, "cardId": 11262, - "weight": 160 + "weight": 300 }, { "id": 4173, "planId": 73, "cardId": 14211, - "weight": 160 + "weight": 300 }, { "id": 4174, "planId": 73, "cardId": 14221, - "weight": 160 + "weight": 300 }, { "id": 4175, "planId": 73, "cardId": 14231, - "weight": 160 + "weight": 300 }, { "id": 4176, "planId": 73, "cardId": 14241, - "weight": 160 + "weight": 300 }, { "id": 4177, "planId": 73, "cardId": 14251, - "weight": 160 + "weight": 300 }, { "id": 4178, "planId": 73, "cardId": 14261, - "weight": 160 + "weight": 300 }, { "id": 4179, "planId": 73, "cardId": 14212, - "weight": 160 + "weight": 300 }, { "id": 4180, "planId": 73, "cardId": 14222, - "weight": 160 + "weight": 300 }, { "id": 4181, "planId": 73, "cardId": 14232, - "weight": 160 + "weight": 300 }, { "id": 4182, "planId": 73, "cardId": 14242, - "weight": 160 + "weight": 300 }, { "id": 4183, "planId": 73, "cardId": 14252, - "weight": 160 + "weight": 300 }, { "id": 4184, "planId": 73, "cardId": 14262, - "weight": 160 + "weight": 300 }, { "id": 4185, "planId": 73, "cardId": 17211, - "weight": 160 + "weight": 300 }, { "id": 4186, "planId": 73, "cardId": 17221, - "weight": 160 + "weight": 300 }, { "id": 4187, "planId": 73, "cardId": 17231, - "weight": 160 + "weight": 300 }, { "id": 4188, "planId": 73, "cardId": 17241, - "weight": 160 + "weight": 300 }, { "id": 4189, "planId": 73, "cardId": 17251, - "weight": 160 + "weight": 300 }, { "id": 4190, "planId": 73, "cardId": 17261, - "weight": 160 + "weight": 300 }, { "id": 4191, "planId": 73, "cardId": 17212, - "weight": 160 + "weight": 300 }, { "id": 4192, "planId": 73, "cardId": 17222, - "weight": 160 + "weight": 300 }, { "id": 4193, "planId": 73, "cardId": 17232, - "weight": 160 + "weight": 300 }, { "id": 4194, "planId": 73, "cardId": 17242, - "weight": 160 + "weight": 300 }, { "id": 4195, "planId": 73, "cardId": 17252, - "weight": 160 + "weight": 300 }, { "id": 4196, "planId": 73, "cardId": 17262, - "weight": 160 + "weight": 300 }, { "id": 4197, "planId": 73, "cardId": 15211, - "weight": 160 + "weight": 300 }, { "id": 4198, "planId": 73, "cardId": 15221, - "weight": 160 + "weight": 300 }, { "id": 4199, "planId": 73, "cardId": 15231, - "weight": 160 + "weight": 300 }, { "id": 4200, "planId": 73, "cardId": 15241, - "weight": 160 + "weight": 300 }, { "id": 4201, "planId": 73, "cardId": 15251, - "weight": 160 + "weight": 300 }, { "id": 4202, "planId": 73, "cardId": 15261, - "weight": 160 + "weight": 300 }, { "id": 4203, "planId": 73, "cardId": 15212, - "weight": 160 + "weight": 300 }, { "id": 4204, "planId": 73, "cardId": 15222, - "weight": 160 + "weight": 300 }, { "id": 4205, "planId": 73, "cardId": 15232, - "weight": 160 + "weight": 300 }, { "id": 4206, "planId": 73, "cardId": 15242, - "weight": 160 + "weight": 300 }, { "id": 4207, "planId": 73, "cardId": 15252, - "weight": 160 + "weight": 300 }, { "id": 4208, "planId": 73, "cardId": 15262, - "weight": 160 + "weight": 300 }, { "id": 4209, "planId": 73, "cardId": 18211, - "weight": 160 + "weight": 300 }, { "id": 4210, "planId": 73, "cardId": 18221, - "weight": 160 + "weight": 300 }, { "id": 4211, "planId": 73, "cardId": 18231, - "weight": 160 + "weight": 300 }, { "id": 4212, "planId": 73, "cardId": 18241, - "weight": 160 + "weight": 300 }, { "id": 4213, "planId": 73, "cardId": 18251, - "weight": 160 + "weight": 300 }, { "id": 4214, "planId": 73, "cardId": 18261, - "weight": 160 + "weight": 300 }, { "id": 4215, "planId": 73, "cardId": 18212, - "weight": 160 + "weight": 300 }, { "id": 4216, "planId": 73, "cardId": 18222, - "weight": 160 + "weight": 300 }, { "id": 4217, "planId": 73, "cardId": 18232, - "weight": 160 + "weight": 300 }, { "id": 4218, "planId": 73, "cardId": 18242, - "weight": 160 + "weight": 300 }, { "id": 4219, "planId": 73, "cardId": 18252, - "weight": 160 + "weight": 300 }, { "id": 4220, "planId": 73, "cardId": 18262, - "weight": 160 + "weight": 300 }, { "id": 4221, "planId": 73, "cardId": 13211, - "weight": 160 + "weight": 300 }, { "id": 4222, "planId": 73, "cardId": 13221, - "weight": 160 + "weight": 300 }, { "id": 4223, "planId": 73, "cardId": 13231, - "weight": 160 + "weight": 300 }, { "id": 4224, "planId": 73, "cardId": 13241, - "weight": 160 + "weight": 300 }, { "id": 4225, "planId": 73, "cardId": 13251, - "weight": 160 + "weight": 300 }, { "id": 4226, "planId": 73, "cardId": 13261, - "weight": 160 + "weight": 300 }, { "id": 4227, "planId": 73, "cardId": 13212, - "weight": 160 + "weight": 300 }, { "id": 4228, "planId": 73, "cardId": 13222, - "weight": 160 + "weight": 300 }, { "id": 4229, "planId": 73, "cardId": 13232, - "weight": 160 + "weight": 300 }, { "id": 4230, "planId": 73, "cardId": 13242, - "weight": 160 + "weight": 300 }, { "id": 4231, "planId": 73, "cardId": 13252, - "weight": 160 + "weight": 300 }, { "id": 4232, "planId": 73, "cardId": 13262, - "weight": 160 + "weight": 300 }, { "id": 4233, "planId": 73, "cardId": 12211, - "weight": 160 + "weight": 300 }, { "id": 4234, "planId": 73, "cardId": 12221, - "weight": 160 + "weight": 300 }, { "id": 4235, "planId": 73, "cardId": 12231, - "weight": 160 + "weight": 300 }, { "id": 4236, "planId": 73, "cardId": 12241, - "weight": 160 + "weight": 300 }, { "id": 4237, "planId": 73, "cardId": 12251, - "weight": 160 + "weight": 300 }, { "id": 4238, "planId": 73, "cardId": 12261, - "weight": 160 + "weight": 300 }, { "id": 4239, "planId": 73, "cardId": 12212, - "weight": 160 + "weight": 300 }, { "id": 4240, "planId": 73, "cardId": 12222, - "weight": 160 + "weight": 300 }, { "id": 4241, "planId": 73, "cardId": 12232, - "weight": 160 + "weight": 300 }, { "id": 4242, "planId": 73, "cardId": 12242, - "weight": 160 + "weight": 300 }, { "id": 4243, "planId": 73, "cardId": 12252, - "weight": 160 + "weight": 300 }, { "id": 4244, "planId": 73, "cardId": 12262, - "weight": 160 + "weight": 300 }, { "id": 4245, "planId": 73, "cardId": 16211, - "weight": 160 + "weight": 300 }, { "id": 4246, "planId": 73, "cardId": 16221, - "weight": 160 + "weight": 300 }, { "id": 4247, "planId": 73, "cardId": 16231, - "weight": 160 + "weight": 300 }, { "id": 4248, "planId": 73, "cardId": 16241, - "weight": 160 + "weight": 300 }, { "id": 4249, "planId": 73, "cardId": 16251, - "weight": 160 + "weight": 300 }, { "id": 4250, "planId": 73, "cardId": 16261, - "weight": 160 + "weight": 300 }, { "id": 4251, "planId": 73, "cardId": 16212, - "weight": 160 + "weight": 300 }, { "id": 4252, "planId": 73, "cardId": 16222, - "weight": 160 + "weight": 300 }, { "id": 4253, "planId": 73, "cardId": 16232, - "weight": 160 + "weight": 300 }, { "id": 4254, "planId": 73, "cardId": 16242, - "weight": 160 + "weight": 300 }, { "id": 4255, "planId": 73, "cardId": 16252, - "weight": 160 + "weight": 300 }, { "id": 4256, "planId": 73, "cardId": 16262, - "weight": 160 + "weight": 300 }, { "id": 4257, "planId": 73, "cardId": 11311, - "weight": 180 + "weight": 50 }, { "id": 4258, "planId": 73, "cardId": 11321, - "weight": 180 + "weight": 50 }, { "id": 4259, "planId": 73, "cardId": 11331, - "weight": 180 + "weight": 50 }, { "id": 4260, "planId": 73, "cardId": 11341, - "weight": 180 + "weight": 50 }, { "id": 4261, "planId": 73, "cardId": 11312, - "weight": 180 + "weight": 50 }, { "id": 4262, "planId": 73, "cardId": 11322, - "weight": 180 + "weight": 50 }, { "id": 4263, "planId": 73, "cardId": 11332, - "weight": 180 + "weight": 50 }, { "id": 4264, "planId": 73, "cardId": 11342, - "weight": 180 + "weight": 50 }, { "id": 4265, "planId": 73, "cardId": 14311, - "weight": 180 + "weight": 50 }, { "id": 4266, "planId": 73, "cardId": 14321, - "weight": 180 + "weight": 50 }, { "id": 4267, "planId": 73, "cardId": 14331, - "weight": 180 + "weight": 50 }, { "id": 4268, "planId": 73, "cardId": 14341, - "weight": 180 + "weight": 50 }, { "id": 4269, "planId": 73, "cardId": 14312, - "weight": 180 + "weight": 50 }, { "id": 4270, "planId": 73, "cardId": 14322, - "weight": 180 + "weight": 50 }, { "id": 4271, "planId": 73, "cardId": 14332, - "weight": 180 + "weight": 50 }, { "id": 4272, "planId": 73, "cardId": 14342, - "weight": 180 + "weight": 50 }, { "id": 4273, "planId": 73, "cardId": 17311, - "weight": 180 + "weight": 50 }, { "id": 4274, "planId": 73, "cardId": 17321, - "weight": 180 + "weight": 50 }, { "id": 4275, "planId": 73, "cardId": 17331, - "weight": 180 + "weight": 50 }, { "id": 4276, "planId": 73, "cardId": 17341, - "weight": 180 + "weight": 50 }, { "id": 4277, "planId": 73, "cardId": 17312, - "weight": 180 + "weight": 50 }, { "id": 4278, "planId": 73, "cardId": 17322, - "weight": 180 + "weight": 50 }, { "id": 4279, "planId": 73, "cardId": 17332, - "weight": 180 + "weight": 50 }, { "id": 4280, "planId": 73, "cardId": 17342, - "weight": 180 + "weight": 50 }, { "id": 4281, "planId": 73, "cardId": 15311, - "weight": 180 + "weight": 50 }, { "id": 4282, "planId": 73, "cardId": 15321, - "weight": 180 + "weight": 50 }, { "id": 4283, "planId": 73, "cardId": 15331, - "weight": 180 + "weight": 50 }, { "id": 4284, "planId": 73, "cardId": 15341, - "weight": 180 + "weight": 50 }, { "id": 4285, "planId": 73, "cardId": 15312, - "weight": 180 + "weight": 50 }, { "id": 4286, "planId": 73, "cardId": 15322, - "weight": 180 + "weight": 50 }, { "id": 4287, "planId": 73, "cardId": 15332, - "weight": 180 + "weight": 50 }, { "id": 4288, "planId": 73, "cardId": 15342, - "weight": 180 + "weight": 50 }, { "id": 4289, "planId": 73, "cardId": 18311, - "weight": 180 + "weight": 50 }, { "id": 4290, "planId": 73, "cardId": 18321, - "weight": 180 + "weight": 50 }, { "id": 4291, "planId": 73, "cardId": 18331, - "weight": 180 + "weight": 50 }, { "id": 4292, "planId": 73, "cardId": 18341, - "weight": 180 + "weight": 50 }, { "id": 4293, "planId": 73, "cardId": 18312, - "weight": 180 + "weight": 50 }, { "id": 4294, "planId": 73, "cardId": 18322, - "weight": 180 + "weight": 50 }, { "id": 4295, "planId": 73, "cardId": 18332, - "weight": 180 + "weight": 50 }, { "id": 4296, "planId": 73, "cardId": 18342, - "weight": 180 + "weight": 50 }, { "id": 4297, "planId": 73, "cardId": 13311, - "weight": 180 + "weight": 50 }, { "id": 4298, "planId": 73, "cardId": 13321, - "weight": 180 + "weight": 50 }, { "id": 4299, "planId": 73, "cardId": 13331, - "weight": 180 + "weight": 50 }, { "id": 4300, "planId": 73, "cardId": 13341, - "weight": 180 + "weight": 50 }, { "id": 4301, "planId": 73, "cardId": 13312, - "weight": 180 + "weight": 50 }, { "id": 4302, "planId": 73, "cardId": 13322, - "weight": 180 + "weight": 50 }, { "id": 4303, "planId": 73, "cardId": 13332, - "weight": 180 + "weight": 50 }, { "id": 4304, "planId": 73, "cardId": 13342, - "weight": 180 + "weight": 50 }, { "id": 4305, "planId": 73, "cardId": 12311, - "weight": 180 + "weight": 50 }, { "id": 4306, "planId": 73, "cardId": 12321, - "weight": 180 + "weight": 50 }, { "id": 4307, "planId": 73, "cardId": 12331, - "weight": 180 + "weight": 50 }, { "id": 4308, "planId": 73, "cardId": 12341, - "weight": 180 + "weight": 50 }, { "id": 4309, "planId": 73, "cardId": 12312, - "weight": 180 + "weight": 50 }, { "id": 4310, "planId": 73, "cardId": 12322, - "weight": 180 + "weight": 50 }, { "id": 4311, "planId": 73, "cardId": 12332, - "weight": 180 + "weight": 50 }, { "id": 4312, "planId": 73, "cardId": 12342, - "weight": 180 + "weight": 50 }, { "id": 4313, "planId": 73, "cardId": 16311, - "weight": 180 + "weight": 50 }, { "id": 4314, "planId": 73, "cardId": 16321, - "weight": 180 + "weight": 50 }, { "id": 4315, "planId": 73, "cardId": 16331, - "weight": 180 + "weight": 50 }, { "id": 4316, "planId": 73, "cardId": 16341, - "weight": 180 + "weight": 50 }, { "id": 4317, "planId": 73, "cardId": 16312, - "weight": 180 + "weight": 50 }, { "id": 4318, "planId": 73, "cardId": 16322, - "weight": 180 + "weight": 50 }, { "id": 4319, "planId": 73, "cardId": 16332, - "weight": 180 + "weight": 50 }, { "id": 4320, "planId": 73, "cardId": 16342, - "weight": 180 + "weight": 50 }, { "id": 4321, @@ -26689,4419 +26689,4419 @@ }, { "id": 4449, - "planId": 82, + "planId": 81, "cardId": 11211, "weight": 300 }, { "id": 4450, - "planId": 82, + "planId": 81, "cardId": 11221, "weight": 300 }, { "id": 4451, - "planId": 82, + "planId": 81, "cardId": 11231, "weight": 300 }, { "id": 4452, - "planId": 82, + "planId": 81, "cardId": 11241, "weight": 300 }, { "id": 4453, - "planId": 82, + "planId": 81, "cardId": 11251, "weight": 300 }, { "id": 4454, - "planId": 82, + "planId": 81, "cardId": 11261, "weight": 300 }, { "id": 4455, - "planId": 82, + "planId": 81, "cardId": 11212, "weight": 300 }, { "id": 4456, - "planId": 82, + "planId": 81, "cardId": 11222, "weight": 300 }, { "id": 4457, - "planId": 82, + "planId": 81, "cardId": 11232, "weight": 300 }, { "id": 4458, - "planId": 82, + "planId": 81, "cardId": 11242, "weight": 300 }, { "id": 4459, - "planId": 82, + "planId": 81, "cardId": 11252, "weight": 300 }, { "id": 4460, - "planId": 82, + "planId": 81, "cardId": 11262, "weight": 300 }, { "id": 4461, - "planId": 82, + "planId": 81, "cardId": 14211, "weight": 300 }, { "id": 4462, - "planId": 82, + "planId": 81, "cardId": 14221, "weight": 300 }, { "id": 4463, - "planId": 82, + "planId": 81, "cardId": 14231, "weight": 300 }, { "id": 4464, - "planId": 82, + "planId": 81, "cardId": 14241, "weight": 300 }, { "id": 4465, - "planId": 82, + "planId": 81, "cardId": 14251, "weight": 300 }, { "id": 4466, - "planId": 82, + "planId": 81, "cardId": 14261, "weight": 300 }, { "id": 4467, - "planId": 82, + "planId": 81, "cardId": 14212, "weight": 300 }, { "id": 4468, - "planId": 82, + "planId": 81, "cardId": 14222, "weight": 300 }, { "id": 4469, - "planId": 82, + "planId": 81, "cardId": 14232, "weight": 300 }, { "id": 4470, - "planId": 82, + "planId": 81, "cardId": 14242, "weight": 300 }, { "id": 4471, - "planId": 82, + "planId": 81, "cardId": 14252, "weight": 300 }, { "id": 4472, - "planId": 82, + "planId": 81, "cardId": 14262, "weight": 300 }, { "id": 4473, - "planId": 82, + "planId": 81, "cardId": 17211, "weight": 300 }, { "id": 4474, - "planId": 82, + "planId": 81, "cardId": 17221, "weight": 300 }, { "id": 4475, - "planId": 82, + "planId": 81, "cardId": 17231, "weight": 300 }, { "id": 4476, - "planId": 82, + "planId": 81, "cardId": 17241, "weight": 300 }, { "id": 4477, - "planId": 82, + "planId": 81, "cardId": 17251, "weight": 300 }, { "id": 4478, - "planId": 82, + "planId": 81, "cardId": 17261, "weight": 300 }, { "id": 4479, - "planId": 82, + "planId": 81, "cardId": 17212, "weight": 300 }, { "id": 4480, - "planId": 82, + "planId": 81, "cardId": 17222, "weight": 300 }, { "id": 4481, - "planId": 82, + "planId": 81, "cardId": 17232, "weight": 300 }, { "id": 4482, - "planId": 82, + "planId": 81, "cardId": 17242, "weight": 300 }, { "id": 4483, - "planId": 82, + "planId": 81, "cardId": 17252, "weight": 300 }, { "id": 4484, - "planId": 82, + "planId": 81, "cardId": 17262, "weight": 300 }, { "id": 4485, - "planId": 82, + "planId": 81, "cardId": 15211, "weight": 300 }, { "id": 4486, - "planId": 82, + "planId": 81, "cardId": 15221, "weight": 300 }, { "id": 4487, - "planId": 82, + "planId": 81, "cardId": 15231, "weight": 300 }, { "id": 4488, - "planId": 82, + "planId": 81, "cardId": 15241, "weight": 300 }, { "id": 4489, - "planId": 82, + "planId": 81, "cardId": 15251, "weight": 300 }, { "id": 4490, - "planId": 82, + "planId": 81, "cardId": 15261, "weight": 300 }, { "id": 4491, - "planId": 82, + "planId": 81, "cardId": 15212, "weight": 300 }, { "id": 4492, - "planId": 82, + "planId": 81, "cardId": 15222, "weight": 300 }, { "id": 4493, - "planId": 82, + "planId": 81, "cardId": 15232, "weight": 300 }, { "id": 4494, - "planId": 82, + "planId": 81, "cardId": 15242, "weight": 300 }, { "id": 4495, - "planId": 82, + "planId": 81, "cardId": 15252, "weight": 300 }, { "id": 4496, - "planId": 82, + "planId": 81, "cardId": 15262, "weight": 300 }, { "id": 4497, - "planId": 82, + "planId": 81, "cardId": 18211, "weight": 300 }, { "id": 4498, - "planId": 82, + "planId": 81, "cardId": 18221, "weight": 300 }, { "id": 4499, - "planId": 82, + "planId": 81, "cardId": 18231, "weight": 300 }, { "id": 4500, - "planId": 82, + "planId": 81, "cardId": 18241, "weight": 300 }, { "id": 4501, - "planId": 82, + "planId": 81, "cardId": 18251, "weight": 300 }, { "id": 4502, - "planId": 82, + "planId": 81, "cardId": 18261, "weight": 300 }, { "id": 4503, - "planId": 82, + "planId": 81, "cardId": 18212, "weight": 300 }, { "id": 4504, - "planId": 82, + "planId": 81, "cardId": 18222, "weight": 300 }, { "id": 4505, - "planId": 82, + "planId": 81, "cardId": 18232, "weight": 300 }, { "id": 4506, - "planId": 82, + "planId": 81, "cardId": 18242, "weight": 300 }, { "id": 4507, - "planId": 82, + "planId": 81, "cardId": 18252, "weight": 300 }, { "id": 4508, - "planId": 82, + "planId": 81, "cardId": 18262, "weight": 300 }, { "id": 4509, - "planId": 82, + "planId": 81, "cardId": 13211, "weight": 300 }, { "id": 4510, - "planId": 82, + "planId": 81, "cardId": 13221, "weight": 300 }, { "id": 4511, - "planId": 82, + "planId": 81, "cardId": 13231, "weight": 300 }, { "id": 4512, - "planId": 82, + "planId": 81, "cardId": 13241, "weight": 300 }, { "id": 4513, - "planId": 82, + "planId": 81, "cardId": 13251, "weight": 300 }, { "id": 4514, - "planId": 82, + "planId": 81, "cardId": 13261, "weight": 300 }, { "id": 4515, - "planId": 82, + "planId": 81, "cardId": 13212, "weight": 300 }, { "id": 4516, - "planId": 82, + "planId": 81, "cardId": 13222, "weight": 300 }, { "id": 4517, - "planId": 82, + "planId": 81, "cardId": 13232, "weight": 300 }, { "id": 4518, - "planId": 82, + "planId": 81, "cardId": 13242, "weight": 300 }, { "id": 4519, - "planId": 82, + "planId": 81, "cardId": 13252, "weight": 300 }, { "id": 4520, - "planId": 82, + "planId": 81, "cardId": 13262, "weight": 300 }, { "id": 4521, - "planId": 82, + "planId": 81, "cardId": 12211, "weight": 300 }, { "id": 4522, - "planId": 82, + "planId": 81, "cardId": 12221, "weight": 300 }, { "id": 4523, - "planId": 82, + "planId": 81, "cardId": 12231, "weight": 300 }, { "id": 4524, - "planId": 82, + "planId": 81, "cardId": 12241, "weight": 300 }, { "id": 4525, - "planId": 82, + "planId": 81, "cardId": 12251, "weight": 300 }, { "id": 4526, - "planId": 82, + "planId": 81, "cardId": 12261, "weight": 300 }, { "id": 4527, - "planId": 82, + "planId": 81, "cardId": 12212, "weight": 300 }, { "id": 4528, - "planId": 82, + "planId": 81, "cardId": 12222, "weight": 300 }, { "id": 4529, - "planId": 82, + "planId": 81, "cardId": 12232, "weight": 300 }, { "id": 4530, - "planId": 82, + "planId": 81, "cardId": 12242, "weight": 300 }, { "id": 4531, - "planId": 82, + "planId": 81, "cardId": 12252, "weight": 300 }, { "id": 4532, - "planId": 82, + "planId": 81, "cardId": 12262, "weight": 300 }, { "id": 4533, - "planId": 82, + "planId": 81, "cardId": 16211, "weight": 300 }, { "id": 4534, - "planId": 82, + "planId": 81, "cardId": 16221, "weight": 300 }, { "id": 4535, - "planId": 82, + "planId": 81, "cardId": 16231, "weight": 300 }, { "id": 4536, - "planId": 82, + "planId": 81, "cardId": 16241, "weight": 300 }, { "id": 4537, - "planId": 82, + "planId": 81, "cardId": 16251, "weight": 300 }, { "id": 4538, - "planId": 82, + "planId": 81, "cardId": 16261, "weight": 300 }, { "id": 4539, - "planId": 82, + "planId": 81, "cardId": 16212, "weight": 300 }, { "id": 4540, - "planId": 82, + "planId": 81, "cardId": 16222, "weight": 300 }, { "id": 4541, - "planId": 82, + "planId": 81, "cardId": 16232, "weight": 300 }, { "id": 4542, - "planId": 82, + "planId": 81, "cardId": 16242, "weight": 300 }, { "id": 4543, - "planId": 82, + "planId": 81, "cardId": 16252, "weight": 300 }, { "id": 4544, - "planId": 82, + "planId": 81, "cardId": 16262, "weight": 300 }, { "id": 4545, - "planId": 83, + "planId": 81, "cardId": 11311, "weight": 50 }, { "id": 4546, - "planId": 83, + "planId": 81, "cardId": 11321, "weight": 50 }, { "id": 4547, - "planId": 83, + "planId": 81, "cardId": 11331, "weight": 50 }, { "id": 4548, - "planId": 83, + "planId": 81, "cardId": 11341, "weight": 50 }, { "id": 4549, - "planId": 83, + "planId": 81, "cardId": 11312, "weight": 50 }, { "id": 4550, - "planId": 83, + "planId": 81, "cardId": 11322, "weight": 50 }, { "id": 4551, - "planId": 83, + "planId": 81, "cardId": 11332, "weight": 50 }, { "id": 4552, - "planId": 83, + "planId": 81, "cardId": 11342, "weight": 50 }, { "id": 4553, - "planId": 83, + "planId": 81, "cardId": 14311, "weight": 50 }, { "id": 4554, - "planId": 83, + "planId": 81, "cardId": 14321, "weight": 50 }, { "id": 4555, - "planId": 83, + "planId": 81, "cardId": 14331, "weight": 50 }, { "id": 4556, - "planId": 83, + "planId": 81, "cardId": 14341, "weight": 50 }, { "id": 4557, - "planId": 83, + "planId": 81, "cardId": 14312, "weight": 50 }, { "id": 4558, - "planId": 83, + "planId": 81, "cardId": 14322, "weight": 50 }, { "id": 4559, - "planId": 83, + "planId": 81, "cardId": 14332, "weight": 50 }, { "id": 4560, - "planId": 83, + "planId": 81, "cardId": 14342, "weight": 50 }, { "id": 4561, - "planId": 83, + "planId": 81, "cardId": 17311, "weight": 50 }, { "id": 4562, - "planId": 83, + "planId": 81, "cardId": 17321, "weight": 50 }, { "id": 4563, - "planId": 83, + "planId": 81, "cardId": 17331, "weight": 50 }, { "id": 4564, - "planId": 83, + "planId": 81, "cardId": 17341, "weight": 50 }, { "id": 4565, - "planId": 83, + "planId": 81, "cardId": 17312, "weight": 50 }, { "id": 4566, - "planId": 83, + "planId": 81, "cardId": 17322, "weight": 50 }, { "id": 4567, - "planId": 83, + "planId": 81, "cardId": 17332, "weight": 50 }, { "id": 4568, - "planId": 83, + "planId": 81, "cardId": 17342, "weight": 50 }, { "id": 4569, - "planId": 83, + "planId": 81, "cardId": 15311, "weight": 50 }, { "id": 4570, - "planId": 83, + "planId": 81, "cardId": 15321, "weight": 50 }, { "id": 4571, - "planId": 83, + "planId": 81, "cardId": 15331, "weight": 50 }, { "id": 4572, - "planId": 83, + "planId": 81, "cardId": 15341, "weight": 50 }, { "id": 4573, - "planId": 83, + "planId": 81, "cardId": 15312, "weight": 50 }, { "id": 4574, - "planId": 83, + "planId": 81, "cardId": 15322, "weight": 50 }, { "id": 4575, - "planId": 83, + "planId": 81, "cardId": 15332, "weight": 50 }, { "id": 4576, - "planId": 83, + "planId": 81, "cardId": 15342, "weight": 50 }, { "id": 4577, - "planId": 83, + "planId": 81, "cardId": 18311, "weight": 50 }, { "id": 4578, - "planId": 83, + "planId": 81, "cardId": 18321, "weight": 50 }, { "id": 4579, - "planId": 83, + "planId": 81, "cardId": 18331, "weight": 50 }, { "id": 4580, - "planId": 83, + "planId": 81, "cardId": 18341, "weight": 50 }, { "id": 4581, - "planId": 83, + "planId": 81, "cardId": 18312, "weight": 50 }, { "id": 4582, - "planId": 83, + "planId": 81, "cardId": 18322, "weight": 50 }, { "id": 4583, - "planId": 83, + "planId": 81, "cardId": 18332, "weight": 50 }, { "id": 4584, - "planId": 83, + "planId": 81, "cardId": 18342, "weight": 50 }, { "id": 4585, - "planId": 83, + "planId": 81, "cardId": 13311, "weight": 50 }, { "id": 4586, - "planId": 83, + "planId": 81, "cardId": 13321, "weight": 50 }, { "id": 4587, - "planId": 83, + "planId": 81, "cardId": 13331, "weight": 50 }, { "id": 4588, - "planId": 83, + "planId": 81, "cardId": 13341, "weight": 50 }, { "id": 4589, - "planId": 83, + "planId": 81, "cardId": 13312, "weight": 50 }, { "id": 4590, - "planId": 83, + "planId": 81, "cardId": 13322, "weight": 50 }, { "id": 4591, - "planId": 83, + "planId": 81, "cardId": 13332, "weight": 50 }, { "id": 4592, - "planId": 83, + "planId": 81, "cardId": 13342, "weight": 50 }, { "id": 4593, - "planId": 83, + "planId": 81, "cardId": 12311, "weight": 50 }, { "id": 4594, - "planId": 83, + "planId": 81, "cardId": 12321, "weight": 50 }, { "id": 4595, - "planId": 83, + "planId": 81, "cardId": 12331, "weight": 50 }, { "id": 4596, - "planId": 83, + "planId": 81, "cardId": 12341, "weight": 50 }, { "id": 4597, - "planId": 83, + "planId": 81, "cardId": 12312, "weight": 50 }, { "id": 4598, - "planId": 83, + "planId": 81, "cardId": 12322, "weight": 50 }, { "id": 4599, - "planId": 83, + "planId": 81, "cardId": 12332, "weight": 50 }, { "id": 4600, - "planId": 83, + "planId": 81, "cardId": 12342, "weight": 50 }, { "id": 4601, - "planId": 83, + "planId": 81, "cardId": 16311, "weight": 50 }, { "id": 4602, - "planId": 83, + "planId": 81, "cardId": 16321, "weight": 50 }, { "id": 4603, - "planId": 83, + "planId": 81, "cardId": 16331, "weight": 50 }, { "id": 4604, - "planId": 83, + "planId": 81, "cardId": 16341, "weight": 50 }, { "id": 4605, - "planId": 83, + "planId": 81, "cardId": 16312, "weight": 50 }, { "id": 4606, - "planId": 83, + "planId": 81, "cardId": 16322, "weight": 50 }, { "id": 4607, - "planId": 83, + "planId": 81, "cardId": 16332, "weight": 50 }, { "id": 4608, - "planId": 83, + "planId": 81, "cardId": 16342, "weight": 50 }, { "id": 4609, - "planId": 83, + "planId": 82, "cardId": 11111, - "weight": 200 + "weight": 250 }, { "id": 4610, - "planId": 83, + "planId": 82, "cardId": 11121, - "weight": 200 + "weight": 250 }, { "id": 4611, - "planId": 83, + "planId": 82, "cardId": 11131, - "weight": 200 + "weight": 250 }, { "id": 4612, - "planId": 83, + "planId": 82, "cardId": 11141, - "weight": 200 + "weight": 250 }, { "id": 4613, - "planId": 83, + "planId": 82, "cardId": 11151, - "weight": 200 + "weight": 250 }, { "id": 4614, - "planId": 83, + "planId": 82, "cardId": 11161, - "weight": 200 + "weight": 250 }, { "id": 4615, - "planId": 83, + "planId": 82, "cardId": 11171, - "weight": 200 + "weight": 250 }, { "id": 4616, - "planId": 83, + "planId": 82, "cardId": 11181, - "weight": 200 + "weight": 250 }, { "id": 4617, - "planId": 83, + "planId": 82, "cardId": 11112, - "weight": 200 + "weight": 250 }, { "id": 4618, - "planId": 83, + "planId": 82, "cardId": 11122, - "weight": 200 + "weight": 250 }, { "id": 4619, - "planId": 83, + "planId": 82, "cardId": 11132, - "weight": 200 + "weight": 250 }, { "id": 4620, - "planId": 83, + "planId": 82, "cardId": 11142, - "weight": 200 + "weight": 250 }, { "id": 4621, - "planId": 83, + "planId": 82, "cardId": 11152, - "weight": 200 + "weight": 250 }, { "id": 4622, - "planId": 83, + "planId": 82, "cardId": 11162, - "weight": 200 + "weight": 250 }, { "id": 4623, - "planId": 83, + "planId": 82, "cardId": 11172, - "weight": 200 + "weight": 250 }, { "id": 4624, - "planId": 83, + "planId": 82, "cardId": 11182, - "weight": 200 + "weight": 250 }, { "id": 4625, - "planId": 83, + "planId": 82, "cardId": 14111, - "weight": 200 + "weight": 250 }, { "id": 4626, - "planId": 83, + "planId": 82, "cardId": 14121, - "weight": 200 + "weight": 250 }, { "id": 4627, - "planId": 83, + "planId": 82, "cardId": 14131, - "weight": 200 + "weight": 250 }, { "id": 4628, - "planId": 83, + "planId": 82, "cardId": 14141, - "weight": 200 + "weight": 250 }, { "id": 4629, - "planId": 83, + "planId": 82, "cardId": 14151, - "weight": 200 + "weight": 250 }, { "id": 4630, - "planId": 83, + "planId": 82, "cardId": 14161, - "weight": 200 + "weight": 250 }, { "id": 4631, - "planId": 83, + "planId": 82, "cardId": 14171, - "weight": 200 + "weight": 250 }, { "id": 4632, - "planId": 83, + "planId": 82, "cardId": 14181, - "weight": 200 + "weight": 250 }, { "id": 4633, - "planId": 83, + "planId": 82, "cardId": 14112, - "weight": 200 + "weight": 250 }, { "id": 4634, - "planId": 83, + "planId": 82, "cardId": 14122, - "weight": 200 + "weight": 250 }, { "id": 4635, - "planId": 83, + "planId": 82, "cardId": 14132, - "weight": 200 + "weight": 250 }, { "id": 4636, - "planId": 83, + "planId": 82, "cardId": 14142, - "weight": 200 + "weight": 250 }, { "id": 4637, - "planId": 83, + "planId": 82, "cardId": 14152, - "weight": 200 + "weight": 250 }, { "id": 4638, - "planId": 83, + "planId": 82, "cardId": 14162, - "weight": 200 + "weight": 250 }, { "id": 4639, - "planId": 83, + "planId": 82, "cardId": 14172, - "weight": 200 + "weight": 250 }, { "id": 4640, - "planId": 83, + "planId": 82, "cardId": 14182, - "weight": 200 + "weight": 250 }, { "id": 4641, - "planId": 83, + "planId": 82, "cardId": 17111, - "weight": 200 + "weight": 250 }, { "id": 4642, - "planId": 83, + "planId": 82, "cardId": 17121, - "weight": 200 + "weight": 250 }, { "id": 4643, - "planId": 83, + "planId": 82, "cardId": 17131, - "weight": 200 + "weight": 250 }, { "id": 4644, - "planId": 83, + "planId": 82, "cardId": 17141, - "weight": 200 + "weight": 250 }, { "id": 4645, - "planId": 83, + "planId": 82, "cardId": 17151, - "weight": 200 + "weight": 250 }, { "id": 4646, - "planId": 83, + "planId": 82, "cardId": 17161, - "weight": 200 + "weight": 250 }, { "id": 4647, - "planId": 83, + "planId": 82, "cardId": 17171, - "weight": 200 + "weight": 250 }, { "id": 4648, - "planId": 83, + "planId": 82, "cardId": 17181, - "weight": 200 + "weight": 250 }, { "id": 4649, - "planId": 83, + "planId": 82, "cardId": 17112, - "weight": 200 + "weight": 250 }, { "id": 4650, - "planId": 83, + "planId": 82, "cardId": 17122, - "weight": 200 + "weight": 250 }, { "id": 4651, - "planId": 83, + "planId": 82, "cardId": 17132, - "weight": 200 + "weight": 250 }, { "id": 4652, - "planId": 83, + "planId": 82, "cardId": 17172, - "weight": 200 + "weight": 250 }, { "id": 4653, - "planId": 83, + "planId": 82, "cardId": 17152, - "weight": 200 + "weight": 250 }, { "id": 4654, - "planId": 83, + "planId": 82, "cardId": 17162, - "weight": 200 + "weight": 250 }, { "id": 4655, - "planId": 83, + "planId": 82, "cardId": 17172, - "weight": 200 + "weight": 250 }, { "id": 4656, - "planId": 83, + "planId": 82, "cardId": 17182, - "weight": 200 + "weight": 250 }, { "id": 4657, - "planId": 83, + "planId": 82, "cardId": 15111, - "weight": 200 + "weight": 250 }, { "id": 4658, - "planId": 83, + "planId": 82, "cardId": 15121, - "weight": 200 + "weight": 250 }, { "id": 4659, - "planId": 83, + "planId": 82, "cardId": 15131, - "weight": 200 + "weight": 250 }, { "id": 4660, - "planId": 83, + "planId": 82, "cardId": 15141, - "weight": 200 + "weight": 250 }, { "id": 4661, - "planId": 83, + "planId": 82, "cardId": 15151, - "weight": 200 + "weight": 250 }, { "id": 4662, - "planId": 83, + "planId": 82, "cardId": 15161, - "weight": 200 + "weight": 250 }, { "id": 4663, - "planId": 83, + "planId": 82, "cardId": 15171, - "weight": 200 + "weight": 250 }, { "id": 4664, - "planId": 83, + "planId": 82, "cardId": 15181, - "weight": 200 + "weight": 250 }, { "id": 4665, - "planId": 83, + "planId": 82, "cardId": 15112, - "weight": 200 + "weight": 250 }, { "id": 4666, - "planId": 83, + "planId": 82, "cardId": 15122, - "weight": 200 + "weight": 250 }, { "id": 4667, - "planId": 83, + "planId": 82, "cardId": 15132, - "weight": 200 + "weight": 250 }, { "id": 4668, - "planId": 83, + "planId": 82, "cardId": 15142, - "weight": 200 + "weight": 250 }, { "id": 4669, - "planId": 83, + "planId": 82, "cardId": 15152, - "weight": 200 + "weight": 250 }, { "id": 4670, - "planId": 83, + "planId": 82, "cardId": 15162, - "weight": 200 + "weight": 250 }, { "id": 4671, - "planId": 83, + "planId": 82, "cardId": 15172, - "weight": 200 + "weight": 250 }, { "id": 4672, - "planId": 83, + "planId": 82, "cardId": 15182, - "weight": 200 + "weight": 250 }, { "id": 4673, - "planId": 83, + "planId": 82, "cardId": 18111, - "weight": 200 + "weight": 250 }, { "id": 4674, - "planId": 83, + "planId": 82, "cardId": 18121, - "weight": 200 + "weight": 250 }, { "id": 4675, - "planId": 83, + "planId": 82, "cardId": 18131, - "weight": 200 + "weight": 250 }, { "id": 4676, - "planId": 83, + "planId": 82, "cardId": 18141, - "weight": 200 + "weight": 250 }, { "id": 4677, - "planId": 83, + "planId": 82, "cardId": 18151, - "weight": 200 + "weight": 250 }, { "id": 4678, - "planId": 83, + "planId": 82, "cardId": 18161, - "weight": 200 + "weight": 250 }, { "id": 4679, - "planId": 83, + "planId": 82, "cardId": 18171, - "weight": 200 + "weight": 250 }, { "id": 4680, - "planId": 83, + "planId": 82, "cardId": 18181, - "weight": 200 + "weight": 250 }, { "id": 4681, - "planId": 83, + "planId": 82, "cardId": 18112, - "weight": 200 + "weight": 250 }, { "id": 4682, - "planId": 83, + "planId": 82, "cardId": 18122, - "weight": 200 + "weight": 250 }, { "id": 4683, - "planId": 83, + "planId": 82, "cardId": 18132, - "weight": 200 + "weight": 250 }, { "id": 4684, - "planId": 83, + "planId": 82, "cardId": 18142, - "weight": 200 + "weight": 250 }, { "id": 4685, - "planId": 83, + "planId": 82, "cardId": 18152, - "weight": 200 + "weight": 250 }, { "id": 4686, - "planId": 83, + "planId": 82, "cardId": 18162, - "weight": 200 + "weight": 250 }, { "id": 4687, - "planId": 83, + "planId": 82, "cardId": 18172, - "weight": 200 + "weight": 250 }, { "id": 4688, - "planId": 83, + "planId": 82, "cardId": 18182, - "weight": 200 + "weight": 250 }, { "id": 4689, - "planId": 83, + "planId": 82, "cardId": 13111, - "weight": 200 + "weight": 250 }, { "id": 4690, - "planId": 83, + "planId": 82, "cardId": 13121, - "weight": 200 + "weight": 250 }, { "id": 4691, - "planId": 83, + "planId": 82, "cardId": 13131, - "weight": 200 + "weight": 250 }, { "id": 4692, - "planId": 83, + "planId": 82, "cardId": 13141, - "weight": 200 + "weight": 250 }, { "id": 4693, - "planId": 83, + "planId": 82, "cardId": 13151, - "weight": 200 + "weight": 250 }, { "id": 4694, - "planId": 83, + "planId": 82, "cardId": 13161, - "weight": 200 + "weight": 250 }, { "id": 4695, - "planId": 83, + "planId": 82, "cardId": 13171, - "weight": 200 + "weight": 250 }, { "id": 4696, - "planId": 83, + "planId": 82, "cardId": 13181, - "weight": 200 + "weight": 250 }, { "id": 4697, - "planId": 83, + "planId": 82, "cardId": 13112, - "weight": 200 + "weight": 250 }, { "id": 4698, - "planId": 83, + "planId": 82, "cardId": 13122, - "weight": 200 + "weight": 250 }, { "id": 4699, - "planId": 83, + "planId": 82, "cardId": 13132, - "weight": 200 + "weight": 250 }, { "id": 4700, - "planId": 83, + "planId": 82, "cardId": 13142, - "weight": 200 + "weight": 250 }, { "id": 4701, - "planId": 83, + "planId": 82, "cardId": 13152, - "weight": 200 + "weight": 250 }, { "id": 4702, - "planId": 83, + "planId": 82, "cardId": 13162, - "weight": 200 + "weight": 250 }, { "id": 4703, - "planId": 83, + "planId": 82, "cardId": 13172, - "weight": 200 + "weight": 250 }, { "id": 4704, - "planId": 83, + "planId": 82, "cardId": 13182, - "weight": 200 + "weight": 250 }, { "id": 4705, - "planId": 83, + "planId": 82, "cardId": 12111, - "weight": 200 + "weight": 250 }, { "id": 4706, - "planId": 83, + "planId": 82, "cardId": 12121, - "weight": 200 + "weight": 250 }, { "id": 4707, - "planId": 83, + "planId": 82, "cardId": 12131, - "weight": 200 + "weight": 250 }, { "id": 4708, - "planId": 83, + "planId": 82, "cardId": 12141, - "weight": 200 + "weight": 250 }, { "id": 4709, - "planId": 83, + "planId": 82, "cardId": 12151, - "weight": 200 + "weight": 250 }, { "id": 4710, - "planId": 83, + "planId": 82, "cardId": 12161, - "weight": 200 + "weight": 250 }, { "id": 4711, - "planId": 83, + "planId": 82, "cardId": 12171, - "weight": 200 + "weight": 250 }, { "id": 4712, - "planId": 83, + "planId": 82, "cardId": 12181, - "weight": 200 + "weight": 250 }, { "id": 4713, - "planId": 83, + "planId": 82, "cardId": 12112, - "weight": 200 + "weight": 250 }, { "id": 4714, - "planId": 83, + "planId": 82, "cardId": 12122, - "weight": 200 + "weight": 250 }, { "id": 4715, - "planId": 83, + "planId": 82, "cardId": 12132, - "weight": 200 + "weight": 250 }, { "id": 4716, - "planId": 83, + "planId": 82, "cardId": 12142, - "weight": 200 + "weight": 250 }, { "id": 4717, - "planId": 83, + "planId": 82, "cardId": 12152, - "weight": 200 + "weight": 250 }, { "id": 4718, - "planId": 83, + "planId": 82, "cardId": 12162, - "weight": 200 + "weight": 250 }, { "id": 4719, - "planId": 83, + "planId": 82, "cardId": 12172, - "weight": 200 + "weight": 250 }, { "id": 4720, - "planId": 83, + "planId": 82, "cardId": 12182, - "weight": 200 + "weight": 250 }, { "id": 4721, - "planId": 83, + "planId": 82, "cardId": 16111, - "weight": 200 + "weight": 250 }, { "id": 4722, - "planId": 83, + "planId": 82, "cardId": 16121, - "weight": 200 + "weight": 250 }, { "id": 4723, - "planId": 83, + "planId": 82, "cardId": 16131, - "weight": 200 + "weight": 250 }, { "id": 4724, - "planId": 83, + "planId": 82, "cardId": 16141, - "weight": 200 + "weight": 250 }, { "id": 4725, - "planId": 83, + "planId": 82, "cardId": 16151, - "weight": 200 + "weight": 250 }, { "id": 4726, - "planId": 83, + "planId": 82, "cardId": 16161, - "weight": 200 + "weight": 250 }, { "id": 4727, - "planId": 83, + "planId": 82, "cardId": 16171, - "weight": 200 + "weight": 250 }, { "id": 4728, - "planId": 83, + "planId": 82, "cardId": 16181, - "weight": 200 + "weight": 250 }, { "id": 4729, - "planId": 83, + "planId": 82, "cardId": 16112, - "weight": 200 + "weight": 250 }, { "id": 4730, - "planId": 83, + "planId": 82, "cardId": 16122, - "weight": 200 + "weight": 250 }, { "id": 4731, - "planId": 83, + "planId": 82, "cardId": 16132, - "weight": 200 + "weight": 250 }, { "id": 4732, - "planId": 83, + "planId": 82, "cardId": 16142, - "weight": 200 + "weight": 250 }, { "id": 4733, - "planId": 83, + "planId": 82, "cardId": 16152, - "weight": 200 + "weight": 250 }, { "id": 4734, - "planId": 83, + "planId": 82, "cardId": 16162, - "weight": 200 + "weight": 250 }, { "id": 4735, - "planId": 83, + "planId": 82, "cardId": 16172, - "weight": 200 + "weight": 250 }, { "id": 4736, - "planId": 83, + "planId": 82, "cardId": 16182, - "weight": 200 + "weight": 250 }, { "id": 4737, - "planId": 83, + "planId": 82, "cardId": 11211, "weight": 300 }, { "id": 4738, - "planId": 83, + "planId": 82, "cardId": 11221, "weight": 300 }, { "id": 4739, - "planId": 83, + "planId": 82, "cardId": 11231, "weight": 300 }, { "id": 4740, - "planId": 83, + "planId": 82, "cardId": 11241, "weight": 300 }, { "id": 4741, - "planId": 83, + "planId": 82, "cardId": 11251, "weight": 300 }, { "id": 4742, - "planId": 83, + "planId": 82, "cardId": 11261, "weight": 300 }, { "id": 4743, - "planId": 83, + "planId": 82, "cardId": 11212, "weight": 300 }, { "id": 4744, - "planId": 83, + "planId": 82, "cardId": 11222, "weight": 300 }, { "id": 4745, - "planId": 83, + "planId": 82, "cardId": 11232, "weight": 300 }, { "id": 4746, - "planId": 83, + "planId": 82, "cardId": 11242, "weight": 300 }, { "id": 4747, - "planId": 83, + "planId": 82, "cardId": 11252, "weight": 300 }, { "id": 4748, - "planId": 83, + "planId": 82, "cardId": 11262, "weight": 300 }, { "id": 4749, - "planId": 83, + "planId": 82, "cardId": 14211, "weight": 300 }, { "id": 4750, - "planId": 83, + "planId": 82, "cardId": 14221, "weight": 300 }, { "id": 4751, - "planId": 83, + "planId": 82, "cardId": 14231, "weight": 300 }, { "id": 4752, - "planId": 83, + "planId": 82, "cardId": 14241, "weight": 300 }, { "id": 4753, - "planId": 83, + "planId": 82, "cardId": 14251, "weight": 300 }, { "id": 4754, - "planId": 83, + "planId": 82, "cardId": 14261, "weight": 300 }, { "id": 4755, - "planId": 83, + "planId": 82, "cardId": 14212, "weight": 300 }, { "id": 4756, - "planId": 83, + "planId": 82, "cardId": 14222, "weight": 300 }, { "id": 4757, - "planId": 83, + "planId": 82, "cardId": 14232, "weight": 300 }, { "id": 4758, - "planId": 83, + "planId": 82, "cardId": 14242, "weight": 300 }, { "id": 4759, - "planId": 83, + "planId": 82, "cardId": 14252, "weight": 300 }, { "id": 4760, - "planId": 83, + "planId": 82, "cardId": 14262, "weight": 300 }, { "id": 4761, - "planId": 83, + "planId": 82, "cardId": 17211, "weight": 300 }, { "id": 4762, - "planId": 83, + "planId": 82, "cardId": 17221, "weight": 300 }, { "id": 4763, - "planId": 83, + "planId": 82, "cardId": 17231, "weight": 300 }, { "id": 4764, - "planId": 83, + "planId": 82, "cardId": 17241, "weight": 300 }, { "id": 4765, - "planId": 83, + "planId": 82, "cardId": 17251, "weight": 300 }, { "id": 4766, - "planId": 83, + "planId": 82, "cardId": 17261, "weight": 300 }, { "id": 4767, - "planId": 83, + "planId": 82, "cardId": 17212, "weight": 300 }, { "id": 4768, - "planId": 83, + "planId": 82, "cardId": 17222, "weight": 300 }, { "id": 4769, - "planId": 83, + "planId": 82, "cardId": 17232, "weight": 300 }, { "id": 4770, - "planId": 83, + "planId": 82, "cardId": 17242, "weight": 300 }, { "id": 4771, - "planId": 83, + "planId": 82, "cardId": 17252, "weight": 300 }, { "id": 4772, - "planId": 83, + "planId": 82, "cardId": 17262, "weight": 300 }, { "id": 4773, - "planId": 83, + "planId": 82, "cardId": 15211, "weight": 300 }, { "id": 4774, - "planId": 83, + "planId": 82, "cardId": 15221, "weight": 300 }, { "id": 4775, - "planId": 83, + "planId": 82, "cardId": 15231, "weight": 300 }, { "id": 4776, - "planId": 83, + "planId": 82, "cardId": 15241, "weight": 300 }, { "id": 4777, - "planId": 83, + "planId": 82, "cardId": 15251, "weight": 300 }, { "id": 4778, - "planId": 83, + "planId": 82, "cardId": 15261, "weight": 300 }, { "id": 4779, - "planId": 83, + "planId": 82, "cardId": 15212, "weight": 300 }, { "id": 4780, - "planId": 83, + "planId": 82, "cardId": 15222, "weight": 300 }, { "id": 4781, - "planId": 83, + "planId": 82, "cardId": 15232, "weight": 300 }, { "id": 4782, - "planId": 83, + "planId": 82, "cardId": 15242, "weight": 300 }, { "id": 4783, - "planId": 83, + "planId": 82, "cardId": 15252, "weight": 300 }, { "id": 4784, - "planId": 83, + "planId": 82, "cardId": 15262, "weight": 300 }, { "id": 4785, - "planId": 83, + "planId": 82, "cardId": 18211, "weight": 300 }, { "id": 4786, - "planId": 83, + "planId": 82, "cardId": 18221, "weight": 300 }, { "id": 4787, - "planId": 83, + "planId": 82, "cardId": 18231, "weight": 300 }, { "id": 4788, - "planId": 83, + "planId": 82, "cardId": 18241, "weight": 300 }, { "id": 4789, - "planId": 83, + "planId": 82, "cardId": 18251, "weight": 300 }, { "id": 4790, - "planId": 83, + "planId": 82, "cardId": 18261, "weight": 300 }, { "id": 4791, - "planId": 83, + "planId": 82, "cardId": 18212, "weight": 300 }, { "id": 4792, - "planId": 83, + "planId": 82, "cardId": 18222, "weight": 300 }, { "id": 4793, - "planId": 83, + "planId": 82, "cardId": 18232, "weight": 300 }, { "id": 4794, - "planId": 83, + "planId": 82, "cardId": 18242, "weight": 300 }, { "id": 4795, - "planId": 83, + "planId": 82, "cardId": 18252, "weight": 300 }, { "id": 4796, - "planId": 83, + "planId": 82, "cardId": 18262, "weight": 300 }, { "id": 4797, - "planId": 83, + "planId": 82, "cardId": 13211, "weight": 300 }, { "id": 4798, - "planId": 83, + "planId": 82, "cardId": 13221, "weight": 300 }, { "id": 4799, - "planId": 83, + "planId": 82, "cardId": 13231, "weight": 300 }, { "id": 4800, - "planId": 83, + "planId": 82, "cardId": 13241, "weight": 300 }, { "id": 4801, - "planId": 83, + "planId": 82, "cardId": 13251, "weight": 300 }, { "id": 4802, - "planId": 83, + "planId": 82, "cardId": 13261, "weight": 300 }, { "id": 4803, - "planId": 83, + "planId": 82, "cardId": 13212, "weight": 300 }, { "id": 4804, - "planId": 83, + "planId": 82, "cardId": 13222, "weight": 300 }, { "id": 4805, - "planId": 83, + "planId": 82, "cardId": 13232, "weight": 300 }, { "id": 4806, - "planId": 83, + "planId": 82, "cardId": 13242, "weight": 300 }, { "id": 4807, - "planId": 83, + "planId": 82, "cardId": 13252, "weight": 300 }, { "id": 4808, - "planId": 83, + "planId": 82, "cardId": 13262, "weight": 300 }, { "id": 4809, - "planId": 83, + "planId": 82, "cardId": 12211, "weight": 300 }, { "id": 4810, - "planId": 83, + "planId": 82, "cardId": 12221, "weight": 300 }, { "id": 4811, - "planId": 83, + "planId": 82, "cardId": 12231, "weight": 300 }, { "id": 4812, - "planId": 83, + "planId": 82, "cardId": 12241, "weight": 300 }, { "id": 4813, - "planId": 83, + "planId": 82, "cardId": 12251, "weight": 300 }, { "id": 4814, - "planId": 83, + "planId": 82, "cardId": 12261, "weight": 300 }, { "id": 4815, - "planId": 83, + "planId": 82, "cardId": 12212, "weight": 300 }, { "id": 4816, - "planId": 83, + "planId": 82, "cardId": 12222, "weight": 300 }, { "id": 4817, - "planId": 83, + "planId": 82, "cardId": 12232, "weight": 300 }, { "id": 4818, - "planId": 83, + "planId": 82, "cardId": 12242, "weight": 300 }, { "id": 4819, - "planId": 83, + "planId": 82, "cardId": 12252, "weight": 300 }, { "id": 4820, - "planId": 83, + "planId": 82, "cardId": 12262, "weight": 300 }, { "id": 4821, - "planId": 83, + "planId": 82, "cardId": 16211, "weight": 300 }, { "id": 4822, - "planId": 83, + "planId": 82, "cardId": 16221, "weight": 300 }, { "id": 4823, - "planId": 83, + "planId": 82, "cardId": 16231, "weight": 300 }, { "id": 4824, - "planId": 83, + "planId": 82, "cardId": 16241, "weight": 300 }, { "id": 4825, - "planId": 83, + "planId": 82, "cardId": 16251, "weight": 300 }, { "id": 4826, - "planId": 83, + "planId": 82, "cardId": 16261, "weight": 300 }, { "id": 4827, - "planId": 83, + "planId": 82, "cardId": 16212, "weight": 300 }, { "id": 4828, - "planId": 83, + "planId": 82, "cardId": 16222, "weight": 300 }, { "id": 4829, - "planId": 83, + "planId": 82, "cardId": 16232, "weight": 300 }, { "id": 4830, - "planId": 83, + "planId": 82, "cardId": 16242, "weight": 300 }, { "id": 4831, - "planId": 83, + "planId": 82, "cardId": 16252, "weight": 300 }, { "id": 4832, - "planId": 83, + "planId": 82, "cardId": 16262, "weight": 300 }, { "id": 4833, - "planId": 83, + "planId": 82, "cardId": 11311, - "weight": 150 + "weight": 50 }, { "id": 4834, - "planId": 83, + "planId": 82, "cardId": 11321, - "weight": 150 + "weight": 50 }, { "id": 4835, - "planId": 83, + "planId": 82, "cardId": 11331, - "weight": 150 + "weight": 50 }, { "id": 4836, - "planId": 83, + "planId": 82, "cardId": 11341, - "weight": 150 + "weight": 50 }, { "id": 4837, - "planId": 83, + "planId": 82, "cardId": 11312, - "weight": 150 + "weight": 50 }, { "id": 4838, - "planId": 83, + "planId": 82, "cardId": 11322, - "weight": 150 + "weight": 50 }, { "id": 4839, - "planId": 83, + "planId": 82, "cardId": 11332, - "weight": 150 + "weight": 50 }, { "id": 4840, - "planId": 83, + "planId": 82, "cardId": 11342, - "weight": 150 + "weight": 50 }, { "id": 4841, - "planId": 83, + "planId": 82, "cardId": 14311, - "weight": 150 + "weight": 50 }, { "id": 4842, - "planId": 83, + "planId": 82, "cardId": 14321, - "weight": 150 + "weight": 50 }, { "id": 4843, - "planId": 83, + "planId": 82, "cardId": 14331, - "weight": 150 + "weight": 50 }, { "id": 4844, - "planId": 83, + "planId": 82, "cardId": 14341, - "weight": 150 + "weight": 50 }, { "id": 4845, - "planId": 83, + "planId": 82, "cardId": 14312, - "weight": 150 + "weight": 50 }, { "id": 4846, - "planId": 83, + "planId": 82, "cardId": 14322, - "weight": 150 + "weight": 50 }, { "id": 4847, - "planId": 83, + "planId": 82, "cardId": 14332, - "weight": 150 + "weight": 50 }, { "id": 4848, - "planId": 83, + "planId": 82, "cardId": 14342, - "weight": 150 + "weight": 50 }, { "id": 4849, - "planId": 83, + "planId": 82, "cardId": 17311, - "weight": 150 + "weight": 50 }, { "id": 4850, - "planId": 83, + "planId": 82, "cardId": 17321, - "weight": 150 + "weight": 50 }, { "id": 4851, - "planId": 83, + "planId": 82, "cardId": 17331, - "weight": 150 + "weight": 50 }, { "id": 4852, - "planId": 83, + "planId": 82, "cardId": 17341, - "weight": 150 + "weight": 50 }, { "id": 4853, - "planId": 83, + "planId": 82, "cardId": 17312, - "weight": 150 + "weight": 50 }, { "id": 4854, - "planId": 83, + "planId": 82, "cardId": 17322, - "weight": 150 + "weight": 50 }, { "id": 4855, - "planId": 83, + "planId": 82, "cardId": 17332, - "weight": 150 + "weight": 50 }, { "id": 4856, - "planId": 83, + "planId": 82, "cardId": 17342, - "weight": 150 + "weight": 50 }, { "id": 4857, - "planId": 83, + "planId": 82, "cardId": 15311, - "weight": 150 + "weight": 50 }, { "id": 4858, - "planId": 83, + "planId": 82, "cardId": 15321, - "weight": 150 + "weight": 50 }, { "id": 4859, - "planId": 83, + "planId": 82, "cardId": 15331, - "weight": 150 + "weight": 50 }, { "id": 4860, - "planId": 83, + "planId": 82, "cardId": 15341, - "weight": 150 + "weight": 50 }, { "id": 4861, - "planId": 83, + "planId": 82, "cardId": 15312, - "weight": 150 + "weight": 50 }, { "id": 4862, - "planId": 83, + "planId": 82, "cardId": 15322, - "weight": 150 + "weight": 50 }, { "id": 4863, - "planId": 83, + "planId": 82, "cardId": 15332, - "weight": 150 + "weight": 50 }, { "id": 4864, - "planId": 83, + "planId": 82, "cardId": 15342, - "weight": 150 + "weight": 50 }, { "id": 4865, - "planId": 83, + "planId": 82, "cardId": 18311, - "weight": 150 + "weight": 50 }, { "id": 4866, - "planId": 83, + "planId": 82, "cardId": 18321, - "weight": 150 + "weight": 50 }, { "id": 4867, - "planId": 83, + "planId": 82, "cardId": 18331, - "weight": 150 + "weight": 50 }, { "id": 4868, - "planId": 83, + "planId": 82, "cardId": 18341, - "weight": 150 + "weight": 50 }, { "id": 4869, - "planId": 83, + "planId": 82, "cardId": 18312, - "weight": 150 + "weight": 50 }, { "id": 4870, - "planId": 83, + "planId": 82, "cardId": 18322, - "weight": 150 + "weight": 50 }, { "id": 4871, - "planId": 83, + "planId": 82, "cardId": 18332, - "weight": 150 + "weight": 50 }, { "id": 4872, - "planId": 83, + "planId": 82, "cardId": 18342, - "weight": 150 + "weight": 50 }, { "id": 4873, - "planId": 83, + "planId": 82, "cardId": 13311, - "weight": 150 + "weight": 50 }, { "id": 4874, - "planId": 83, + "planId": 82, "cardId": 13321, - "weight": 150 + "weight": 50 }, { "id": 4875, - "planId": 83, + "planId": 82, "cardId": 13331, - "weight": 150 + "weight": 50 }, { "id": 4876, - "planId": 83, + "planId": 82, "cardId": 13341, - "weight": 150 + "weight": 50 }, { "id": 4877, - "planId": 83, + "planId": 82, "cardId": 13312, - "weight": 150 + "weight": 50 }, { "id": 4878, - "planId": 83, + "planId": 82, "cardId": 13322, - "weight": 150 + "weight": 50 }, { "id": 4879, - "planId": 83, + "planId": 82, "cardId": 13332, - "weight": 150 + "weight": 50 }, { "id": 4880, - "planId": 83, + "planId": 82, "cardId": 13342, - "weight": 150 + "weight": 50 }, { "id": 4881, - "planId": 83, + "planId": 82, "cardId": 12311, - "weight": 150 + "weight": 50 }, { "id": 4882, - "planId": 83, + "planId": 82, "cardId": 12321, - "weight": 150 + "weight": 50 }, { "id": 4883, - "planId": 83, + "planId": 82, "cardId": 12331, - "weight": 150 + "weight": 50 }, { "id": 4884, - "planId": 83, + "planId": 82, "cardId": 12341, - "weight": 150 + "weight": 50 }, { "id": 4885, - "planId": 83, + "planId": 82, "cardId": 12312, - "weight": 150 + "weight": 50 }, { "id": 4886, - "planId": 83, + "planId": 82, "cardId": 12322, - "weight": 150 + "weight": 50 }, { "id": 4887, - "planId": 83, + "planId": 82, "cardId": 12332, - "weight": 150 + "weight": 50 }, { "id": 4888, - "planId": 83, + "planId": 82, "cardId": 12342, - "weight": 150 + "weight": 50 }, { "id": 4889, - "planId": 83, + "planId": 82, "cardId": 16311, - "weight": 150 + "weight": 50 }, { "id": 4890, - "planId": 83, + "planId": 82, "cardId": 16321, - "weight": 150 + "weight": 50 }, { "id": 4891, - "planId": 83, + "planId": 82, "cardId": 16331, - "weight": 150 + "weight": 50 }, { "id": 4892, - "planId": 83, + "planId": 82, "cardId": 16341, - "weight": 150 + "weight": 50 }, { "id": 4893, - "planId": 83, + "planId": 82, "cardId": 16312, - "weight": 150 + "weight": 50 }, { "id": 4894, - "planId": 83, + "planId": 82, "cardId": 16322, - "weight": 150 + "weight": 50 }, { "id": 4895, - "planId": 83, + "planId": 82, "cardId": 16332, - "weight": 150 + "weight": 50 }, { "id": 4896, - "planId": 83, + "planId": 82, "cardId": 16342, - "weight": 150 + "weight": 50 }, { "id": 4897, "planId": 83, "cardId": 11111, - "weight": 90 + "weight": 250 }, { "id": 4898, "planId": 83, "cardId": 11121, - "weight": 90 + "weight": 250 }, { "id": 4899, "planId": 83, "cardId": 11131, - "weight": 90 + "weight": 250 }, { "id": 4900, "planId": 83, "cardId": 11141, - "weight": 90 + "weight": 250 }, { "id": 4901, "planId": 83, "cardId": 11151, - "weight": 90 + "weight": 250 }, { "id": 4902, "planId": 83, "cardId": 11161, - "weight": 90 + "weight": 250 }, { "id": 4903, "planId": 83, "cardId": 11171, - "weight": 90 + "weight": 250 }, { "id": 4904, "planId": 83, "cardId": 11181, - "weight": 90 + "weight": 250 }, { "id": 4905, "planId": 83, "cardId": 11112, - "weight": 90 + "weight": 250 }, { "id": 4906, "planId": 83, "cardId": 11122, - "weight": 90 + "weight": 250 }, { "id": 4907, "planId": 83, "cardId": 11132, - "weight": 90 + "weight": 250 }, { "id": 4908, "planId": 83, "cardId": 11142, - "weight": 90 + "weight": 250 }, { "id": 4909, "planId": 83, "cardId": 11152, - "weight": 90 + "weight": 250 }, { "id": 4910, "planId": 83, "cardId": 11162, - "weight": 90 + "weight": 250 }, { "id": 4911, "planId": 83, "cardId": 11172, - "weight": 90 + "weight": 250 }, { "id": 4912, "planId": 83, "cardId": 11182, - "weight": 90 + "weight": 250 }, { "id": 4913, "planId": 83, "cardId": 14111, - "weight": 90 + "weight": 250 }, { "id": 4914, "planId": 83, "cardId": 14121, - "weight": 90 + "weight": 250 }, { "id": 4915, "planId": 83, "cardId": 14131, - "weight": 90 + "weight": 250 }, { "id": 4916, "planId": 83, "cardId": 14141, - "weight": 90 + "weight": 250 }, { "id": 4917, "planId": 83, "cardId": 14151, - "weight": 90 + "weight": 250 }, { "id": 4918, "planId": 83, "cardId": 14161, - "weight": 90 + "weight": 250 }, { "id": 4919, "planId": 83, "cardId": 14171, - "weight": 90 + "weight": 250 }, { "id": 4920, "planId": 83, "cardId": 14181, - "weight": 90 + "weight": 250 }, { "id": 4921, "planId": 83, "cardId": 14112, - "weight": 90 + "weight": 250 }, { "id": 4922, "planId": 83, "cardId": 14122, - "weight": 90 + "weight": 250 }, { "id": 4923, "planId": 83, "cardId": 14132, - "weight": 90 + "weight": 250 }, { "id": 4924, "planId": 83, "cardId": 14142, - "weight": 90 + "weight": 250 }, { "id": 4925, "planId": 83, "cardId": 14152, - "weight": 90 + "weight": 250 }, { "id": 4926, "planId": 83, "cardId": 14162, - "weight": 90 + "weight": 250 }, { "id": 4927, "planId": 83, "cardId": 14172, - "weight": 90 + "weight": 250 }, { "id": 4928, "planId": 83, "cardId": 14182, - "weight": 90 + "weight": 250 }, { "id": 4929, "planId": 83, "cardId": 17111, - "weight": 90 + "weight": 250 }, { "id": 4930, "planId": 83, "cardId": 17121, - "weight": 90 + "weight": 250 }, { "id": 4931, "planId": 83, "cardId": 17131, - "weight": 90 + "weight": 250 }, { "id": 4932, "planId": 83, "cardId": 17141, - "weight": 90 + "weight": 250 }, { "id": 4933, "planId": 83, "cardId": 17151, - "weight": 90 + "weight": 250 }, { "id": 4934, "planId": 83, "cardId": 17161, - "weight": 90 + "weight": 250 }, { "id": 4935, "planId": 83, "cardId": 17171, - "weight": 90 + "weight": 250 }, { "id": 4936, "planId": 83, "cardId": 17181, - "weight": 90 + "weight": 250 }, { "id": 4937, "planId": 83, "cardId": 17112, - "weight": 90 + "weight": 250 }, { "id": 4938, "planId": 83, "cardId": 17122, - "weight": 90 + "weight": 250 }, { "id": 4939, "planId": 83, "cardId": 17132, - "weight": 90 + "weight": 250 }, { "id": 4940, "planId": 83, "cardId": 17172, - "weight": 90 + "weight": 250 }, { "id": 4941, "planId": 83, "cardId": 17152, - "weight": 90 + "weight": 250 }, { "id": 4942, "planId": 83, "cardId": 17162, - "weight": 90 + "weight": 250 }, { "id": 4943, "planId": 83, "cardId": 17172, - "weight": 90 + "weight": 250 }, { "id": 4944, "planId": 83, "cardId": 17182, - "weight": 90 + "weight": 250 }, { "id": 4945, "planId": 83, "cardId": 15111, - "weight": 90 + "weight": 250 }, { "id": 4946, "planId": 83, "cardId": 15121, - "weight": 90 + "weight": 250 }, { "id": 4947, "planId": 83, "cardId": 15131, - "weight": 90 + "weight": 250 }, { "id": 4948, "planId": 83, "cardId": 15141, - "weight": 90 + "weight": 250 }, { "id": 4949, "planId": 83, "cardId": 15151, - "weight": 90 + "weight": 250 }, { "id": 4950, "planId": 83, "cardId": 15161, - "weight": 90 + "weight": 250 }, { "id": 4951, "planId": 83, "cardId": 15171, - "weight": 90 + "weight": 250 }, { "id": 4952, "planId": 83, "cardId": 15181, - "weight": 90 + "weight": 250 }, { "id": 4953, "planId": 83, "cardId": 15112, - "weight": 90 + "weight": 250 }, { "id": 4954, "planId": 83, "cardId": 15122, - "weight": 90 + "weight": 250 }, { "id": 4955, "planId": 83, "cardId": 15132, - "weight": 90 + "weight": 250 }, { "id": 4956, "planId": 83, "cardId": 15142, - "weight": 90 + "weight": 250 }, { "id": 4957, "planId": 83, "cardId": 15152, - "weight": 90 + "weight": 250 }, { "id": 4958, "planId": 83, "cardId": 15162, - "weight": 90 + "weight": 250 }, { "id": 4959, "planId": 83, "cardId": 15172, - "weight": 90 + "weight": 250 }, { "id": 4960, "planId": 83, "cardId": 15182, - "weight": 90 + "weight": 250 }, { "id": 4961, "planId": 83, "cardId": 18111, - "weight": 90 + "weight": 250 }, { "id": 4962, "planId": 83, "cardId": 18121, - "weight": 90 + "weight": 250 }, { "id": 4963, "planId": 83, "cardId": 18131, - "weight": 90 + "weight": 250 }, { "id": 4964, "planId": 83, "cardId": 18141, - "weight": 90 + "weight": 250 }, { "id": 4965, "planId": 83, "cardId": 18151, - "weight": 90 + "weight": 250 }, { "id": 4966, "planId": 83, "cardId": 18161, - "weight": 90 + "weight": 250 }, { "id": 4967, "planId": 83, "cardId": 18171, - "weight": 90 + "weight": 250 }, { "id": 4968, "planId": 83, "cardId": 18181, - "weight": 90 + "weight": 250 }, { "id": 4969, "planId": 83, "cardId": 18112, - "weight": 90 + "weight": 250 }, { "id": 4970, "planId": 83, "cardId": 18122, - "weight": 90 + "weight": 250 }, { "id": 4971, "planId": 83, "cardId": 18132, - "weight": 90 + "weight": 250 }, { "id": 4972, "planId": 83, "cardId": 18142, - "weight": 90 + "weight": 250 }, { "id": 4973, "planId": 83, "cardId": 18152, - "weight": 90 + "weight": 250 }, { "id": 4974, "planId": 83, "cardId": 18162, - "weight": 90 + "weight": 250 }, { "id": 4975, "planId": 83, "cardId": 18172, - "weight": 90 + "weight": 250 }, { "id": 4976, "planId": 83, "cardId": 18182, - "weight": 90 + "weight": 250 }, { "id": 4977, "planId": 83, "cardId": 13111, - "weight": 90 + "weight": 250 }, { "id": 4978, "planId": 83, "cardId": 13121, - "weight": 90 + "weight": 250 }, { "id": 4979, "planId": 83, "cardId": 13131, - "weight": 90 + "weight": 250 }, { "id": 4980, "planId": 83, "cardId": 13141, - "weight": 90 + "weight": 250 }, { "id": 4981, "planId": 83, "cardId": 13151, - "weight": 90 + "weight": 250 }, { "id": 4982, "planId": 83, "cardId": 13161, - "weight": 90 + "weight": 250 }, { "id": 4983, "planId": 83, "cardId": 13171, - "weight": 90 + "weight": 250 }, { "id": 4984, "planId": 83, "cardId": 13181, - "weight": 90 + "weight": 250 }, { "id": 4985, "planId": 83, "cardId": 13112, - "weight": 90 + "weight": 250 }, { "id": 4986, "planId": 83, "cardId": 13122, - "weight": 90 + "weight": 250 }, { "id": 4987, "planId": 83, "cardId": 13132, - "weight": 90 + "weight": 250 }, { "id": 4988, "planId": 83, "cardId": 13142, - "weight": 90 + "weight": 250 }, { "id": 4989, "planId": 83, "cardId": 13152, - "weight": 90 + "weight": 250 }, { "id": 4990, "planId": 83, "cardId": 13162, - "weight": 90 + "weight": 250 }, { "id": 4991, "planId": 83, "cardId": 13172, - "weight": 90 + "weight": 250 }, { "id": 4992, "planId": 83, "cardId": 13182, - "weight": 90 + "weight": 250 }, { "id": 4993, "planId": 83, "cardId": 12111, - "weight": 90 + "weight": 250 }, { "id": 4994, "planId": 83, "cardId": 12121, - "weight": 90 + "weight": 250 }, { "id": 4995, "planId": 83, "cardId": 12131, - "weight": 90 + "weight": 250 }, { "id": 4996, "planId": 83, "cardId": 12141, - "weight": 90 + "weight": 250 }, { "id": 4997, "planId": 83, "cardId": 12151, - "weight": 90 + "weight": 250 }, { "id": 4998, "planId": 83, "cardId": 12161, - "weight": 90 + "weight": 250 }, { "id": 4999, "planId": 83, "cardId": 12171, - "weight": 90 + "weight": 250 }, { "id": 5000, "planId": 83, "cardId": 12181, - "weight": 90 + "weight": 250 }, { "id": 5001, "planId": 83, "cardId": 12112, - "weight": 90 + "weight": 250 }, { "id": 5002, "planId": 83, "cardId": 12122, - "weight": 90 + "weight": 250 }, { "id": 5003, "planId": 83, "cardId": 12132, - "weight": 90 + "weight": 250 }, { "id": 5004, "planId": 83, "cardId": 12142, - "weight": 90 + "weight": 250 }, { "id": 5005, "planId": 83, "cardId": 12152, - "weight": 90 + "weight": 250 }, { "id": 5006, "planId": 83, "cardId": 12162, - "weight": 90 + "weight": 250 }, { "id": 5007, "planId": 83, "cardId": 12172, - "weight": 90 + "weight": 250 }, { "id": 5008, "planId": 83, "cardId": 12182, - "weight": 90 + "weight": 250 }, { "id": 5009, "planId": 83, "cardId": 16111, - "weight": 90 + "weight": 250 }, { "id": 5010, "planId": 83, "cardId": 16121, - "weight": 90 + "weight": 250 }, { "id": 5011, "planId": 83, "cardId": 16131, - "weight": 90 + "weight": 250 }, { "id": 5012, "planId": 83, "cardId": 16141, - "weight": 90 + "weight": 250 }, { "id": 5013, "planId": 83, "cardId": 16151, - "weight": 90 + "weight": 250 }, { "id": 5014, "planId": 83, "cardId": 16161, - "weight": 90 + "weight": 250 }, { "id": 5015, "planId": 83, "cardId": 16171, - "weight": 90 + "weight": 250 }, { "id": 5016, "planId": 83, "cardId": 16181, - "weight": 90 + "weight": 250 }, { "id": 5017, "planId": 83, "cardId": 16112, - "weight": 90 + "weight": 250 }, { "id": 5018, "planId": 83, "cardId": 16122, - "weight": 90 + "weight": 250 }, { "id": 5019, "planId": 83, "cardId": 16132, - "weight": 90 + "weight": 250 }, { "id": 5020, "planId": 83, "cardId": 16142, - "weight": 90 + "weight": 250 }, { "id": 5021, "planId": 83, "cardId": 16152, - "weight": 90 + "weight": 250 }, { "id": 5022, "planId": 83, "cardId": 16162, - "weight": 90 + "weight": 250 }, { "id": 5023, "planId": 83, "cardId": 16172, - "weight": 90 + "weight": 250 }, { "id": 5024, "planId": 83, "cardId": 16182, - "weight": 90 + "weight": 250 }, { "id": 5025, "planId": 83, "cardId": 11211, - "weight": 160 + "weight": 300 }, { "id": 5026, "planId": 83, "cardId": 11221, - "weight": 160 + "weight": 300 }, { "id": 5027, "planId": 83, "cardId": 11231, - "weight": 160 + "weight": 300 }, { "id": 5028, "planId": 83, "cardId": 11241, - "weight": 160 + "weight": 300 }, { "id": 5029, "planId": 83, "cardId": 11251, - "weight": 160 + "weight": 300 }, { "id": 5030, "planId": 83, "cardId": 11261, - "weight": 160 + "weight": 300 }, { "id": 5031, "planId": 83, "cardId": 11212, - "weight": 160 + "weight": 300 }, { "id": 5032, "planId": 83, "cardId": 11222, - "weight": 160 + "weight": 300 }, { "id": 5033, "planId": 83, "cardId": 11232, - "weight": 160 + "weight": 300 }, { "id": 5034, "planId": 83, "cardId": 11242, - "weight": 160 + "weight": 300 }, { "id": 5035, "planId": 83, "cardId": 11252, - "weight": 160 + "weight": 300 }, { "id": 5036, "planId": 83, "cardId": 11262, - "weight": 160 + "weight": 300 }, { "id": 5037, "planId": 83, "cardId": 14211, - "weight": 160 + "weight": 300 }, { "id": 5038, "planId": 83, "cardId": 14221, - "weight": 160 + "weight": 300 }, { "id": 5039, "planId": 83, "cardId": 14231, - "weight": 160 + "weight": 300 }, { "id": 5040, "planId": 83, "cardId": 14241, - "weight": 160 + "weight": 300 }, { "id": 5041, "planId": 83, "cardId": 14251, - "weight": 160 + "weight": 300 }, { "id": 5042, "planId": 83, "cardId": 14261, - "weight": 160 + "weight": 300 }, { "id": 5043, "planId": 83, "cardId": 14212, - "weight": 160 + "weight": 300 }, { "id": 5044, "planId": 83, "cardId": 14222, - "weight": 160 + "weight": 300 }, { "id": 5045, "planId": 83, "cardId": 14232, - "weight": 160 + "weight": 300 }, { "id": 5046, "planId": 83, "cardId": 14242, - "weight": 160 + "weight": 300 }, { "id": 5047, "planId": 83, "cardId": 14252, - "weight": 160 + "weight": 300 }, { "id": 5048, "planId": 83, "cardId": 14262, - "weight": 160 + "weight": 300 }, { "id": 5049, "planId": 83, "cardId": 17211, - "weight": 160 + "weight": 300 }, { "id": 5050, "planId": 83, "cardId": 17221, - "weight": 160 + "weight": 300 }, { "id": 5051, "planId": 83, "cardId": 17231, - "weight": 160 + "weight": 300 }, { "id": 5052, "planId": 83, "cardId": 17241, - "weight": 160 + "weight": 300 }, { "id": 5053, "planId": 83, "cardId": 17251, - "weight": 160 + "weight": 300 }, { "id": 5054, "planId": 83, "cardId": 17261, - "weight": 160 + "weight": 300 }, { "id": 5055, "planId": 83, "cardId": 17212, - "weight": 160 + "weight": 300 }, { "id": 5056, "planId": 83, "cardId": 17222, - "weight": 160 + "weight": 300 }, { "id": 5057, "planId": 83, "cardId": 17232, - "weight": 160 + "weight": 300 }, { "id": 5058, "planId": 83, "cardId": 17242, - "weight": 160 + "weight": 300 }, { "id": 5059, "planId": 83, "cardId": 17252, - "weight": 160 + "weight": 300 }, { "id": 5060, "planId": 83, "cardId": 17262, - "weight": 160 + "weight": 300 }, { "id": 5061, "planId": 83, "cardId": 15211, - "weight": 160 + "weight": 300 }, { "id": 5062, "planId": 83, "cardId": 15221, - "weight": 160 + "weight": 300 }, { "id": 5063, "planId": 83, "cardId": 15231, - "weight": 160 + "weight": 300 }, { "id": 5064, "planId": 83, "cardId": 15241, - "weight": 160 + "weight": 300 }, { "id": 5065, "planId": 83, "cardId": 15251, - "weight": 160 + "weight": 300 }, { "id": 5066, "planId": 83, "cardId": 15261, - "weight": 160 + "weight": 300 }, { "id": 5067, "planId": 83, "cardId": 15212, - "weight": 160 + "weight": 300 }, { "id": 5068, "planId": 83, "cardId": 15222, - "weight": 160 + "weight": 300 }, { "id": 5069, "planId": 83, "cardId": 15232, - "weight": 160 + "weight": 300 }, { "id": 5070, "planId": 83, "cardId": 15242, - "weight": 160 + "weight": 300 }, { "id": 5071, "planId": 83, "cardId": 15252, - "weight": 160 + "weight": 300 }, { "id": 5072, "planId": 83, "cardId": 15262, - "weight": 160 + "weight": 300 }, { "id": 5073, "planId": 83, "cardId": 18211, - "weight": 160 + "weight": 300 }, { "id": 5074, "planId": 83, "cardId": 18221, - "weight": 160 + "weight": 300 }, { "id": 5075, "planId": 83, "cardId": 18231, - "weight": 160 + "weight": 300 }, { "id": 5076, "planId": 83, "cardId": 18241, - "weight": 160 + "weight": 300 }, { "id": 5077, "planId": 83, "cardId": 18251, - "weight": 160 + "weight": 300 }, { "id": 5078, "planId": 83, "cardId": 18261, - "weight": 160 + "weight": 300 }, { "id": 5079, "planId": 83, "cardId": 18212, - "weight": 160 + "weight": 300 }, { "id": 5080, "planId": 83, "cardId": 18222, - "weight": 160 + "weight": 300 }, { "id": 5081, "planId": 83, "cardId": 18232, - "weight": 160 + "weight": 300 }, { "id": 5082, "planId": 83, "cardId": 18242, - "weight": 160 + "weight": 300 }, { "id": 5083, "planId": 83, "cardId": 18252, - "weight": 160 + "weight": 300 }, { "id": 5084, "planId": 83, "cardId": 18262, - "weight": 160 + "weight": 300 }, { "id": 5085, "planId": 83, "cardId": 13211, - "weight": 160 + "weight": 300 }, { "id": 5086, "planId": 83, "cardId": 13221, - "weight": 160 + "weight": 300 }, { "id": 5087, "planId": 83, "cardId": 13231, - "weight": 160 + "weight": 300 }, { "id": 5088, "planId": 83, "cardId": 13241, - "weight": 160 + "weight": 300 }, { "id": 5089, "planId": 83, "cardId": 13251, - "weight": 160 + "weight": 300 }, { "id": 5090, "planId": 83, "cardId": 13261, - "weight": 160 + "weight": 300 }, { "id": 5091, "planId": 83, "cardId": 13212, - "weight": 160 + "weight": 300 }, { "id": 5092, "planId": 83, "cardId": 13222, - "weight": 160 + "weight": 300 }, { "id": 5093, "planId": 83, "cardId": 13232, - "weight": 160 + "weight": 300 }, { "id": 5094, "planId": 83, "cardId": 13242, - "weight": 160 + "weight": 300 }, { "id": 5095, "planId": 83, "cardId": 13252, - "weight": 160 + "weight": 300 }, { "id": 5096, "planId": 83, "cardId": 13262, - "weight": 160 + "weight": 300 }, { "id": 5097, "planId": 83, "cardId": 12211, - "weight": 160 + "weight": 300 }, { "id": 5098, "planId": 83, "cardId": 12221, - "weight": 160 + "weight": 300 }, { "id": 5099, "planId": 83, "cardId": 12231, - "weight": 160 + "weight": 300 }, { "id": 5100, "planId": 83, "cardId": 12241, - "weight": 160 + "weight": 300 }, { "id": 5101, "planId": 83, "cardId": 12251, - "weight": 160 + "weight": 300 }, { "id": 5102, "planId": 83, "cardId": 12261, - "weight": 160 + "weight": 300 }, { "id": 5103, "planId": 83, "cardId": 12212, - "weight": 160 + "weight": 300 }, { "id": 5104, "planId": 83, "cardId": 12222, - "weight": 160 + "weight": 300 }, { "id": 5105, "planId": 83, "cardId": 12232, - "weight": 160 + "weight": 300 }, { "id": 5106, "planId": 83, "cardId": 12242, - "weight": 160 + "weight": 300 }, { "id": 5107, "planId": 83, "cardId": 12252, - "weight": 160 + "weight": 300 }, { "id": 5108, "planId": 83, "cardId": 12262, - "weight": 160 + "weight": 300 }, { "id": 5109, "planId": 83, "cardId": 16211, - "weight": 160 + "weight": 300 }, { "id": 5110, "planId": 83, "cardId": 16221, - "weight": 160 + "weight": 300 }, { "id": 5111, "planId": 83, "cardId": 16231, - "weight": 160 + "weight": 300 }, { "id": 5112, "planId": 83, "cardId": 16241, - "weight": 160 + "weight": 300 }, { "id": 5113, "planId": 83, "cardId": 16251, - "weight": 160 + "weight": 300 }, { "id": 5114, "planId": 83, "cardId": 16261, - "weight": 160 + "weight": 300 }, { "id": 5115, "planId": 83, "cardId": 16212, - "weight": 160 + "weight": 300 }, { "id": 5116, "planId": 83, "cardId": 16222, - "weight": 160 + "weight": 300 }, { "id": 5117, "planId": 83, "cardId": 16232, - "weight": 160 + "weight": 300 }, { "id": 5118, "planId": 83, "cardId": 16242, - "weight": 160 + "weight": 300 }, { "id": 5119, "planId": 83, "cardId": 16252, - "weight": 160 + "weight": 300 }, { "id": 5120, "planId": 83, "cardId": 16262, - "weight": 160 + "weight": 300 }, { "id": 5121, "planId": 83, "cardId": 11311, - "weight": 180 + "weight": 50 }, { "id": 5122, "planId": 83, "cardId": 11321, - "weight": 180 + "weight": 50 }, { "id": 5123, "planId": 83, "cardId": 11331, - "weight": 180 + "weight": 50 }, { "id": 5124, "planId": 83, "cardId": 11341, - "weight": 180 + "weight": 50 }, { "id": 5125, "planId": 83, "cardId": 11312, - "weight": 180 + "weight": 50 }, { "id": 5126, "planId": 83, "cardId": 11322, - "weight": 180 + "weight": 50 }, { "id": 5127, "planId": 83, "cardId": 11332, - "weight": 180 + "weight": 50 }, { "id": 5128, "planId": 83, "cardId": 11342, - "weight": 180 + "weight": 50 }, { "id": 5129, "planId": 83, "cardId": 14311, - "weight": 180 + "weight": 50 }, { "id": 5130, "planId": 83, "cardId": 14321, - "weight": 180 + "weight": 50 }, { "id": 5131, "planId": 83, "cardId": 14331, - "weight": 180 + "weight": 50 }, { "id": 5132, "planId": 83, "cardId": 14341, - "weight": 180 + "weight": 50 }, { "id": 5133, "planId": 83, "cardId": 14312, - "weight": 180 + "weight": 50 }, { "id": 5134, "planId": 83, "cardId": 14322, - "weight": 180 + "weight": 50 }, { "id": 5135, "planId": 83, "cardId": 14332, - "weight": 180 + "weight": 50 }, { "id": 5136, "planId": 83, "cardId": 14342, - "weight": 180 + "weight": 50 }, { "id": 5137, "planId": 83, "cardId": 17311, - "weight": 180 + "weight": 50 }, { "id": 5138, "planId": 83, "cardId": 17321, - "weight": 180 + "weight": 50 }, { "id": 5139, "planId": 83, "cardId": 17331, - "weight": 180 + "weight": 50 }, { "id": 5140, "planId": 83, "cardId": 17341, - "weight": 180 + "weight": 50 }, { "id": 5141, "planId": 83, "cardId": 17312, - "weight": 180 + "weight": 50 }, { "id": 5142, "planId": 83, "cardId": 17322, - "weight": 180 + "weight": 50 }, { "id": 5143, "planId": 83, "cardId": 17332, - "weight": 180 + "weight": 50 }, { "id": 5144, "planId": 83, "cardId": 17342, - "weight": 180 + "weight": 50 }, { "id": 5145, "planId": 83, "cardId": 15311, - "weight": 180 + "weight": 50 }, { "id": 5146, "planId": 83, "cardId": 15321, - "weight": 180 + "weight": 50 }, { "id": 5147, "planId": 83, "cardId": 15331, - "weight": 180 + "weight": 50 }, { "id": 5148, "planId": 83, "cardId": 15341, - "weight": 180 + "weight": 50 }, { "id": 5149, "planId": 83, "cardId": 15312, - "weight": 180 + "weight": 50 }, { "id": 5150, "planId": 83, "cardId": 15322, - "weight": 180 + "weight": 50 }, { "id": 5151, "planId": 83, "cardId": 15332, - "weight": 180 + "weight": 50 }, { "id": 5152, "planId": 83, "cardId": 15342, - "weight": 180 + "weight": 50 }, { "id": 5153, "planId": 83, "cardId": 18311, - "weight": 180 + "weight": 50 }, { "id": 5154, "planId": 83, "cardId": 18321, - "weight": 180 + "weight": 50 }, { "id": 5155, "planId": 83, "cardId": 18331, - "weight": 180 + "weight": 50 }, { "id": 5156, "planId": 83, "cardId": 18341, - "weight": 180 + "weight": 50 }, { "id": 5157, "planId": 83, "cardId": 18312, - "weight": 180 + "weight": 50 }, { "id": 5158, "planId": 83, "cardId": 18322, - "weight": 180 + "weight": 50 }, { "id": 5159, "planId": 83, "cardId": 18332, - "weight": 180 + "weight": 50 }, { "id": 5160, "planId": 83, "cardId": 18342, - "weight": 180 + "weight": 50 }, { "id": 5161, "planId": 83, "cardId": 13311, - "weight": 180 + "weight": 50 }, { "id": 5162, "planId": 83, "cardId": 13321, - "weight": 180 + "weight": 50 }, { "id": 5163, "planId": 83, "cardId": 13331, - "weight": 180 + "weight": 50 }, { "id": 5164, "planId": 83, "cardId": 13341, - "weight": 180 + "weight": 50 }, { "id": 5165, "planId": 83, "cardId": 13312, - "weight": 180 + "weight": 50 }, { "id": 5166, "planId": 83, "cardId": 13322, - "weight": 180 + "weight": 50 }, { "id": 5167, "planId": 83, "cardId": 13332, - "weight": 180 + "weight": 50 }, { "id": 5168, "planId": 83, "cardId": 13342, - "weight": 180 + "weight": 50 }, { "id": 5169, "planId": 83, "cardId": 12311, - "weight": 180 + "weight": 50 }, { "id": 5170, "planId": 83, "cardId": 12321, - "weight": 180 + "weight": 50 }, { "id": 5171, "planId": 83, "cardId": 12331, - "weight": 180 + "weight": 50 }, { "id": 5172, "planId": 83, "cardId": 12341, - "weight": 180 + "weight": 50 }, { "id": 5173, "planId": 83, "cardId": 12312, - "weight": 180 + "weight": 50 }, { "id": 5174, "planId": 83, "cardId": 12322, - "weight": 180 + "weight": 50 }, { "id": 5175, "planId": 83, "cardId": 12332, - "weight": 180 + "weight": 50 }, { "id": 5176, "planId": 83, "cardId": 12342, - "weight": 180 + "weight": 50 }, { "id": 5177, "planId": 83, "cardId": 16311, - "weight": 180 + "weight": 50 }, { "id": 5178, "planId": 83, "cardId": 16321, - "weight": 180 + "weight": 50 }, { "id": 5179, "planId": 83, "cardId": 16331, - "weight": 180 + "weight": 50 }, { "id": 5180, "planId": 83, "cardId": 16341, - "weight": 180 + "weight": 50 }, { "id": 5181, "planId": 83, "cardId": 16312, - "weight": 180 + "weight": 50 }, { "id": 5182, "planId": 83, "cardId": 16322, - "weight": 180 + "weight": 50 }, { "id": 5183, "planId": 83, "cardId": 16332, - "weight": 180 + "weight": 50 }, { "id": 5184, "planId": 83, "cardId": 16342, - "weight": 180 + "weight": 50 }, { "id": 5185, @@ -31873,4419 +31873,4419 @@ }, { "id": 5313, - "planId": 92, + "planId": 91, "cardId": 11211, "weight": 300 }, { "id": 5314, - "planId": 92, + "planId": 91, "cardId": 11221, "weight": 300 }, { "id": 5315, - "planId": 92, + "planId": 91, "cardId": 11231, "weight": 300 }, { "id": 5316, - "planId": 92, + "planId": 91, "cardId": 11241, "weight": 300 }, { "id": 5317, - "planId": 92, + "planId": 91, "cardId": 11251, "weight": 300 }, { "id": 5318, - "planId": 92, + "planId": 91, "cardId": 11261, "weight": 300 }, { "id": 5319, - "planId": 92, + "planId": 91, "cardId": 11212, "weight": 300 }, { "id": 5320, - "planId": 92, + "planId": 91, "cardId": 11222, "weight": 300 }, { "id": 5321, - "planId": 92, + "planId": 91, "cardId": 11232, "weight": 300 }, { "id": 5322, - "planId": 92, + "planId": 91, "cardId": 11242, "weight": 300 }, { "id": 5323, - "planId": 92, + "planId": 91, "cardId": 11252, "weight": 300 }, { "id": 5324, - "planId": 92, + "planId": 91, "cardId": 11262, "weight": 300 }, { "id": 5325, - "planId": 92, + "planId": 91, "cardId": 14211, "weight": 300 }, { "id": 5326, - "planId": 92, + "planId": 91, "cardId": 14221, "weight": 300 }, { "id": 5327, - "planId": 92, + "planId": 91, "cardId": 14231, "weight": 300 }, { "id": 5328, - "planId": 92, + "planId": 91, "cardId": 14241, "weight": 300 }, { "id": 5329, - "planId": 92, + "planId": 91, "cardId": 14251, "weight": 300 }, { "id": 5330, - "planId": 92, + "planId": 91, "cardId": 14261, "weight": 300 }, { "id": 5331, - "planId": 92, + "planId": 91, "cardId": 14212, "weight": 300 }, { "id": 5332, - "planId": 92, + "planId": 91, "cardId": 14222, "weight": 300 }, { "id": 5333, - "planId": 92, + "planId": 91, "cardId": 14232, "weight": 300 }, { "id": 5334, - "planId": 92, + "planId": 91, "cardId": 14242, "weight": 300 }, { "id": 5335, - "planId": 92, + "planId": 91, "cardId": 14252, "weight": 300 }, { "id": 5336, - "planId": 92, + "planId": 91, "cardId": 14262, "weight": 300 }, { "id": 5337, - "planId": 92, + "planId": 91, "cardId": 17211, "weight": 300 }, { "id": 5338, - "planId": 92, + "planId": 91, "cardId": 17221, "weight": 300 }, { "id": 5339, - "planId": 92, + "planId": 91, "cardId": 17231, "weight": 300 }, { "id": 5340, - "planId": 92, + "planId": 91, "cardId": 17241, "weight": 300 }, { "id": 5341, - "planId": 92, + "planId": 91, "cardId": 17251, "weight": 300 }, { "id": 5342, - "planId": 92, + "planId": 91, "cardId": 17261, "weight": 300 }, { "id": 5343, - "planId": 92, + "planId": 91, "cardId": 17212, "weight": 300 }, { "id": 5344, - "planId": 92, + "planId": 91, "cardId": 17222, "weight": 300 }, { "id": 5345, - "planId": 92, + "planId": 91, "cardId": 17232, "weight": 300 }, { "id": 5346, - "planId": 92, + "planId": 91, "cardId": 17242, "weight": 300 }, { "id": 5347, - "planId": 92, + "planId": 91, "cardId": 17252, "weight": 300 }, { "id": 5348, - "planId": 92, + "planId": 91, "cardId": 17262, "weight": 300 }, { "id": 5349, - "planId": 92, + "planId": 91, "cardId": 15211, "weight": 300 }, { "id": 5350, - "planId": 92, + "planId": 91, "cardId": 15221, "weight": 300 }, { "id": 5351, - "planId": 92, + "planId": 91, "cardId": 15231, "weight": 300 }, { "id": 5352, - "planId": 92, + "planId": 91, "cardId": 15241, "weight": 300 }, { "id": 5353, - "planId": 92, + "planId": 91, "cardId": 15251, "weight": 300 }, { "id": 5354, - "planId": 92, + "planId": 91, "cardId": 15261, "weight": 300 }, { "id": 5355, - "planId": 92, + "planId": 91, "cardId": 15212, "weight": 300 }, { "id": 5356, - "planId": 92, + "planId": 91, "cardId": 15222, "weight": 300 }, { "id": 5357, - "planId": 92, + "planId": 91, "cardId": 15232, "weight": 300 }, { "id": 5358, - "planId": 92, + "planId": 91, "cardId": 15242, "weight": 300 }, { "id": 5359, - "planId": 92, + "planId": 91, "cardId": 15252, "weight": 300 }, { "id": 5360, - "planId": 92, + "planId": 91, "cardId": 15262, "weight": 300 }, { "id": 5361, - "planId": 92, + "planId": 91, "cardId": 18211, "weight": 300 }, { "id": 5362, - "planId": 92, + "planId": 91, "cardId": 18221, "weight": 300 }, { "id": 5363, - "planId": 92, + "planId": 91, "cardId": 18231, "weight": 300 }, { "id": 5364, - "planId": 92, + "planId": 91, "cardId": 18241, "weight": 300 }, { "id": 5365, - "planId": 92, + "planId": 91, "cardId": 18251, "weight": 300 }, { "id": 5366, - "planId": 92, + "planId": 91, "cardId": 18261, "weight": 300 }, { "id": 5367, - "planId": 92, + "planId": 91, "cardId": 18212, "weight": 300 }, { "id": 5368, - "planId": 92, + "planId": 91, "cardId": 18222, "weight": 300 }, { "id": 5369, - "planId": 92, + "planId": 91, "cardId": 18232, "weight": 300 }, { "id": 5370, - "planId": 92, + "planId": 91, "cardId": 18242, "weight": 300 }, { "id": 5371, - "planId": 92, + "planId": 91, "cardId": 18252, "weight": 300 }, { "id": 5372, - "planId": 92, + "planId": 91, "cardId": 18262, "weight": 300 }, { "id": 5373, - "planId": 92, + "planId": 91, "cardId": 13211, "weight": 300 }, { "id": 5374, - "planId": 92, + "planId": 91, "cardId": 13221, "weight": 300 }, { "id": 5375, - "planId": 92, + "planId": 91, "cardId": 13231, "weight": 300 }, { "id": 5376, - "planId": 92, + "planId": 91, "cardId": 13241, "weight": 300 }, { "id": 5377, - "planId": 92, + "planId": 91, "cardId": 13251, "weight": 300 }, { "id": 5378, - "planId": 92, + "planId": 91, "cardId": 13261, "weight": 300 }, { "id": 5379, - "planId": 92, + "planId": 91, "cardId": 13212, "weight": 300 }, { "id": 5380, - "planId": 92, + "planId": 91, "cardId": 13222, "weight": 300 }, { "id": 5381, - "planId": 92, + "planId": 91, "cardId": 13232, "weight": 300 }, { "id": 5382, - "planId": 92, + "planId": 91, "cardId": 13242, "weight": 300 }, { "id": 5383, - "planId": 92, + "planId": 91, "cardId": 13252, "weight": 300 }, { "id": 5384, - "planId": 92, + "planId": 91, "cardId": 13262, "weight": 300 }, { "id": 5385, - "planId": 92, + "planId": 91, "cardId": 12211, "weight": 300 }, { "id": 5386, - "planId": 92, + "planId": 91, "cardId": 12221, "weight": 300 }, { "id": 5387, - "planId": 92, + "planId": 91, "cardId": 12231, "weight": 300 }, { "id": 5388, - "planId": 92, + "planId": 91, "cardId": 12241, "weight": 300 }, { "id": 5389, - "planId": 92, + "planId": 91, "cardId": 12251, "weight": 300 }, { "id": 5390, - "planId": 92, + "planId": 91, "cardId": 12261, "weight": 300 }, { "id": 5391, - "planId": 92, + "planId": 91, "cardId": 12212, "weight": 300 }, { "id": 5392, - "planId": 92, + "planId": 91, "cardId": 12222, "weight": 300 }, { "id": 5393, - "planId": 92, + "planId": 91, "cardId": 12232, "weight": 300 }, { "id": 5394, - "planId": 92, + "planId": 91, "cardId": 12242, "weight": 300 }, { "id": 5395, - "planId": 92, + "planId": 91, "cardId": 12252, "weight": 300 }, { "id": 5396, - "planId": 92, + "planId": 91, "cardId": 12262, "weight": 300 }, { "id": 5397, - "planId": 92, + "planId": 91, "cardId": 16211, "weight": 300 }, { "id": 5398, - "planId": 92, + "planId": 91, "cardId": 16221, "weight": 300 }, { "id": 5399, - "planId": 92, + "planId": 91, "cardId": 16231, "weight": 300 }, { "id": 5400, - "planId": 92, + "planId": 91, "cardId": 16241, "weight": 300 }, { "id": 5401, - "planId": 92, + "planId": 91, "cardId": 16251, "weight": 300 }, { "id": 5402, - "planId": 92, + "planId": 91, "cardId": 16261, "weight": 300 }, { "id": 5403, - "planId": 92, + "planId": 91, "cardId": 16212, "weight": 300 }, { "id": 5404, - "planId": 92, + "planId": 91, "cardId": 16222, "weight": 300 }, { "id": 5405, - "planId": 92, + "planId": 91, "cardId": 16232, "weight": 300 }, { "id": 5406, - "planId": 92, + "planId": 91, "cardId": 16242, "weight": 300 }, { "id": 5407, - "planId": 92, + "planId": 91, "cardId": 16252, "weight": 300 }, { "id": 5408, - "planId": 92, + "planId": 91, "cardId": 16262, "weight": 300 }, { "id": 5409, - "planId": 93, + "planId": 91, "cardId": 11311, "weight": 50 }, { "id": 5410, - "planId": 93, + "planId": 91, "cardId": 11321, "weight": 50 }, { "id": 5411, - "planId": 93, + "planId": 91, "cardId": 11331, "weight": 50 }, { "id": 5412, - "planId": 93, + "planId": 91, "cardId": 11341, "weight": 50 }, { "id": 5413, - "planId": 93, + "planId": 91, "cardId": 11312, "weight": 50 }, { "id": 5414, - "planId": 93, + "planId": 91, "cardId": 11322, "weight": 50 }, { "id": 5415, - "planId": 93, + "planId": 91, "cardId": 11332, "weight": 50 }, { "id": 5416, - "planId": 93, + "planId": 91, "cardId": 11342, "weight": 50 }, { "id": 5417, - "planId": 93, + "planId": 91, "cardId": 14311, "weight": 50 }, { "id": 5418, - "planId": 93, + "planId": 91, "cardId": 14321, "weight": 50 }, { "id": 5419, - "planId": 93, + "planId": 91, "cardId": 14331, "weight": 50 }, { "id": 5420, - "planId": 93, + "planId": 91, "cardId": 14341, "weight": 50 }, { "id": 5421, - "planId": 93, + "planId": 91, "cardId": 14312, "weight": 50 }, { "id": 5422, - "planId": 93, + "planId": 91, "cardId": 14322, "weight": 50 }, { "id": 5423, - "planId": 93, + "planId": 91, "cardId": 14332, "weight": 50 }, { "id": 5424, - "planId": 93, + "planId": 91, "cardId": 14342, "weight": 50 }, { "id": 5425, - "planId": 93, + "planId": 91, "cardId": 17311, "weight": 50 }, { "id": 5426, - "planId": 93, + "planId": 91, "cardId": 17321, "weight": 50 }, { "id": 5427, - "planId": 93, + "planId": 91, "cardId": 17331, "weight": 50 }, { "id": 5428, - "planId": 93, + "planId": 91, "cardId": 17341, "weight": 50 }, { "id": 5429, - "planId": 93, + "planId": 91, "cardId": 17312, "weight": 50 }, { "id": 5430, - "planId": 93, + "planId": 91, "cardId": 17322, "weight": 50 }, { "id": 5431, - "planId": 93, + "planId": 91, "cardId": 17332, "weight": 50 }, { "id": 5432, - "planId": 93, + "planId": 91, "cardId": 17342, "weight": 50 }, { "id": 5433, - "planId": 93, + "planId": 91, "cardId": 15311, "weight": 50 }, { "id": 5434, - "planId": 93, + "planId": 91, "cardId": 15321, "weight": 50 }, { "id": 5435, - "planId": 93, + "planId": 91, "cardId": 15331, "weight": 50 }, { "id": 5436, - "planId": 93, + "planId": 91, "cardId": 15341, "weight": 50 }, { "id": 5437, - "planId": 93, + "planId": 91, "cardId": 15312, "weight": 50 }, { "id": 5438, - "planId": 93, + "planId": 91, "cardId": 15322, "weight": 50 }, { "id": 5439, - "planId": 93, + "planId": 91, "cardId": 15332, "weight": 50 }, { "id": 5440, - "planId": 93, + "planId": 91, "cardId": 15342, "weight": 50 }, { "id": 5441, - "planId": 93, + "planId": 91, "cardId": 18311, "weight": 50 }, { "id": 5442, - "planId": 93, + "planId": 91, "cardId": 18321, "weight": 50 }, { "id": 5443, - "planId": 93, + "planId": 91, "cardId": 18331, "weight": 50 }, { "id": 5444, - "planId": 93, + "planId": 91, "cardId": 18341, "weight": 50 }, { "id": 5445, - "planId": 93, + "planId": 91, "cardId": 18312, "weight": 50 }, { "id": 5446, - "planId": 93, + "planId": 91, "cardId": 18322, "weight": 50 }, { "id": 5447, - "planId": 93, + "planId": 91, "cardId": 18332, "weight": 50 }, { "id": 5448, - "planId": 93, + "planId": 91, "cardId": 18342, "weight": 50 }, { "id": 5449, - "planId": 93, + "planId": 91, "cardId": 13311, "weight": 50 }, { "id": 5450, - "planId": 93, + "planId": 91, "cardId": 13321, "weight": 50 }, { "id": 5451, - "planId": 93, + "planId": 91, "cardId": 13331, "weight": 50 }, { "id": 5452, - "planId": 93, + "planId": 91, "cardId": 13341, "weight": 50 }, { "id": 5453, - "planId": 93, + "planId": 91, "cardId": 13312, "weight": 50 }, { "id": 5454, - "planId": 93, + "planId": 91, "cardId": 13322, "weight": 50 }, { "id": 5455, - "planId": 93, + "planId": 91, "cardId": 13332, "weight": 50 }, { "id": 5456, - "planId": 93, + "planId": 91, "cardId": 13342, "weight": 50 }, { "id": 5457, - "planId": 93, + "planId": 91, "cardId": 12311, "weight": 50 }, { "id": 5458, - "planId": 93, + "planId": 91, "cardId": 12321, "weight": 50 }, { "id": 5459, - "planId": 93, + "planId": 91, "cardId": 12331, "weight": 50 }, { "id": 5460, - "planId": 93, + "planId": 91, "cardId": 12341, "weight": 50 }, { "id": 5461, - "planId": 93, + "planId": 91, "cardId": 12312, "weight": 50 }, { "id": 5462, - "planId": 93, + "planId": 91, "cardId": 12322, "weight": 50 }, { "id": 5463, - "planId": 93, + "planId": 91, "cardId": 12332, "weight": 50 }, { "id": 5464, - "planId": 93, + "planId": 91, "cardId": 12342, "weight": 50 }, { "id": 5465, - "planId": 93, + "planId": 91, "cardId": 16311, "weight": 50 }, { "id": 5466, - "planId": 93, + "planId": 91, "cardId": 16321, "weight": 50 }, { "id": 5467, - "planId": 93, + "planId": 91, "cardId": 16331, "weight": 50 }, { "id": 5468, - "planId": 93, + "planId": 91, "cardId": 16341, "weight": 50 }, { "id": 5469, - "planId": 93, + "planId": 91, "cardId": 16312, "weight": 50 }, { "id": 5470, - "planId": 93, + "planId": 91, "cardId": 16322, "weight": 50 }, { "id": 5471, - "planId": 93, + "planId": 91, "cardId": 16332, "weight": 50 }, { "id": 5472, - "planId": 93, + "planId": 91, "cardId": 16342, "weight": 50 }, { "id": 5473, - "planId": 93, + "planId": 92, "cardId": 11111, - "weight": 200 + "weight": 250 }, { "id": 5474, - "planId": 93, + "planId": 92, "cardId": 11121, - "weight": 200 + "weight": 250 }, { "id": 5475, - "planId": 93, + "planId": 92, "cardId": 11131, - "weight": 200 + "weight": 250 }, { "id": 5476, - "planId": 93, + "planId": 92, "cardId": 11141, - "weight": 200 + "weight": 250 }, { "id": 5477, - "planId": 93, + "planId": 92, "cardId": 11151, - "weight": 200 + "weight": 250 }, { "id": 5478, - "planId": 93, + "planId": 92, "cardId": 11161, - "weight": 200 + "weight": 250 }, { "id": 5479, - "planId": 93, + "planId": 92, "cardId": 11171, - "weight": 200 + "weight": 250 }, { "id": 5480, - "planId": 93, + "planId": 92, "cardId": 11181, - "weight": 200 + "weight": 250 }, { "id": 5481, - "planId": 93, + "planId": 92, "cardId": 11112, - "weight": 200 + "weight": 250 }, { "id": 5482, - "planId": 93, + "planId": 92, "cardId": 11122, - "weight": 200 + "weight": 250 }, { "id": 5483, - "planId": 93, + "planId": 92, "cardId": 11132, - "weight": 200 + "weight": 250 }, { "id": 5484, - "planId": 93, + "planId": 92, "cardId": 11142, - "weight": 200 + "weight": 250 }, { "id": 5485, - "planId": 93, + "planId": 92, "cardId": 11152, - "weight": 200 + "weight": 250 }, { "id": 5486, - "planId": 93, + "planId": 92, "cardId": 11162, - "weight": 200 + "weight": 250 }, { "id": 5487, - "planId": 93, + "planId": 92, "cardId": 11172, - "weight": 200 + "weight": 250 }, { "id": 5488, - "planId": 93, + "planId": 92, "cardId": 11182, - "weight": 200 + "weight": 250 }, { "id": 5489, - "planId": 93, + "planId": 92, "cardId": 14111, - "weight": 200 + "weight": 250 }, { "id": 5490, - "planId": 93, + "planId": 92, "cardId": 14121, - "weight": 200 + "weight": 250 }, { "id": 5491, - "planId": 93, + "planId": 92, "cardId": 14131, - "weight": 200 + "weight": 250 }, { "id": 5492, - "planId": 93, + "planId": 92, "cardId": 14141, - "weight": 200 + "weight": 250 }, { "id": 5493, - "planId": 93, + "planId": 92, "cardId": 14151, - "weight": 200 + "weight": 250 }, { "id": 5494, - "planId": 93, + "planId": 92, "cardId": 14161, - "weight": 200 + "weight": 250 }, { "id": 5495, - "planId": 93, + "planId": 92, "cardId": 14171, - "weight": 200 + "weight": 250 }, { "id": 5496, - "planId": 93, + "planId": 92, "cardId": 14181, - "weight": 200 + "weight": 250 }, { "id": 5497, - "planId": 93, + "planId": 92, "cardId": 14112, - "weight": 200 + "weight": 250 }, { "id": 5498, - "planId": 93, + "planId": 92, "cardId": 14122, - "weight": 200 + "weight": 250 }, { "id": 5499, - "planId": 93, + "planId": 92, "cardId": 14132, - "weight": 200 + "weight": 250 }, { "id": 5500, - "planId": 93, + "planId": 92, "cardId": 14142, - "weight": 200 + "weight": 250 }, { "id": 5501, - "planId": 93, + "planId": 92, "cardId": 14152, - "weight": 200 + "weight": 250 }, { "id": 5502, - "planId": 93, + "planId": 92, "cardId": 14162, - "weight": 200 + "weight": 250 }, { "id": 5503, - "planId": 93, + "planId": 92, "cardId": 14172, - "weight": 200 + "weight": 250 }, { "id": 5504, - "planId": 93, + "planId": 92, "cardId": 14182, - "weight": 200 + "weight": 250 }, { "id": 5505, - "planId": 93, + "planId": 92, "cardId": 17111, - "weight": 200 + "weight": 250 }, { "id": 5506, - "planId": 93, + "planId": 92, "cardId": 17121, - "weight": 200 + "weight": 250 }, { "id": 5507, - "planId": 93, + "planId": 92, "cardId": 17131, - "weight": 200 + "weight": 250 }, { "id": 5508, - "planId": 93, + "planId": 92, "cardId": 17141, - "weight": 200 + "weight": 250 }, { "id": 5509, - "planId": 93, + "planId": 92, "cardId": 17151, - "weight": 200 + "weight": 250 }, { "id": 5510, - "planId": 93, + "planId": 92, "cardId": 17161, - "weight": 200 + "weight": 250 }, { "id": 5511, - "planId": 93, + "planId": 92, "cardId": 17171, - "weight": 200 + "weight": 250 }, { "id": 5512, - "planId": 93, + "planId": 92, "cardId": 17181, - "weight": 200 + "weight": 250 }, { "id": 5513, - "planId": 93, + "planId": 92, "cardId": 17112, - "weight": 200 + "weight": 250 }, { "id": 5514, - "planId": 93, + "planId": 92, "cardId": 17122, - "weight": 200 + "weight": 250 }, { "id": 5515, - "planId": 93, + "planId": 92, "cardId": 17132, - "weight": 200 + "weight": 250 }, { "id": 5516, - "planId": 93, + "planId": 92, "cardId": 17172, - "weight": 200 + "weight": 250 }, { "id": 5517, - "planId": 93, + "planId": 92, "cardId": 17152, - "weight": 200 + "weight": 250 }, { "id": 5518, - "planId": 93, + "planId": 92, "cardId": 17162, - "weight": 200 + "weight": 250 }, { "id": 5519, - "planId": 93, + "planId": 92, "cardId": 17172, - "weight": 200 + "weight": 250 }, { "id": 5520, - "planId": 93, + "planId": 92, "cardId": 17182, - "weight": 200 + "weight": 250 }, { "id": 5521, - "planId": 93, + "planId": 92, "cardId": 15111, - "weight": 200 + "weight": 250 }, { "id": 5522, - "planId": 93, + "planId": 92, "cardId": 15121, - "weight": 200 + "weight": 250 }, { "id": 5523, - "planId": 93, + "planId": 92, "cardId": 15131, - "weight": 200 + "weight": 250 }, { "id": 5524, - "planId": 93, + "planId": 92, "cardId": 15141, - "weight": 200 + "weight": 250 }, { "id": 5525, - "planId": 93, + "planId": 92, "cardId": 15151, - "weight": 200 + "weight": 250 }, { "id": 5526, - "planId": 93, + "planId": 92, "cardId": 15161, - "weight": 200 + "weight": 250 }, { "id": 5527, - "planId": 93, + "planId": 92, "cardId": 15171, - "weight": 200 + "weight": 250 }, { "id": 5528, - "planId": 93, + "planId": 92, "cardId": 15181, - "weight": 200 + "weight": 250 }, { "id": 5529, - "planId": 93, + "planId": 92, "cardId": 15112, - "weight": 200 + "weight": 250 }, { "id": 5530, - "planId": 93, + "planId": 92, "cardId": 15122, - "weight": 200 + "weight": 250 }, { "id": 5531, - "planId": 93, + "planId": 92, "cardId": 15132, - "weight": 200 + "weight": 250 }, { "id": 5532, - "planId": 93, + "planId": 92, "cardId": 15142, - "weight": 200 + "weight": 250 }, { "id": 5533, - "planId": 93, + "planId": 92, "cardId": 15152, - "weight": 200 + "weight": 250 }, { "id": 5534, - "planId": 93, + "planId": 92, "cardId": 15162, - "weight": 200 + "weight": 250 }, { "id": 5535, - "planId": 93, + "planId": 92, "cardId": 15172, - "weight": 200 + "weight": 250 }, { "id": 5536, - "planId": 93, + "planId": 92, "cardId": 15182, - "weight": 200 + "weight": 250 }, { "id": 5537, - "planId": 93, + "planId": 92, "cardId": 18111, - "weight": 200 + "weight": 250 }, { "id": 5538, - "planId": 93, + "planId": 92, "cardId": 18121, - "weight": 200 + "weight": 250 }, { "id": 5539, - "planId": 93, + "planId": 92, "cardId": 18131, - "weight": 200 + "weight": 250 }, { "id": 5540, - "planId": 93, + "planId": 92, "cardId": 18141, - "weight": 200 + "weight": 250 }, { "id": 5541, - "planId": 93, + "planId": 92, "cardId": 18151, - "weight": 200 + "weight": 250 }, { "id": 5542, - "planId": 93, + "planId": 92, "cardId": 18161, - "weight": 200 + "weight": 250 }, { "id": 5543, - "planId": 93, + "planId": 92, "cardId": 18171, - "weight": 200 + "weight": 250 }, { "id": 5544, - "planId": 93, + "planId": 92, "cardId": 18181, - "weight": 200 + "weight": 250 }, { "id": 5545, - "planId": 93, + "planId": 92, "cardId": 18112, - "weight": 200 + "weight": 250 }, { "id": 5546, - "planId": 93, + "planId": 92, "cardId": 18122, - "weight": 200 + "weight": 250 }, { "id": 5547, - "planId": 93, + "planId": 92, "cardId": 18132, - "weight": 200 + "weight": 250 }, { "id": 5548, - "planId": 93, + "planId": 92, "cardId": 18142, - "weight": 200 + "weight": 250 }, { "id": 5549, - "planId": 93, + "planId": 92, "cardId": 18152, - "weight": 200 + "weight": 250 }, { "id": 5550, - "planId": 93, + "planId": 92, "cardId": 18162, - "weight": 200 + "weight": 250 }, { "id": 5551, - "planId": 93, + "planId": 92, "cardId": 18172, - "weight": 200 + "weight": 250 }, { "id": 5552, - "planId": 93, + "planId": 92, "cardId": 18182, - "weight": 200 + "weight": 250 }, { "id": 5553, - "planId": 93, + "planId": 92, "cardId": 13111, - "weight": 200 + "weight": 250 }, { "id": 5554, - "planId": 93, + "planId": 92, "cardId": 13121, - "weight": 200 + "weight": 250 }, { "id": 5555, - "planId": 93, + "planId": 92, "cardId": 13131, - "weight": 200 + "weight": 250 }, { "id": 5556, - "planId": 93, + "planId": 92, "cardId": 13141, - "weight": 200 + "weight": 250 }, { "id": 5557, - "planId": 93, + "planId": 92, "cardId": 13151, - "weight": 200 + "weight": 250 }, { "id": 5558, - "planId": 93, + "planId": 92, "cardId": 13161, - "weight": 200 + "weight": 250 }, { "id": 5559, - "planId": 93, + "planId": 92, "cardId": 13171, - "weight": 200 + "weight": 250 }, { "id": 5560, - "planId": 93, + "planId": 92, "cardId": 13181, - "weight": 200 + "weight": 250 }, { "id": 5561, - "planId": 93, + "planId": 92, "cardId": 13112, - "weight": 200 + "weight": 250 }, { "id": 5562, - "planId": 93, + "planId": 92, "cardId": 13122, - "weight": 200 + "weight": 250 }, { "id": 5563, - "planId": 93, + "planId": 92, "cardId": 13132, - "weight": 200 + "weight": 250 }, { "id": 5564, - "planId": 93, + "planId": 92, "cardId": 13142, - "weight": 200 + "weight": 250 }, { "id": 5565, - "planId": 93, + "planId": 92, "cardId": 13152, - "weight": 200 + "weight": 250 }, { "id": 5566, - "planId": 93, + "planId": 92, "cardId": 13162, - "weight": 200 + "weight": 250 }, { "id": 5567, - "planId": 93, + "planId": 92, "cardId": 13172, - "weight": 200 + "weight": 250 }, { "id": 5568, - "planId": 93, + "planId": 92, "cardId": 13182, - "weight": 200 + "weight": 250 }, { "id": 5569, - "planId": 93, + "planId": 92, "cardId": 12111, - "weight": 200 + "weight": 250 }, { "id": 5570, - "planId": 93, + "planId": 92, "cardId": 12121, - "weight": 200 + "weight": 250 }, { "id": 5571, - "planId": 93, + "planId": 92, "cardId": 12131, - "weight": 200 + "weight": 250 }, { "id": 5572, - "planId": 93, + "planId": 92, "cardId": 12141, - "weight": 200 + "weight": 250 }, { "id": 5573, - "planId": 93, + "planId": 92, "cardId": 12151, - "weight": 200 + "weight": 250 }, { "id": 5574, - "planId": 93, + "planId": 92, "cardId": 12161, - "weight": 200 + "weight": 250 }, { "id": 5575, - "planId": 93, + "planId": 92, "cardId": 12171, - "weight": 200 + "weight": 250 }, { "id": 5576, - "planId": 93, + "planId": 92, "cardId": 12181, - "weight": 200 + "weight": 250 }, { "id": 5577, - "planId": 93, + "planId": 92, "cardId": 12112, - "weight": 200 + "weight": 250 }, { "id": 5578, - "planId": 93, + "planId": 92, "cardId": 12122, - "weight": 200 + "weight": 250 }, { "id": 5579, - "planId": 93, + "planId": 92, "cardId": 12132, - "weight": 200 + "weight": 250 }, { "id": 5580, - "planId": 93, + "planId": 92, "cardId": 12142, - "weight": 200 + "weight": 250 }, { "id": 5581, - "planId": 93, + "planId": 92, "cardId": 12152, - "weight": 200 + "weight": 250 }, { "id": 5582, - "planId": 93, + "planId": 92, "cardId": 12162, - "weight": 200 + "weight": 250 }, { "id": 5583, - "planId": 93, + "planId": 92, "cardId": 12172, - "weight": 200 + "weight": 250 }, { "id": 5584, - "planId": 93, + "planId": 92, "cardId": 12182, - "weight": 200 + "weight": 250 }, { "id": 5585, - "planId": 93, + "planId": 92, "cardId": 16111, - "weight": 200 + "weight": 250 }, { "id": 5586, - "planId": 93, + "planId": 92, "cardId": 16121, - "weight": 200 + "weight": 250 }, { "id": 5587, - "planId": 93, + "planId": 92, "cardId": 16131, - "weight": 200 + "weight": 250 }, { "id": 5588, - "planId": 93, + "planId": 92, "cardId": 16141, - "weight": 200 + "weight": 250 }, { "id": 5589, - "planId": 93, + "planId": 92, "cardId": 16151, - "weight": 200 + "weight": 250 }, { "id": 5590, - "planId": 93, + "planId": 92, "cardId": 16161, - "weight": 200 + "weight": 250 }, { "id": 5591, - "planId": 93, + "planId": 92, "cardId": 16171, - "weight": 200 + "weight": 250 }, { "id": 5592, - "planId": 93, + "planId": 92, "cardId": 16181, - "weight": 200 + "weight": 250 }, { "id": 5593, - "planId": 93, + "planId": 92, "cardId": 16112, - "weight": 200 + "weight": 250 }, { "id": 5594, - "planId": 93, + "planId": 92, "cardId": 16122, - "weight": 200 + "weight": 250 }, { "id": 5595, - "planId": 93, + "planId": 92, "cardId": 16132, - "weight": 200 + "weight": 250 }, { "id": 5596, - "planId": 93, + "planId": 92, "cardId": 16142, - "weight": 200 + "weight": 250 }, { "id": 5597, - "planId": 93, + "planId": 92, "cardId": 16152, - "weight": 200 + "weight": 250 }, { "id": 5598, - "planId": 93, + "planId": 92, "cardId": 16162, - "weight": 200 + "weight": 250 }, { "id": 5599, - "planId": 93, + "planId": 92, "cardId": 16172, - "weight": 200 + "weight": 250 }, { "id": 5600, - "planId": 93, + "planId": 92, "cardId": 16182, - "weight": 200 + "weight": 250 }, { "id": 5601, - "planId": 93, + "planId": 92, "cardId": 11211, "weight": 300 }, { "id": 5602, - "planId": 93, + "planId": 92, "cardId": 11221, "weight": 300 }, { "id": 5603, - "planId": 93, + "planId": 92, "cardId": 11231, "weight": 300 }, { "id": 5604, - "planId": 93, + "planId": 92, "cardId": 11241, "weight": 300 }, { "id": 5605, - "planId": 93, + "planId": 92, "cardId": 11251, "weight": 300 }, { "id": 5606, - "planId": 93, + "planId": 92, "cardId": 11261, "weight": 300 }, { "id": 5607, - "planId": 93, + "planId": 92, "cardId": 11212, "weight": 300 }, { "id": 5608, - "planId": 93, + "planId": 92, "cardId": 11222, "weight": 300 }, { "id": 5609, - "planId": 93, + "planId": 92, "cardId": 11232, "weight": 300 }, { "id": 5610, - "planId": 93, + "planId": 92, "cardId": 11242, "weight": 300 }, { "id": 5611, - "planId": 93, + "planId": 92, "cardId": 11252, "weight": 300 }, { "id": 5612, - "planId": 93, + "planId": 92, "cardId": 11262, "weight": 300 }, { "id": 5613, - "planId": 93, + "planId": 92, "cardId": 14211, "weight": 300 }, { "id": 5614, - "planId": 93, + "planId": 92, "cardId": 14221, "weight": 300 }, { "id": 5615, - "planId": 93, + "planId": 92, "cardId": 14231, "weight": 300 }, { "id": 5616, - "planId": 93, + "planId": 92, "cardId": 14241, "weight": 300 }, { "id": 5617, - "planId": 93, + "planId": 92, "cardId": 14251, "weight": 300 }, { "id": 5618, - "planId": 93, + "planId": 92, "cardId": 14261, "weight": 300 }, { "id": 5619, - "planId": 93, + "planId": 92, "cardId": 14212, "weight": 300 }, { "id": 5620, - "planId": 93, + "planId": 92, "cardId": 14222, "weight": 300 }, { "id": 5621, - "planId": 93, + "planId": 92, "cardId": 14232, "weight": 300 }, { "id": 5622, - "planId": 93, + "planId": 92, "cardId": 14242, "weight": 300 }, { "id": 5623, - "planId": 93, + "planId": 92, "cardId": 14252, "weight": 300 }, { "id": 5624, - "planId": 93, + "planId": 92, "cardId": 14262, "weight": 300 }, { "id": 5625, - "planId": 93, + "planId": 92, "cardId": 17211, "weight": 300 }, { "id": 5626, - "planId": 93, + "planId": 92, "cardId": 17221, "weight": 300 }, { "id": 5627, - "planId": 93, + "planId": 92, "cardId": 17231, "weight": 300 }, { "id": 5628, - "planId": 93, + "planId": 92, "cardId": 17241, "weight": 300 }, { "id": 5629, - "planId": 93, + "planId": 92, "cardId": 17251, "weight": 300 }, { "id": 5630, - "planId": 93, + "planId": 92, "cardId": 17261, "weight": 300 }, { "id": 5631, - "planId": 93, + "planId": 92, "cardId": 17212, "weight": 300 }, { "id": 5632, - "planId": 93, + "planId": 92, "cardId": 17222, "weight": 300 }, { "id": 5633, - "planId": 93, + "planId": 92, "cardId": 17232, "weight": 300 }, { "id": 5634, - "planId": 93, + "planId": 92, "cardId": 17242, "weight": 300 }, { "id": 5635, - "planId": 93, + "planId": 92, "cardId": 17252, "weight": 300 }, { "id": 5636, - "planId": 93, + "planId": 92, "cardId": 17262, "weight": 300 }, { "id": 5637, - "planId": 93, + "planId": 92, "cardId": 15211, "weight": 300 }, { "id": 5638, - "planId": 93, + "planId": 92, "cardId": 15221, "weight": 300 }, { "id": 5639, - "planId": 93, + "planId": 92, "cardId": 15231, "weight": 300 }, { "id": 5640, - "planId": 93, + "planId": 92, "cardId": 15241, "weight": 300 }, { "id": 5641, - "planId": 93, + "planId": 92, "cardId": 15251, "weight": 300 }, { "id": 5642, - "planId": 93, + "planId": 92, "cardId": 15261, "weight": 300 }, { "id": 5643, - "planId": 93, + "planId": 92, "cardId": 15212, "weight": 300 }, { "id": 5644, - "planId": 93, + "planId": 92, "cardId": 15222, "weight": 300 }, { "id": 5645, - "planId": 93, + "planId": 92, "cardId": 15232, "weight": 300 }, { "id": 5646, - "planId": 93, + "planId": 92, "cardId": 15242, "weight": 300 }, { "id": 5647, - "planId": 93, + "planId": 92, "cardId": 15252, "weight": 300 }, { "id": 5648, - "planId": 93, + "planId": 92, "cardId": 15262, "weight": 300 }, { "id": 5649, - "planId": 93, + "planId": 92, "cardId": 18211, "weight": 300 }, { "id": 5650, - "planId": 93, + "planId": 92, "cardId": 18221, "weight": 300 }, { "id": 5651, - "planId": 93, + "planId": 92, "cardId": 18231, "weight": 300 }, { "id": 5652, - "planId": 93, + "planId": 92, "cardId": 18241, "weight": 300 }, { "id": 5653, - "planId": 93, + "planId": 92, "cardId": 18251, "weight": 300 }, { "id": 5654, - "planId": 93, + "planId": 92, "cardId": 18261, "weight": 300 }, { "id": 5655, - "planId": 93, + "planId": 92, "cardId": 18212, "weight": 300 }, { "id": 5656, - "planId": 93, + "planId": 92, "cardId": 18222, "weight": 300 }, { "id": 5657, - "planId": 93, + "planId": 92, "cardId": 18232, "weight": 300 }, { "id": 5658, - "planId": 93, + "planId": 92, "cardId": 18242, "weight": 300 }, { "id": 5659, - "planId": 93, + "planId": 92, "cardId": 18252, "weight": 300 }, { "id": 5660, - "planId": 93, + "planId": 92, "cardId": 18262, "weight": 300 }, { "id": 5661, - "planId": 93, + "planId": 92, "cardId": 13211, "weight": 300 }, { "id": 5662, - "planId": 93, + "planId": 92, "cardId": 13221, "weight": 300 }, { "id": 5663, - "planId": 93, + "planId": 92, "cardId": 13231, "weight": 300 }, { "id": 5664, - "planId": 93, + "planId": 92, "cardId": 13241, "weight": 300 }, { "id": 5665, - "planId": 93, + "planId": 92, "cardId": 13251, "weight": 300 }, { "id": 5666, - "planId": 93, + "planId": 92, "cardId": 13261, "weight": 300 }, { "id": 5667, - "planId": 93, + "planId": 92, "cardId": 13212, "weight": 300 }, { "id": 5668, - "planId": 93, + "planId": 92, "cardId": 13222, "weight": 300 }, { "id": 5669, - "planId": 93, + "planId": 92, "cardId": 13232, "weight": 300 }, { "id": 5670, - "planId": 93, + "planId": 92, "cardId": 13242, "weight": 300 }, { "id": 5671, - "planId": 93, + "planId": 92, "cardId": 13252, "weight": 300 }, { "id": 5672, - "planId": 93, + "planId": 92, "cardId": 13262, "weight": 300 }, { "id": 5673, - "planId": 93, + "planId": 92, "cardId": 12211, "weight": 300 }, { "id": 5674, - "planId": 93, + "planId": 92, "cardId": 12221, "weight": 300 }, { "id": 5675, - "planId": 93, + "planId": 92, "cardId": 12231, "weight": 300 }, { "id": 5676, - "planId": 93, + "planId": 92, "cardId": 12241, "weight": 300 }, { "id": 5677, - "planId": 93, + "planId": 92, "cardId": 12251, "weight": 300 }, { "id": 5678, - "planId": 93, + "planId": 92, "cardId": 12261, "weight": 300 }, { "id": 5679, - "planId": 93, + "planId": 92, "cardId": 12212, "weight": 300 }, { "id": 5680, - "planId": 93, + "planId": 92, "cardId": 12222, "weight": 300 }, { "id": 5681, - "planId": 93, + "planId": 92, "cardId": 12232, "weight": 300 }, { "id": 5682, - "planId": 93, + "planId": 92, "cardId": 12242, "weight": 300 }, { "id": 5683, - "planId": 93, + "planId": 92, "cardId": 12252, "weight": 300 }, { "id": 5684, - "planId": 93, + "planId": 92, "cardId": 12262, "weight": 300 }, { "id": 5685, - "planId": 93, + "planId": 92, "cardId": 16211, "weight": 300 }, { "id": 5686, - "planId": 93, + "planId": 92, "cardId": 16221, "weight": 300 }, { "id": 5687, - "planId": 93, + "planId": 92, "cardId": 16231, "weight": 300 }, { "id": 5688, - "planId": 93, + "planId": 92, "cardId": 16241, "weight": 300 }, { "id": 5689, - "planId": 93, + "planId": 92, "cardId": 16251, "weight": 300 }, { "id": 5690, - "planId": 93, + "planId": 92, "cardId": 16261, "weight": 300 }, { "id": 5691, - "planId": 93, + "planId": 92, "cardId": 16212, "weight": 300 }, { "id": 5692, - "planId": 93, + "planId": 92, "cardId": 16222, "weight": 300 }, { "id": 5693, - "planId": 93, + "planId": 92, "cardId": 16232, "weight": 300 }, { "id": 5694, - "planId": 93, + "planId": 92, "cardId": 16242, "weight": 300 }, { "id": 5695, - "planId": 93, + "planId": 92, "cardId": 16252, "weight": 300 }, { "id": 5696, - "planId": 93, + "planId": 92, "cardId": 16262, "weight": 300 }, { "id": 5697, - "planId": 93, + "planId": 92, "cardId": 11311, - "weight": 150 + "weight": 50 }, { "id": 5698, - "planId": 93, + "planId": 92, "cardId": 11321, - "weight": 150 + "weight": 50 }, { "id": 5699, - "planId": 93, + "planId": 92, "cardId": 11331, - "weight": 150 + "weight": 50 }, { "id": 5700, - "planId": 93, + "planId": 92, "cardId": 11341, - "weight": 150 + "weight": 50 }, { "id": 5701, - "planId": 93, + "planId": 92, "cardId": 11312, - "weight": 150 + "weight": 50 }, { "id": 5702, - "planId": 93, + "planId": 92, "cardId": 11322, - "weight": 150 + "weight": 50 }, { "id": 5703, - "planId": 93, + "planId": 92, "cardId": 11332, - "weight": 150 + "weight": 50 }, { "id": 5704, - "planId": 93, + "planId": 92, "cardId": 11342, - "weight": 150 + "weight": 50 }, { "id": 5705, - "planId": 93, + "planId": 92, "cardId": 14311, - "weight": 150 + "weight": 50 }, { "id": 5706, - "planId": 93, + "planId": 92, "cardId": 14321, - "weight": 150 + "weight": 50 }, { "id": 5707, - "planId": 93, + "planId": 92, "cardId": 14331, - "weight": 150 + "weight": 50 }, { "id": 5708, - "planId": 93, + "planId": 92, "cardId": 14341, - "weight": 150 + "weight": 50 }, { "id": 5709, - "planId": 93, + "planId": 92, "cardId": 14312, - "weight": 150 + "weight": 50 }, { "id": 5710, - "planId": 93, + "planId": 92, "cardId": 14322, - "weight": 150 + "weight": 50 }, { "id": 5711, - "planId": 93, + "planId": 92, "cardId": 14332, - "weight": 150 + "weight": 50 }, { "id": 5712, - "planId": 93, + "planId": 92, "cardId": 14342, - "weight": 150 + "weight": 50 }, { "id": 5713, - "planId": 93, + "planId": 92, "cardId": 17311, - "weight": 150 + "weight": 50 }, { "id": 5714, - "planId": 93, + "planId": 92, "cardId": 17321, - "weight": 150 + "weight": 50 }, { "id": 5715, - "planId": 93, + "planId": 92, "cardId": 17331, - "weight": 150 + "weight": 50 }, { "id": 5716, - "planId": 93, + "planId": 92, "cardId": 17341, - "weight": 150 + "weight": 50 }, { "id": 5717, - "planId": 93, + "planId": 92, "cardId": 17312, - "weight": 150 + "weight": 50 }, { "id": 5718, - "planId": 93, + "planId": 92, "cardId": 17322, - "weight": 150 + "weight": 50 }, { "id": 5719, - "planId": 93, + "planId": 92, "cardId": 17332, - "weight": 150 + "weight": 50 }, { "id": 5720, - "planId": 93, + "planId": 92, "cardId": 17342, - "weight": 150 + "weight": 50 }, { "id": 5721, - "planId": 93, + "planId": 92, "cardId": 15311, - "weight": 150 + "weight": 50 }, { "id": 5722, - "planId": 93, + "planId": 92, "cardId": 15321, - "weight": 150 + "weight": 50 }, { "id": 5723, - "planId": 93, + "planId": 92, "cardId": 15331, - "weight": 150 + "weight": 50 }, { "id": 5724, - "planId": 93, + "planId": 92, "cardId": 15341, - "weight": 150 + "weight": 50 }, { "id": 5725, - "planId": 93, + "planId": 92, "cardId": 15312, - "weight": 150 + "weight": 50 }, { "id": 5726, - "planId": 93, + "planId": 92, "cardId": 15322, - "weight": 150 + "weight": 50 }, { "id": 5727, - "planId": 93, + "planId": 92, "cardId": 15332, - "weight": 150 + "weight": 50 }, { "id": 5728, - "planId": 93, + "planId": 92, "cardId": 15342, - "weight": 150 + "weight": 50 }, { "id": 5729, - "planId": 93, + "planId": 92, "cardId": 18311, - "weight": 150 + "weight": 50 }, { "id": 5730, - "planId": 93, + "planId": 92, "cardId": 18321, - "weight": 150 + "weight": 50 }, { "id": 5731, - "planId": 93, + "planId": 92, "cardId": 18331, - "weight": 150 + "weight": 50 }, { "id": 5732, - "planId": 93, + "planId": 92, "cardId": 18341, - "weight": 150 + "weight": 50 }, { "id": 5733, - "planId": 93, + "planId": 92, "cardId": 18312, - "weight": 150 + "weight": 50 }, { "id": 5734, - "planId": 93, + "planId": 92, "cardId": 18322, - "weight": 150 + "weight": 50 }, { "id": 5735, - "planId": 93, + "planId": 92, "cardId": 18332, - "weight": 150 + "weight": 50 }, { "id": 5736, - "planId": 93, + "planId": 92, "cardId": 18342, - "weight": 150 + "weight": 50 }, { "id": 5737, - "planId": 93, + "planId": 92, "cardId": 13311, - "weight": 150 + "weight": 50 }, { "id": 5738, - "planId": 93, + "planId": 92, "cardId": 13321, - "weight": 150 + "weight": 50 }, { "id": 5739, - "planId": 93, + "planId": 92, "cardId": 13331, - "weight": 150 + "weight": 50 }, { "id": 5740, - "planId": 93, + "planId": 92, "cardId": 13341, - "weight": 150 + "weight": 50 }, { "id": 5741, - "planId": 93, + "planId": 92, "cardId": 13312, - "weight": 150 + "weight": 50 }, { "id": 5742, - "planId": 93, + "planId": 92, "cardId": 13322, - "weight": 150 + "weight": 50 }, { "id": 5743, - "planId": 93, + "planId": 92, "cardId": 13332, - "weight": 150 + "weight": 50 }, { "id": 5744, - "planId": 93, + "planId": 92, "cardId": 13342, - "weight": 150 + "weight": 50 }, { "id": 5745, - "planId": 93, + "planId": 92, "cardId": 12311, - "weight": 150 + "weight": 50 }, { "id": 5746, - "planId": 93, + "planId": 92, "cardId": 12321, - "weight": 150 + "weight": 50 }, { "id": 5747, - "planId": 93, + "planId": 92, "cardId": 12331, - "weight": 150 + "weight": 50 }, { "id": 5748, - "planId": 93, + "planId": 92, "cardId": 12341, - "weight": 150 + "weight": 50 }, { "id": 5749, - "planId": 93, + "planId": 92, "cardId": 12312, - "weight": 150 + "weight": 50 }, { "id": 5750, - "planId": 93, + "planId": 92, "cardId": 12322, - "weight": 150 + "weight": 50 }, { "id": 5751, - "planId": 93, + "planId": 92, "cardId": 12332, - "weight": 150 + "weight": 50 }, { "id": 5752, - "planId": 93, + "planId": 92, "cardId": 12342, - "weight": 150 + "weight": 50 }, { "id": 5753, - "planId": 93, + "planId": 92, "cardId": 16311, - "weight": 150 + "weight": 50 }, { "id": 5754, - "planId": 93, + "planId": 92, "cardId": 16321, - "weight": 150 + "weight": 50 }, { "id": 5755, - "planId": 93, + "planId": 92, "cardId": 16331, - "weight": 150 + "weight": 50 }, { "id": 5756, - "planId": 93, + "planId": 92, "cardId": 16341, - "weight": 150 + "weight": 50 }, { "id": 5757, - "planId": 93, + "planId": 92, "cardId": 16312, - "weight": 150 + "weight": 50 }, { "id": 5758, - "planId": 93, + "planId": 92, "cardId": 16322, - "weight": 150 + "weight": 50 }, { "id": 5759, - "planId": 93, + "planId": 92, "cardId": 16332, - "weight": 150 + "weight": 50 }, { "id": 5760, - "planId": 93, + "planId": 92, "cardId": 16342, - "weight": 150 + "weight": 50 }, { "id": 5761, "planId": 93, "cardId": 11111, - "weight": 90 + "weight": 250 }, { "id": 5762, "planId": 93, "cardId": 11121, - "weight": 90 + "weight": 250 }, { "id": 5763, "planId": 93, "cardId": 11131, - "weight": 90 + "weight": 250 }, { "id": 5764, "planId": 93, "cardId": 11141, - "weight": 90 + "weight": 250 }, { "id": 5765, "planId": 93, "cardId": 11151, - "weight": 90 + "weight": 250 }, { "id": 5766, "planId": 93, "cardId": 11161, - "weight": 90 + "weight": 250 }, { "id": 5767, "planId": 93, "cardId": 11171, - "weight": 90 + "weight": 250 }, { "id": 5768, "planId": 93, "cardId": 11181, - "weight": 90 + "weight": 250 }, { "id": 5769, "planId": 93, "cardId": 11112, - "weight": 90 + "weight": 250 }, { "id": 5770, "planId": 93, "cardId": 11122, - "weight": 90 + "weight": 250 }, { "id": 5771, "planId": 93, "cardId": 11132, - "weight": 90 + "weight": 250 }, { "id": 5772, "planId": 93, "cardId": 11142, - "weight": 90 + "weight": 250 }, { "id": 5773, "planId": 93, "cardId": 11152, - "weight": 90 + "weight": 250 }, { "id": 5774, "planId": 93, "cardId": 11162, - "weight": 90 + "weight": 250 }, { "id": 5775, "planId": 93, "cardId": 11172, - "weight": 90 + "weight": 250 }, { "id": 5776, "planId": 93, "cardId": 11182, - "weight": 90 + "weight": 250 }, { "id": 5777, "planId": 93, "cardId": 14111, - "weight": 90 + "weight": 250 }, { "id": 5778, "planId": 93, "cardId": 14121, - "weight": 90 + "weight": 250 }, { "id": 5779, "planId": 93, "cardId": 14131, - "weight": 90 + "weight": 250 }, { "id": 5780, "planId": 93, "cardId": 14141, - "weight": 90 + "weight": 250 }, { "id": 5781, "planId": 93, "cardId": 14151, - "weight": 90 + "weight": 250 }, { "id": 5782, "planId": 93, "cardId": 14161, - "weight": 90 + "weight": 250 }, { "id": 5783, "planId": 93, "cardId": 14171, - "weight": 90 + "weight": 250 }, { "id": 5784, "planId": 93, "cardId": 14181, - "weight": 90 + "weight": 250 }, { "id": 5785, "planId": 93, "cardId": 14112, - "weight": 90 + "weight": 250 }, { "id": 5786, "planId": 93, "cardId": 14122, - "weight": 90 + "weight": 250 }, { "id": 5787, "planId": 93, "cardId": 14132, - "weight": 90 + "weight": 250 }, { "id": 5788, "planId": 93, "cardId": 14142, - "weight": 90 + "weight": 250 }, { "id": 5789, "planId": 93, "cardId": 14152, - "weight": 90 + "weight": 250 }, { "id": 5790, "planId": 93, "cardId": 14162, - "weight": 90 + "weight": 250 }, { "id": 5791, "planId": 93, "cardId": 14172, - "weight": 90 + "weight": 250 }, { "id": 5792, "planId": 93, "cardId": 14182, - "weight": 90 + "weight": 250 }, { "id": 5793, "planId": 93, "cardId": 17111, - "weight": 90 + "weight": 250 }, { "id": 5794, "planId": 93, "cardId": 17121, - "weight": 90 + "weight": 250 }, { "id": 5795, "planId": 93, "cardId": 17131, - "weight": 90 + "weight": 250 }, { "id": 5796, "planId": 93, "cardId": 17141, - "weight": 90 + "weight": 250 }, { "id": 5797, "planId": 93, "cardId": 17151, - "weight": 90 + "weight": 250 }, { "id": 5798, "planId": 93, "cardId": 17161, - "weight": 90 + "weight": 250 }, { "id": 5799, "planId": 93, "cardId": 17171, - "weight": 90 + "weight": 250 }, { "id": 5800, "planId": 93, "cardId": 17181, - "weight": 90 + "weight": 250 }, { "id": 5801, "planId": 93, "cardId": 17112, - "weight": 90 + "weight": 250 }, { "id": 5802, "planId": 93, "cardId": 17122, - "weight": 90 + "weight": 250 }, { "id": 5803, "planId": 93, "cardId": 17132, - "weight": 90 + "weight": 250 }, { "id": 5804, "planId": 93, "cardId": 17172, - "weight": 90 + "weight": 250 }, { "id": 5805, "planId": 93, "cardId": 17152, - "weight": 90 + "weight": 250 }, { "id": 5806, "planId": 93, "cardId": 17162, - "weight": 90 + "weight": 250 }, { "id": 5807, "planId": 93, "cardId": 17172, - "weight": 90 + "weight": 250 }, { "id": 5808, "planId": 93, "cardId": 17182, - "weight": 90 + "weight": 250 }, { "id": 5809, "planId": 93, "cardId": 15111, - "weight": 90 + "weight": 250 }, { "id": 5810, "planId": 93, "cardId": 15121, - "weight": 90 + "weight": 250 }, { "id": 5811, "planId": 93, "cardId": 15131, - "weight": 90 + "weight": 250 }, { "id": 5812, "planId": 93, "cardId": 15141, - "weight": 90 + "weight": 250 }, { "id": 5813, "planId": 93, "cardId": 15151, - "weight": 90 + "weight": 250 }, { "id": 5814, "planId": 93, "cardId": 15161, - "weight": 90 + "weight": 250 }, { "id": 5815, "planId": 93, "cardId": 15171, - "weight": 90 + "weight": 250 }, { "id": 5816, "planId": 93, "cardId": 15181, - "weight": 90 + "weight": 250 }, { "id": 5817, "planId": 93, "cardId": 15112, - "weight": 90 + "weight": 250 }, { "id": 5818, "planId": 93, "cardId": 15122, - "weight": 90 + "weight": 250 }, { "id": 5819, "planId": 93, "cardId": 15132, - "weight": 90 + "weight": 250 }, { "id": 5820, "planId": 93, "cardId": 15142, - "weight": 90 + "weight": 250 }, { "id": 5821, "planId": 93, "cardId": 15152, - "weight": 90 + "weight": 250 }, { "id": 5822, "planId": 93, "cardId": 15162, - "weight": 90 + "weight": 250 }, { "id": 5823, "planId": 93, "cardId": 15172, - "weight": 90 + "weight": 250 }, { "id": 5824, "planId": 93, "cardId": 15182, - "weight": 90 + "weight": 250 }, { "id": 5825, "planId": 93, "cardId": 18111, - "weight": 90 + "weight": 250 }, { "id": 5826, "planId": 93, "cardId": 18121, - "weight": 90 + "weight": 250 }, { "id": 5827, "planId": 93, "cardId": 18131, - "weight": 90 + "weight": 250 }, { "id": 5828, "planId": 93, "cardId": 18141, - "weight": 90 + "weight": 250 }, { "id": 5829, "planId": 93, "cardId": 18151, - "weight": 90 + "weight": 250 }, { "id": 5830, "planId": 93, "cardId": 18161, - "weight": 90 + "weight": 250 }, { "id": 5831, "planId": 93, "cardId": 18171, - "weight": 90 + "weight": 250 }, { "id": 5832, "planId": 93, "cardId": 18181, - "weight": 90 + "weight": 250 }, { "id": 5833, "planId": 93, "cardId": 18112, - "weight": 90 + "weight": 250 }, { "id": 5834, "planId": 93, "cardId": 18122, - "weight": 90 + "weight": 250 }, { "id": 5835, "planId": 93, "cardId": 18132, - "weight": 90 + "weight": 250 }, { "id": 5836, "planId": 93, "cardId": 18142, - "weight": 90 + "weight": 250 }, { "id": 5837, "planId": 93, "cardId": 18152, - "weight": 90 + "weight": 250 }, { "id": 5838, "planId": 93, "cardId": 18162, - "weight": 90 + "weight": 250 }, { "id": 5839, "planId": 93, "cardId": 18172, - "weight": 90 + "weight": 250 }, { "id": 5840, "planId": 93, "cardId": 18182, - "weight": 90 + "weight": 250 }, { "id": 5841, "planId": 93, "cardId": 13111, - "weight": 90 + "weight": 250 }, { "id": 5842, "planId": 93, "cardId": 13121, - "weight": 90 + "weight": 250 }, { "id": 5843, "planId": 93, "cardId": 13131, - "weight": 90 + "weight": 250 }, { "id": 5844, "planId": 93, "cardId": 13141, - "weight": 90 + "weight": 250 }, { "id": 5845, "planId": 93, "cardId": 13151, - "weight": 90 + "weight": 250 }, { "id": 5846, "planId": 93, "cardId": 13161, - "weight": 90 + "weight": 250 }, { "id": 5847, "planId": 93, "cardId": 13171, - "weight": 90 + "weight": 250 }, { "id": 5848, "planId": 93, "cardId": 13181, - "weight": 90 + "weight": 250 }, { "id": 5849, "planId": 93, "cardId": 13112, - "weight": 90 + "weight": 250 }, { "id": 5850, "planId": 93, "cardId": 13122, - "weight": 90 + "weight": 250 }, { "id": 5851, "planId": 93, "cardId": 13132, - "weight": 90 + "weight": 250 }, { "id": 5852, "planId": 93, "cardId": 13142, - "weight": 90 + "weight": 250 }, { "id": 5853, "planId": 93, "cardId": 13152, - "weight": 90 + "weight": 250 }, { "id": 5854, "planId": 93, "cardId": 13162, - "weight": 90 + "weight": 250 }, { "id": 5855, "planId": 93, "cardId": 13172, - "weight": 90 + "weight": 250 }, { "id": 5856, "planId": 93, "cardId": 13182, - "weight": 90 + "weight": 250 }, { "id": 5857, "planId": 93, "cardId": 12111, - "weight": 90 + "weight": 250 }, { "id": 5858, "planId": 93, "cardId": 12121, - "weight": 90 + "weight": 250 }, { "id": 5859, "planId": 93, "cardId": 12131, - "weight": 90 + "weight": 250 }, { "id": 5860, "planId": 93, "cardId": 12141, - "weight": 90 + "weight": 250 }, { "id": 5861, "planId": 93, "cardId": 12151, - "weight": 90 + "weight": 250 }, { "id": 5862, "planId": 93, "cardId": 12161, - "weight": 90 + "weight": 250 }, { "id": 5863, "planId": 93, "cardId": 12171, - "weight": 90 + "weight": 250 }, { "id": 5864, "planId": 93, "cardId": 12181, - "weight": 90 + "weight": 250 }, { "id": 5865, "planId": 93, "cardId": 12112, - "weight": 90 + "weight": 250 }, { "id": 5866, "planId": 93, "cardId": 12122, - "weight": 90 + "weight": 250 }, { "id": 5867, "planId": 93, "cardId": 12132, - "weight": 90 + "weight": 250 }, { "id": 5868, "planId": 93, "cardId": 12142, - "weight": 90 + "weight": 250 }, { "id": 5869, "planId": 93, "cardId": 12152, - "weight": 90 + "weight": 250 }, { "id": 5870, "planId": 93, "cardId": 12162, - "weight": 90 + "weight": 250 }, { "id": 5871, "planId": 93, "cardId": 12172, - "weight": 90 + "weight": 250 }, { "id": 5872, "planId": 93, "cardId": 12182, - "weight": 90 + "weight": 250 }, { "id": 5873, "planId": 93, "cardId": 16111, - "weight": 90 + "weight": 250 }, { "id": 5874, "planId": 93, "cardId": 16121, - "weight": 90 + "weight": 250 }, { "id": 5875, "planId": 93, "cardId": 16131, - "weight": 90 + "weight": 250 }, { "id": 5876, "planId": 93, "cardId": 16141, - "weight": 90 + "weight": 250 }, { "id": 5877, "planId": 93, "cardId": 16151, - "weight": 90 + "weight": 250 }, { "id": 5878, "planId": 93, "cardId": 16161, - "weight": 90 + "weight": 250 }, { "id": 5879, "planId": 93, "cardId": 16171, - "weight": 90 + "weight": 250 }, { "id": 5880, "planId": 93, "cardId": 16181, - "weight": 90 + "weight": 250 }, { "id": 5881, "planId": 93, "cardId": 16112, - "weight": 90 + "weight": 250 }, { "id": 5882, "planId": 93, "cardId": 16122, - "weight": 90 + "weight": 250 }, { "id": 5883, "planId": 93, "cardId": 16132, - "weight": 90 + "weight": 250 }, { "id": 5884, "planId": 93, "cardId": 16142, - "weight": 90 + "weight": 250 }, { "id": 5885, "planId": 93, "cardId": 16152, - "weight": 90 + "weight": 250 }, { "id": 5886, "planId": 93, "cardId": 16162, - "weight": 90 + "weight": 250 }, { "id": 5887, "planId": 93, "cardId": 16172, - "weight": 90 + "weight": 250 }, { "id": 5888, "planId": 93, "cardId": 16182, - "weight": 90 + "weight": 250 }, { "id": 5889, "planId": 93, "cardId": 11211, - "weight": 160 + "weight": 300 }, { "id": 5890, "planId": 93, "cardId": 11221, - "weight": 160 + "weight": 300 }, { "id": 5891, "planId": 93, "cardId": 11231, - "weight": 160 + "weight": 300 }, { "id": 5892, "planId": 93, "cardId": 11241, - "weight": 160 + "weight": 300 }, { "id": 5893, "planId": 93, "cardId": 11251, - "weight": 160 + "weight": 300 }, { "id": 5894, "planId": 93, "cardId": 11261, - "weight": 160 + "weight": 300 }, { "id": 5895, "planId": 93, "cardId": 11212, - "weight": 160 + "weight": 300 }, { "id": 5896, "planId": 93, "cardId": 11222, - "weight": 160 + "weight": 300 }, { "id": 5897, "planId": 93, "cardId": 11232, - "weight": 160 + "weight": 300 }, { "id": 5898, "planId": 93, "cardId": 11242, - "weight": 160 + "weight": 300 }, { "id": 5899, "planId": 93, "cardId": 11252, - "weight": 160 + "weight": 300 }, { "id": 5900, "planId": 93, "cardId": 11262, - "weight": 160 + "weight": 300 }, { "id": 5901, "planId": 93, "cardId": 14211, - "weight": 160 + "weight": 300 }, { "id": 5902, "planId": 93, "cardId": 14221, - "weight": 160 + "weight": 300 }, { "id": 5903, "planId": 93, "cardId": 14231, - "weight": 160 + "weight": 300 }, { "id": 5904, "planId": 93, "cardId": 14241, - "weight": 160 + "weight": 300 }, { "id": 5905, "planId": 93, "cardId": 14251, - "weight": 160 + "weight": 300 }, { "id": 5906, "planId": 93, "cardId": 14261, - "weight": 160 + "weight": 300 }, { "id": 5907, "planId": 93, "cardId": 14212, - "weight": 160 + "weight": 300 }, { "id": 5908, "planId": 93, "cardId": 14222, - "weight": 160 + "weight": 300 }, { "id": 5909, "planId": 93, "cardId": 14232, - "weight": 160 + "weight": 300 }, { "id": 5910, "planId": 93, "cardId": 14242, - "weight": 160 + "weight": 300 }, { "id": 5911, "planId": 93, "cardId": 14252, - "weight": 160 + "weight": 300 }, { "id": 5912, "planId": 93, "cardId": 14262, - "weight": 160 + "weight": 300 }, { "id": 5913, "planId": 93, "cardId": 17211, - "weight": 160 + "weight": 300 }, { "id": 5914, "planId": 93, "cardId": 17221, - "weight": 160 + "weight": 300 }, { "id": 5915, "planId": 93, "cardId": 17231, - "weight": 160 + "weight": 300 }, { "id": 5916, "planId": 93, "cardId": 17241, - "weight": 160 + "weight": 300 }, { "id": 5917, "planId": 93, "cardId": 17251, - "weight": 160 + "weight": 300 }, { "id": 5918, "planId": 93, "cardId": 17261, - "weight": 160 + "weight": 300 }, { "id": 5919, "planId": 93, "cardId": 17212, - "weight": 160 + "weight": 300 }, { "id": 5920, "planId": 93, "cardId": 17222, - "weight": 160 + "weight": 300 }, { "id": 5921, "planId": 93, "cardId": 17232, - "weight": 160 + "weight": 300 }, { "id": 5922, "planId": 93, "cardId": 17242, - "weight": 160 + "weight": 300 }, { "id": 5923, "planId": 93, "cardId": 17252, - "weight": 160 + "weight": 300 }, { "id": 5924, "planId": 93, "cardId": 17262, - "weight": 160 + "weight": 300 }, { "id": 5925, "planId": 93, "cardId": 15211, - "weight": 160 + "weight": 300 }, { "id": 5926, "planId": 93, "cardId": 15221, - "weight": 160 + "weight": 300 }, { "id": 5927, "planId": 93, "cardId": 15231, - "weight": 160 + "weight": 300 }, { "id": 5928, "planId": 93, "cardId": 15241, - "weight": 160 + "weight": 300 }, { "id": 5929, "planId": 93, "cardId": 15251, - "weight": 160 + "weight": 300 }, { "id": 5930, "planId": 93, "cardId": 15261, - "weight": 160 + "weight": 300 }, { "id": 5931, "planId": 93, "cardId": 15212, - "weight": 160 + "weight": 300 }, { "id": 5932, "planId": 93, "cardId": 15222, - "weight": 160 + "weight": 300 }, { "id": 5933, "planId": 93, "cardId": 15232, - "weight": 160 + "weight": 300 }, { "id": 5934, "planId": 93, "cardId": 15242, - "weight": 160 + "weight": 300 }, { "id": 5935, "planId": 93, "cardId": 15252, - "weight": 160 + "weight": 300 }, { "id": 5936, "planId": 93, "cardId": 15262, - "weight": 160 + "weight": 300 }, { "id": 5937, "planId": 93, "cardId": 18211, - "weight": 160 + "weight": 300 }, { "id": 5938, "planId": 93, "cardId": 18221, - "weight": 160 + "weight": 300 }, { "id": 5939, "planId": 93, "cardId": 18231, - "weight": 160 + "weight": 300 }, { "id": 5940, "planId": 93, "cardId": 18241, - "weight": 160 + "weight": 300 }, { "id": 5941, "planId": 93, "cardId": 18251, - "weight": 160 + "weight": 300 }, { "id": 5942, "planId": 93, "cardId": 18261, - "weight": 160 + "weight": 300 }, { "id": 5943, "planId": 93, "cardId": 18212, - "weight": 160 + "weight": 300 }, { "id": 5944, "planId": 93, "cardId": 18222, - "weight": 160 + "weight": 300 }, { "id": 5945, "planId": 93, "cardId": 18232, - "weight": 160 + "weight": 300 }, { "id": 5946, "planId": 93, "cardId": 18242, - "weight": 160 + "weight": 300 }, { "id": 5947, "planId": 93, "cardId": 18252, - "weight": 160 + "weight": 300 }, { "id": 5948, "planId": 93, "cardId": 18262, - "weight": 160 + "weight": 300 }, { "id": 5949, "planId": 93, "cardId": 13211, - "weight": 160 + "weight": 300 }, { "id": 5950, "planId": 93, "cardId": 13221, - "weight": 160 + "weight": 300 }, { "id": 5951, "planId": 93, "cardId": 13231, - "weight": 160 + "weight": 300 }, { "id": 5952, "planId": 93, "cardId": 13241, - "weight": 160 + "weight": 300 }, { "id": 5953, "planId": 93, "cardId": 13251, - "weight": 160 + "weight": 300 }, { "id": 5954, "planId": 93, "cardId": 13261, - "weight": 160 + "weight": 300 }, { "id": 5955, "planId": 93, "cardId": 13212, - "weight": 160 + "weight": 300 }, { "id": 5956, "planId": 93, "cardId": 13222, - "weight": 160 + "weight": 300 }, { "id": 5957, "planId": 93, "cardId": 13232, - "weight": 160 + "weight": 300 }, { "id": 5958, "planId": 93, "cardId": 13242, - "weight": 160 + "weight": 300 }, { "id": 5959, "planId": 93, "cardId": 13252, - "weight": 160 + "weight": 300 }, { "id": 5960, "planId": 93, "cardId": 13262, - "weight": 160 + "weight": 300 }, { "id": 5961, "planId": 93, "cardId": 12211, - "weight": 160 + "weight": 300 }, { "id": 5962, "planId": 93, "cardId": 12221, - "weight": 160 + "weight": 300 }, { "id": 5963, "planId": 93, "cardId": 12231, - "weight": 160 + "weight": 300 }, { "id": 5964, "planId": 93, "cardId": 12241, - "weight": 160 + "weight": 300 }, { "id": 5965, "planId": 93, "cardId": 12251, - "weight": 160 + "weight": 300 }, { "id": 5966, "planId": 93, "cardId": 12261, - "weight": 160 + "weight": 300 }, { "id": 5967, "planId": 93, "cardId": 12212, - "weight": 160 + "weight": 300 }, { "id": 5968, "planId": 93, "cardId": 12222, - "weight": 160 + "weight": 300 }, { "id": 5969, "planId": 93, "cardId": 12232, - "weight": 160 + "weight": 300 }, { "id": 5970, "planId": 93, "cardId": 12242, - "weight": 160 + "weight": 300 }, { "id": 5971, "planId": 93, "cardId": 12252, - "weight": 160 + "weight": 300 }, { "id": 5972, "planId": 93, "cardId": 12262, - "weight": 160 + "weight": 300 }, { "id": 5973, "planId": 93, "cardId": 16211, - "weight": 160 + "weight": 300 }, { "id": 5974, "planId": 93, "cardId": 16221, - "weight": 160 + "weight": 300 }, { "id": 5975, "planId": 93, "cardId": 16231, - "weight": 160 + "weight": 300 }, { "id": 5976, "planId": 93, "cardId": 16241, - "weight": 160 + "weight": 300 }, { "id": 5977, "planId": 93, "cardId": 16251, - "weight": 160 + "weight": 300 }, { "id": 5978, "planId": 93, "cardId": 16261, - "weight": 160 + "weight": 300 }, { "id": 5979, "planId": 93, "cardId": 16212, - "weight": 160 + "weight": 300 }, { "id": 5980, "planId": 93, "cardId": 16222, - "weight": 160 + "weight": 300 }, { "id": 5981, "planId": 93, "cardId": 16232, - "weight": 160 + "weight": 300 }, { "id": 5982, "planId": 93, "cardId": 16242, - "weight": 160 + "weight": 300 }, { "id": 5983, "planId": 93, "cardId": 16252, - "weight": 160 + "weight": 300 }, { "id": 5984, "planId": 93, "cardId": 16262, - "weight": 160 + "weight": 300 }, { "id": 5985, "planId": 93, "cardId": 11311, - "weight": 180 + "weight": 50 }, { "id": 5986, "planId": 93, "cardId": 11321, - "weight": 180 + "weight": 50 }, { "id": 5987, "planId": 93, "cardId": 11331, - "weight": 180 + "weight": 50 }, { "id": 5988, "planId": 93, "cardId": 11341, - "weight": 180 + "weight": 50 }, { "id": 5989, "planId": 93, "cardId": 11312, - "weight": 180 + "weight": 50 }, { "id": 5990, "planId": 93, "cardId": 11322, - "weight": 180 + "weight": 50 }, { "id": 5991, "planId": 93, "cardId": 11332, - "weight": 180 + "weight": 50 }, { "id": 5992, "planId": 93, "cardId": 11342, - "weight": 180 + "weight": 50 }, { "id": 5993, "planId": 93, "cardId": 14311, - "weight": 180 + "weight": 50 }, { "id": 5994, "planId": 93, "cardId": 14321, - "weight": 180 + "weight": 50 }, { "id": 5995, "planId": 93, "cardId": 14331, - "weight": 180 + "weight": 50 }, { "id": 5996, "planId": 93, "cardId": 14341, - "weight": 180 + "weight": 50 }, { "id": 5997, "planId": 93, "cardId": 14312, - "weight": 180 + "weight": 50 }, { "id": 5998, "planId": 93, "cardId": 14322, - "weight": 180 + "weight": 50 }, { "id": 5999, "planId": 93, "cardId": 14332, - "weight": 180 + "weight": 50 }, { "id": 6000, "planId": 93, "cardId": 14342, - "weight": 180 + "weight": 50 }, { "id": 6001, "planId": 93, "cardId": 17311, - "weight": 180 + "weight": 50 }, { "id": 6002, "planId": 93, "cardId": 17321, - "weight": 180 + "weight": 50 }, { "id": 6003, "planId": 93, "cardId": 17331, - "weight": 180 + "weight": 50 }, { "id": 6004, "planId": 93, "cardId": 17341, - "weight": 180 + "weight": 50 }, { "id": 6005, "planId": 93, "cardId": 17312, - "weight": 180 + "weight": 50 }, { "id": 6006, "planId": 93, "cardId": 17322, - "weight": 180 + "weight": 50 }, { "id": 6007, "planId": 93, "cardId": 17332, - "weight": 180 + "weight": 50 }, { "id": 6008, "planId": 93, "cardId": 17342, - "weight": 180 + "weight": 50 }, { "id": 6009, "planId": 93, "cardId": 15311, - "weight": 180 + "weight": 50 }, { "id": 6010, "planId": 93, "cardId": 15321, - "weight": 180 + "weight": 50 }, { "id": 6011, "planId": 93, "cardId": 15331, - "weight": 180 + "weight": 50 }, { "id": 6012, "planId": 93, "cardId": 15341, - "weight": 180 + "weight": 50 }, { "id": 6013, "planId": 93, "cardId": 15312, - "weight": 180 + "weight": 50 }, { "id": 6014, "planId": 93, "cardId": 15322, - "weight": 180 + "weight": 50 }, { "id": 6015, "planId": 93, "cardId": 15332, - "weight": 180 + "weight": 50 }, { "id": 6016, "planId": 93, "cardId": 15342, - "weight": 180 + "weight": 50 }, { "id": 6017, "planId": 93, "cardId": 18311, - "weight": 180 + "weight": 50 }, { "id": 6018, "planId": 93, "cardId": 18321, - "weight": 180 + "weight": 50 }, { "id": 6019, "planId": 93, "cardId": 18331, - "weight": 180 + "weight": 50 }, { "id": 6020, "planId": 93, "cardId": 18341, - "weight": 180 + "weight": 50 }, { "id": 6021, "planId": 93, "cardId": 18312, - "weight": 180 + "weight": 50 }, { "id": 6022, "planId": 93, "cardId": 18322, - "weight": 180 + "weight": 50 }, { "id": 6023, "planId": 93, "cardId": 18332, - "weight": 180 + "weight": 50 }, { "id": 6024, "planId": 93, "cardId": 18342, - "weight": 180 + "weight": 50 }, { "id": 6025, "planId": 93, "cardId": 13311, - "weight": 180 + "weight": 50 }, { "id": 6026, "planId": 93, "cardId": 13321, - "weight": 180 + "weight": 50 }, { "id": 6027, "planId": 93, "cardId": 13331, - "weight": 180 + "weight": 50 }, { "id": 6028, "planId": 93, "cardId": 13341, - "weight": 180 + "weight": 50 }, { "id": 6029, "planId": 93, "cardId": 13312, - "weight": 180 + "weight": 50 }, { "id": 6030, "planId": 93, "cardId": 13322, - "weight": 180 + "weight": 50 }, { "id": 6031, "planId": 93, "cardId": 13332, - "weight": 180 + "weight": 50 }, { "id": 6032, "planId": 93, "cardId": 13342, - "weight": 180 + "weight": 50 }, { "id": 6033, "planId": 93, "cardId": 12311, - "weight": 180 + "weight": 50 }, { "id": 6034, "planId": 93, "cardId": 12321, - "weight": 180 + "weight": 50 }, { "id": 6035, "planId": 93, "cardId": 12331, - "weight": 180 + "weight": 50 }, { "id": 6036, "planId": 93, "cardId": 12341, - "weight": 180 + "weight": 50 }, { "id": 6037, "planId": 93, "cardId": 12312, - "weight": 180 + "weight": 50 }, { "id": 6038, "planId": 93, "cardId": 12322, - "weight": 180 + "weight": 50 }, { "id": 6039, "planId": 93, "cardId": 12332, - "weight": 180 + "weight": 50 }, { "id": 6040, "planId": 93, "cardId": 12342, - "weight": 180 + "weight": 50 }, { "id": 6041, "planId": 93, "cardId": 16311, - "weight": 180 + "weight": 50 }, { "id": 6042, "planId": 93, "cardId": 16321, - "weight": 180 + "weight": 50 }, { "id": 6043, "planId": 93, "cardId": 16331, - "weight": 180 + "weight": 50 }, { "id": 6044, "planId": 93, "cardId": 16341, - "weight": 180 + "weight": 50 }, { "id": 6045, "planId": 93, "cardId": 16312, - "weight": 180 + "weight": 50 }, { "id": 6046, "planId": 93, "cardId": 16322, - "weight": 180 + "weight": 50 }, { "id": 6047, "planId": 93, "cardId": 16332, - "weight": 180 + "weight": 50 }, { "id": 6048, "planId": 93, "cardId": 16342, - "weight": 180 + "weight": 50 }, { "id": 6049, @@ -37057,4418 +37057,4418 @@ }, { "id": 6177, - "planId": 102, + "planId": 101, "cardId": 11211, "weight": 300 }, { "id": 6178, - "planId": 102, + "planId": 101, "cardId": 11221, "weight": 300 }, { "id": 6179, - "planId": 102, + "planId": 101, "cardId": 11231, "weight": 300 }, { "id": 6180, - "planId": 102, + "planId": 101, "cardId": 11241, "weight": 300 }, { "id": 6181, - "planId": 102, + "planId": 101, "cardId": 11251, "weight": 300 }, { "id": 6182, - "planId": 102, + "planId": 101, "cardId": 11261, "weight": 300 }, { "id": 6183, - "planId": 102, + "planId": 101, "cardId": 11212, "weight": 300 }, { "id": 6184, - "planId": 102, + "planId": 101, "cardId": 11222, "weight": 300 }, { "id": 6185, - "planId": 102, + "planId": 101, "cardId": 11232, "weight": 300 }, { "id": 6186, - "planId": 102, + "planId": 101, "cardId": 11242, "weight": 300 }, { "id": 6187, - "planId": 102, + "planId": 101, "cardId": 11252, "weight": 300 }, { "id": 6188, - "planId": 102, + "planId": 101, "cardId": 11262, "weight": 300 }, { "id": 6189, - "planId": 102, + "planId": 101, "cardId": 14211, "weight": 300 }, { "id": 6190, - "planId": 102, + "planId": 101, "cardId": 14221, "weight": 300 }, { "id": 6191, - "planId": 102, + "planId": 101, "cardId": 14231, "weight": 300 }, { "id": 6192, - "planId": 102, + "planId": 101, "cardId": 14241, "weight": 300 }, { "id": 6193, - "planId": 102, + "planId": 101, "cardId": 14251, "weight": 300 }, { "id": 6194, - "planId": 102, + "planId": 101, "cardId": 14261, "weight": 300 }, { "id": 6195, - "planId": 102, + "planId": 101, "cardId": 14212, "weight": 300 }, { "id": 6196, - "planId": 102, + "planId": 101, "cardId": 14222, "weight": 300 }, { "id": 6197, - "planId": 102, + "planId": 101, "cardId": 14232, "weight": 300 }, { "id": 6198, - "planId": 102, + "planId": 101, "cardId": 14242, "weight": 300 }, { "id": 6199, - "planId": 102, + "planId": 101, "cardId": 14252, "weight": 300 }, { "id": 6200, - "planId": 102, + "planId": 101, "cardId": 14262, "weight": 300 }, { "id": 6201, - "planId": 102, + "planId": 101, "cardId": 17211, "weight": 300 }, { "id": 6202, - "planId": 102, + "planId": 101, "cardId": 17221, "weight": 300 }, { "id": 6203, - "planId": 102, + "planId": 101, "cardId": 17231, "weight": 300 }, { "id": 6204, - "planId": 102, + "planId": 101, "cardId": 17241, "weight": 300 }, { "id": 6205, - "planId": 102, + "planId": 101, "cardId": 17251, "weight": 300 }, { "id": 6206, - "planId": 102, + "planId": 101, "cardId": 17261, "weight": 300 }, { "id": 6207, - "planId": 102, + "planId": 101, "cardId": 17212, "weight": 300 }, { "id": 6208, - "planId": 102, + "planId": 101, "cardId": 17222, "weight": 300 }, { "id": 6209, - "planId": 102, + "planId": 101, "cardId": 17232, "weight": 300 }, { "id": 6210, - "planId": 102, + "planId": 101, "cardId": 17242, "weight": 300 }, { "id": 6211, - "planId": 102, + "planId": 101, "cardId": 17252, "weight": 300 }, { "id": 6212, - "planId": 102, + "planId": 101, "cardId": 17262, "weight": 300 }, { "id": 6213, - "planId": 102, + "planId": 101, "cardId": 15211, "weight": 300 }, { "id": 6214, - "planId": 102, + "planId": 101, "cardId": 15221, "weight": 300 }, { "id": 6215, - "planId": 102, + "planId": 101, "cardId": 15231, "weight": 300 }, { "id": 6216, - "planId": 102, + "planId": 101, "cardId": 15241, "weight": 300 }, { "id": 6217, - "planId": 102, + "planId": 101, "cardId": 15251, "weight": 300 }, { "id": 6218, - "planId": 102, + "planId": 101, "cardId": 15261, "weight": 300 }, { "id": 6219, - "planId": 102, + "planId": 101, "cardId": 15212, "weight": 300 }, { "id": 6220, - "planId": 102, + "planId": 101, "cardId": 15222, "weight": 300 }, { "id": 6221, - "planId": 102, + "planId": 101, "cardId": 15232, "weight": 300 }, { "id": 6222, - "planId": 102, + "planId": 101, "cardId": 15242, "weight": 300 }, { "id": 6223, - "planId": 102, + "planId": 101, "cardId": 15252, "weight": 300 }, { "id": 6224, - "planId": 102, + "planId": 101, "cardId": 15262, "weight": 300 }, { "id": 6225, - "planId": 102, + "planId": 101, "cardId": 18211, "weight": 300 }, { "id": 6226, - "planId": 102, + "planId": 101, "cardId": 18221, "weight": 300 }, { "id": 6227, - "planId": 102, + "planId": 101, "cardId": 18231, "weight": 300 }, { "id": 6228, - "planId": 102, + "planId": 101, "cardId": 18241, "weight": 300 }, { "id": 6229, - "planId": 102, + "planId": 101, "cardId": 18251, "weight": 300 }, { "id": 6230, - "planId": 102, + "planId": 101, "cardId": 18261, "weight": 300 }, { "id": 6231, - "planId": 102, + "planId": 101, "cardId": 18212, "weight": 300 }, { "id": 6232, - "planId": 102, + "planId": 101, "cardId": 18222, "weight": 300 }, { "id": 6233, - "planId": 102, + "planId": 101, "cardId": 18232, "weight": 300 }, { "id": 6234, - "planId": 102, + "planId": 101, "cardId": 18242, "weight": 300 }, { "id": 6235, - "planId": 102, + "planId": 101, "cardId": 18252, "weight": 300 }, { "id": 6236, - "planId": 102, + "planId": 101, "cardId": 18262, "weight": 300 }, { "id": 6237, - "planId": 102, + "planId": 101, "cardId": 13211, "weight": 300 }, { "id": 6238, - "planId": 102, + "planId": 101, "cardId": 13221, "weight": 300 }, { "id": 6239, - "planId": 102, + "planId": 101, "cardId": 13231, "weight": 300 }, { "id": 6240, - "planId": 102, + "planId": 101, "cardId": 13241, "weight": 300 }, { "id": 6241, - "planId": 102, + "planId": 101, "cardId": 13251, "weight": 300 }, { "id": 6242, - "planId": 102, + "planId": 101, "cardId": 13261, "weight": 300 }, { "id": 6243, - "planId": 102, + "planId": 101, "cardId": 13212, "weight": 300 }, { "id": 6244, - "planId": 102, + "planId": 101, "cardId": 13222, "weight": 300 }, { "id": 6245, - "planId": 102, + "planId": 101, "cardId": 13232, "weight": 300 }, { "id": 6246, - "planId": 102, + "planId": 101, "cardId": 13242, "weight": 300 }, { "id": 6247, - "planId": 102, + "planId": 101, "cardId": 13252, "weight": 300 }, { "id": 6248, - "planId": 102, + "planId": 101, "cardId": 13262, "weight": 300 }, { "id": 6249, - "planId": 102, + "planId": 101, "cardId": 12211, "weight": 300 }, { "id": 6250, - "planId": 102, + "planId": 101, "cardId": 12221, "weight": 300 }, { "id": 6251, - "planId": 102, + "planId": 101, "cardId": 12231, "weight": 300 }, { "id": 6252, - "planId": 102, + "planId": 101, "cardId": 12241, "weight": 300 }, { "id": 6253, - "planId": 102, + "planId": 101, "cardId": 12251, "weight": 300 }, { "id": 6254, - "planId": 102, + "planId": 101, "cardId": 12261, "weight": 300 }, { "id": 6255, - "planId": 102, + "planId": 101, "cardId": 12212, "weight": 300 }, { "id": 6256, - "planId": 102, + "planId": 101, "cardId": 12222, "weight": 300 }, { "id": 6257, - "planId": 102, + "planId": 101, "cardId": 12232, "weight": 300 }, { "id": 6258, - "planId": 102, + "planId": 101, "cardId": 12242, "weight": 300 }, { "id": 6259, - "planId": 102, + "planId": 101, "cardId": 12252, "weight": 300 }, { "id": 6260, - "planId": 102, + "planId": 101, "cardId": 12262, "weight": 300 }, { "id": 6261, - "planId": 102, + "planId": 101, "cardId": 16211, "weight": 300 }, { "id": 6262, - "planId": 102, + "planId": 101, "cardId": 16221, "weight": 300 }, { "id": 6263, - "planId": 102, + "planId": 101, "cardId": 16231, "weight": 300 }, { "id": 6264, - "planId": 102, + "planId": 101, "cardId": 16241, "weight": 300 }, { "id": 6265, - "planId": 102, + "planId": 101, "cardId": 16251, "weight": 300 }, { "id": 6266, - "planId": 102, + "planId": 101, "cardId": 16261, "weight": 300 }, { "id": 6267, - "planId": 102, + "planId": 101, "cardId": 16212, "weight": 300 }, { "id": 6268, - "planId": 102, + "planId": 101, "cardId": 16222, "weight": 300 }, { "id": 6269, - "planId": 102, + "planId": 101, "cardId": 16232, "weight": 300 }, { "id": 6270, - "planId": 102, + "planId": 101, "cardId": 16242, "weight": 300 }, { "id": 6271, - "planId": 102, + "planId": 101, "cardId": 16252, "weight": 300 }, { "id": 6272, - "planId": 102, + "planId": 101, "cardId": 16262, "weight": 300 }, { "id": 6273, - "planId": 103, + "planId": 101, "cardId": 11311, "weight": 50 }, { "id": 6274, - "planId": 103, + "planId": 101, "cardId": 11321, "weight": 50 }, { "id": 6275, - "planId": 103, + "planId": 101, "cardId": 11331, "weight": 50 }, { "id": 6276, - "planId": 103, + "planId": 101, "cardId": 11341, "weight": 50 }, { "id": 6277, - "planId": 103, + "planId": 101, "cardId": 11312, "weight": 50 }, { "id": 6278, - "planId": 103, + "planId": 101, "cardId": 11322, "weight": 50 }, { "id": 6279, - "planId": 103, + "planId": 101, "cardId": 11332, "weight": 50 }, { "id": 6280, - "planId": 103, + "planId": 101, "cardId": 11342, "weight": 50 }, { "id": 6281, - "planId": 103, + "planId": 101, "cardId": 14311, "weight": 50 }, { "id": 6282, - "planId": 103, + "planId": 101, "cardId": 14321, "weight": 50 }, { "id": 6283, - "planId": 103, + "planId": 101, "cardId": 14331, "weight": 50 }, { "id": 6284, - "planId": 103, + "planId": 101, "cardId": 14341, "weight": 50 }, { "id": 6285, - "planId": 103, + "planId": 101, "cardId": 14312, "weight": 50 }, { "id": 6286, - "planId": 103, + "planId": 101, "cardId": 14322, "weight": 50 }, { "id": 6287, - "planId": 103, + "planId": 101, "cardId": 14332, "weight": 50 }, { "id": 6288, - "planId": 103, + "planId": 101, "cardId": 14342, "weight": 50 }, { "id": 6289, - "planId": 103, + "planId": 101, "cardId": 17311, "weight": 50 }, { "id": 6290, - "planId": 103, + "planId": 101, "cardId": 17321, "weight": 50 }, { "id": 6291, - "planId": 103, + "planId": 101, "cardId": 17331, "weight": 50 }, { "id": 6292, - "planId": 103, + "planId": 101, "cardId": 17341, "weight": 50 }, { "id": 6293, - "planId": 103, + "planId": 101, "cardId": 17312, "weight": 50 }, { "id": 6294, - "planId": 103, + "planId": 101, "cardId": 17322, "weight": 50 }, { "id": 6295, - "planId": 103, + "planId": 101, "cardId": 17332, "weight": 50 }, { "id": 6296, - "planId": 103, + "planId": 101, "cardId": 17342, "weight": 50 }, { "id": 6297, - "planId": 103, + "planId": 101, "cardId": 15311, "weight": 50 }, { "id": 6298, - "planId": 103, + "planId": 101, "cardId": 15321, "weight": 50 }, { "id": 6299, - "planId": 103, + "planId": 101, "cardId": 15331, "weight": 50 }, { "id": 6300, - "planId": 103, + "planId": 101, "cardId": 15341, "weight": 50 }, { "id": 6301, - "planId": 103, + "planId": 101, "cardId": 15312, "weight": 50 }, { "id": 6302, - "planId": 103, + "planId": 101, "cardId": 15322, "weight": 50 }, { "id": 6303, - "planId": 103, + "planId": 101, "cardId": 15332, "weight": 50 }, { "id": 6304, - "planId": 103, + "planId": 101, "cardId": 15342, "weight": 50 }, { "id": 6305, - "planId": 103, + "planId": 101, "cardId": 18311, "weight": 50 }, { "id": 6306, - "planId": 103, + "planId": 101, "cardId": 18321, "weight": 50 }, { "id": 6307, - "planId": 103, + "planId": 101, "cardId": 18331, "weight": 50 }, { "id": 6308, - "planId": 103, + "planId": 101, "cardId": 18341, "weight": 50 }, { "id": 6309, - "planId": 103, + "planId": 101, "cardId": 18312, "weight": 50 }, { "id": 6310, - "planId": 103, + "planId": 101, "cardId": 18322, "weight": 50 }, { "id": 6311, - "planId": 103, + "planId": 101, "cardId": 18332, "weight": 50 }, { "id": 6312, - "planId": 103, + "planId": 101, "cardId": 18342, "weight": 50 }, { "id": 6313, - "planId": 103, + "planId": 101, "cardId": 13311, "weight": 50 }, { "id": 6314, - "planId": 103, + "planId": 101, "cardId": 13321, "weight": 50 }, { "id": 6315, - "planId": 103, + "planId": 101, "cardId": 13331, "weight": 50 }, { "id": 6316, - "planId": 103, + "planId": 101, "cardId": 13341, "weight": 50 }, { "id": 6317, - "planId": 103, + "planId": 101, "cardId": 13312, "weight": 50 }, { "id": 6318, - "planId": 103, + "planId": 101, "cardId": 13322, "weight": 50 }, { "id": 6319, - "planId": 103, + "planId": 101, "cardId": 13332, "weight": 50 }, { "id": 6320, - "planId": 103, + "planId": 101, "cardId": 13342, "weight": 50 }, { "id": 6321, - "planId": 103, + "planId": 101, "cardId": 12311, "weight": 50 }, { "id": 6322, - "planId": 103, + "planId": 101, "cardId": 12321, "weight": 50 }, { "id": 6323, - "planId": 103, + "planId": 101, "cardId": 12331, "weight": 50 }, { "id": 6324, - "planId": 103, + "planId": 101, "cardId": 12341, "weight": 50 }, { "id": 6325, - "planId": 103, + "planId": 101, "cardId": 12312, "weight": 50 }, { "id": 6326, - "planId": 103, + "planId": 101, "cardId": 12322, "weight": 50 }, { "id": 6327, - "planId": 103, + "planId": 101, "cardId": 12332, "weight": 50 }, { "id": 6328, - "planId": 103, + "planId": 101, "cardId": 12342, "weight": 50 }, { "id": 6329, - "planId": 103, + "planId": 101, "cardId": 16311, "weight": 50 }, { "id": 6330, - "planId": 103, + "planId": 101, "cardId": 16321, "weight": 50 }, { "id": 6331, - "planId": 103, + "planId": 101, "cardId": 16331, "weight": 50 }, { "id": 6332, - "planId": 103, + "planId": 101, "cardId": 16341, "weight": 50 }, { "id": 6333, - "planId": 103, + "planId": 101, "cardId": 16312, "weight": 50 }, { "id": 6334, - "planId": 103, + "planId": 101, "cardId": 16322, "weight": 50 }, { "id": 6335, - "planId": 103, + "planId": 101, "cardId": 16332, "weight": 50 }, { "id": 6336, - "planId": 103, + "planId": 101, "cardId": 16342, "weight": 50 }, { "id": 6337, - "planId": 103, + "planId": 102, "cardId": 11111, - "weight": 200 + "weight": 250 }, { "id": 6338, - "planId": 103, + "planId": 102, "cardId": 11121, - "weight": 200 + "weight": 250 }, { "id": 6339, - "planId": 103, + "planId": 102, "cardId": 11131, - "weight": 200 + "weight": 250 }, { "id": 6340, - "planId": 103, + "planId": 102, "cardId": 11141, - "weight": 200 + "weight": 250 }, { "id": 6341, - "planId": 103, + "planId": 102, "cardId": 11151, - "weight": 200 + "weight": 250 }, { "id": 6342, - "planId": 103, + "planId": 102, "cardId": 11161, - "weight": 200 + "weight": 250 }, { "id": 6343, - "planId": 103, + "planId": 102, "cardId": 11171, - "weight": 200 + "weight": 250 }, { "id": 6344, - "planId": 103, + "planId": 102, "cardId": 11181, - "weight": 200 + "weight": 250 }, { "id": 6345, - "planId": 103, + "planId": 102, "cardId": 11112, - "weight": 200 + "weight": 250 }, { "id": 6346, - "planId": 103, + "planId": 102, "cardId": 11122, - "weight": 200 + "weight": 250 }, { "id": 6347, - "planId": 103, + "planId": 102, "cardId": 11132, - "weight": 200 + "weight": 250 }, { "id": 6348, - "planId": 103, + "planId": 102, "cardId": 11142, - "weight": 200 + "weight": 250 }, { "id": 6349, - "planId": 103, + "planId": 102, "cardId": 11152, - "weight": 200 + "weight": 250 }, { "id": 6350, - "planId": 103, + "planId": 102, "cardId": 11162, - "weight": 200 + "weight": 250 }, { "id": 6351, - "planId": 103, + "planId": 102, "cardId": 11172, - "weight": 200 + "weight": 250 }, { "id": 6352, - "planId": 103, + "planId": 102, "cardId": 11182, - "weight": 200 + "weight": 250 }, { "id": 6353, - "planId": 103, + "planId": 102, "cardId": 14111, - "weight": 200 + "weight": 250 }, { "id": 6354, - "planId": 103, + "planId": 102, "cardId": 14121, - "weight": 200 + "weight": 250 }, { "id": 6355, - "planId": 103, + "planId": 102, "cardId": 14131, - "weight": 200 + "weight": 250 }, { "id": 6356, - "planId": 103, + "planId": 102, "cardId": 14141, - "weight": 200 + "weight": 250 }, { "id": 6357, - "planId": 103, + "planId": 102, "cardId": 14151, - "weight": 200 + "weight": 250 }, { "id": 6358, - "planId": 103, + "planId": 102, "cardId": 14161, - "weight": 200 + "weight": 250 }, { "id": 6359, - "planId": 103, + "planId": 102, "cardId": 14171, - "weight": 200 + "weight": 250 }, { "id": 6360, - "planId": 103, + "planId": 102, "cardId": 14181, - "weight": 200 + "weight": 250 }, { "id": 6361, - "planId": 103, + "planId": 102, "cardId": 14112, - "weight": 200 + "weight": 250 }, { "id": 6362, - "planId": 103, + "planId": 102, "cardId": 14122, - "weight": 200 + "weight": 250 }, { "id": 6363, - "planId": 103, + "planId": 102, "cardId": 14132, - "weight": 200 + "weight": 250 }, { "id": 6364, - "planId": 103, + "planId": 102, "cardId": 14142, - "weight": 200 + "weight": 250 }, { "id": 6365, - "planId": 103, + "planId": 102, "cardId": 14152, - "weight": 200 + "weight": 250 }, { "id": 6366, - "planId": 103, + "planId": 102, "cardId": 14162, - "weight": 200 + "weight": 250 }, { "id": 6367, - "planId": 103, + "planId": 102, "cardId": 14172, - "weight": 200 + "weight": 250 }, { "id": 6368, - "planId": 103, + "planId": 102, "cardId": 14182, - "weight": 200 + "weight": 250 }, { "id": 6369, - "planId": 103, + "planId": 102, "cardId": 17111, - "weight": 200 + "weight": 250 }, { "id": 6370, - "planId": 103, + "planId": 102, "cardId": 17121, - "weight": 200 + "weight": 250 }, { "id": 6371, - "planId": 103, + "planId": 102, "cardId": 17131, - "weight": 200 + "weight": 250 }, { "id": 6372, - "planId": 103, + "planId": 102, "cardId": 17141, - "weight": 200 + "weight": 250 }, { "id": 6373, - "planId": 103, + "planId": 102, "cardId": 17151, - "weight": 200 + "weight": 250 }, { "id": 6374, - "planId": 103, + "planId": 102, "cardId": 17161, - "weight": 200 + "weight": 250 }, { "id": 6375, - "planId": 103, + "planId": 102, "cardId": 17171, - "weight": 200 + "weight": 250 }, { "id": 6376, - "planId": 103, + "planId": 102, "cardId": 17181, - "weight": 200 + "weight": 250 }, { "id": 6377, - "planId": 103, + "planId": 102, "cardId": 17112, - "weight": 200 + "weight": 250 }, { "id": 6378, - "planId": 103, + "planId": 102, "cardId": 17122, - "weight": 200 + "weight": 250 }, { "id": 6379, - "planId": 103, + "planId": 102, "cardId": 17132, - "weight": 200 + "weight": 250 }, { "id": 6380, - "planId": 103, + "planId": 102, "cardId": 17172, - "weight": 200 + "weight": 250 }, { "id": 6381, - "planId": 103, + "planId": 102, "cardId": 17152, - "weight": 200 + "weight": 250 }, { "id": 6382, - "planId": 103, + "planId": 102, "cardId": 17162, - "weight": 200 + "weight": 250 }, { "id": 6383, - "planId": 103, + "planId": 102, "cardId": 17172, - "weight": 200 + "weight": 250 }, { "id": 6384, - "planId": 103, + "planId": 102, "cardId": 17182, - "weight": 200 + "weight": 250 }, { "id": 6385, - "planId": 103, + "planId": 102, "cardId": 15111, - "weight": 200 + "weight": 250 }, { "id": 6386, - "planId": 103, + "planId": 102, "cardId": 15121, - "weight": 200 + "weight": 250 }, { "id": 6387, - "planId": 103, + "planId": 102, "cardId": 15131, - "weight": 200 + "weight": 250 }, { "id": 6388, - "planId": 103, + "planId": 102, "cardId": 15141, - "weight": 200 + "weight": 250 }, { "id": 6389, - "planId": 103, + "planId": 102, "cardId": 15151, - "weight": 200 + "weight": 250 }, { "id": 6390, - "planId": 103, + "planId": 102, "cardId": 15161, - "weight": 200 + "weight": 250 }, { "id": 6391, - "planId": 103, + "planId": 102, "cardId": 15171, - "weight": 200 + "weight": 250 }, { "id": 6392, - "planId": 103, + "planId": 102, "cardId": 15181, - "weight": 200 + "weight": 250 }, { "id": 6393, - "planId": 103, + "planId": 102, "cardId": 15112, - "weight": 200 + "weight": 250 }, { "id": 6394, - "planId": 103, + "planId": 102, "cardId": 15122, - "weight": 200 + "weight": 250 }, { "id": 6395, - "planId": 103, + "planId": 102, "cardId": 15132, - "weight": 200 + "weight": 250 }, { "id": 6396, - "planId": 103, + "planId": 102, "cardId": 15142, - "weight": 200 + "weight": 250 }, { "id": 6397, - "planId": 103, + "planId": 102, "cardId": 15152, - "weight": 200 + "weight": 250 }, { "id": 6398, - "planId": 103, + "planId": 102, "cardId": 15162, - "weight": 200 + "weight": 250 }, { "id": 6399, - "planId": 103, + "planId": 102, "cardId": 15172, - "weight": 200 + "weight": 250 }, { "id": 6400, - "planId": 103, + "planId": 102, "cardId": 15182, - "weight": 200 + "weight": 250 }, { "id": 6401, - "planId": 103, + "planId": 102, "cardId": 18111, - "weight": 200 + "weight": 250 }, { "id": 6402, - "planId": 103, + "planId": 102, "cardId": 18121, - "weight": 200 + "weight": 250 }, { "id": 6403, - "planId": 103, + "planId": 102, "cardId": 18131, - "weight": 200 + "weight": 250 }, { "id": 6404, - "planId": 103, + "planId": 102, "cardId": 18141, - "weight": 200 + "weight": 250 }, { "id": 6405, - "planId": 103, + "planId": 102, "cardId": 18151, - "weight": 200 + "weight": 250 }, { "id": 6406, - "planId": 103, + "planId": 102, "cardId": 18161, - "weight": 200 + "weight": 250 }, { "id": 6407, - "planId": 103, + "planId": 102, "cardId": 18171, - "weight": 200 + "weight": 250 }, { "id": 6408, - "planId": 103, + "planId": 102, "cardId": 18181, - "weight": 200 + "weight": 250 }, { "id": 6409, - "planId": 103, + "planId": 102, "cardId": 18112, - "weight": 200 + "weight": 250 }, { "id": 6410, - "planId": 103, + "planId": 102, "cardId": 18122, - "weight": 200 + "weight": 250 }, { "id": 6411, - "planId": 103, + "planId": 102, "cardId": 18132, - "weight": 200 + "weight": 250 }, { "id": 6412, - "planId": 103, + "planId": 102, "cardId": 18142, - "weight": 200 + "weight": 250 }, { "id": 6413, - "planId": 103, + "planId": 102, "cardId": 18152, - "weight": 200 + "weight": 250 }, { "id": 6414, - "planId": 103, + "planId": 102, "cardId": 18162, - "weight": 200 + "weight": 250 }, { "id": 6415, - "planId": 103, + "planId": 102, "cardId": 18172, - "weight": 200 + "weight": 250 }, { "id": 6416, - "planId": 103, + "planId": 102, "cardId": 18182, - "weight": 200 + "weight": 250 }, { "id": 6417, - "planId": 103, + "planId": 102, "cardId": 13111, - "weight": 200 + "weight": 250 }, { "id": 6418, - "planId": 103, + "planId": 102, "cardId": 13121, - "weight": 200 + "weight": 250 }, { "id": 6419, - "planId": 103, + "planId": 102, "cardId": 13131, - "weight": 200 + "weight": 250 }, { "id": 6420, - "planId": 103, + "planId": 102, "cardId": 13141, - "weight": 200 + "weight": 250 }, { "id": 6421, - "planId": 103, + "planId": 102, "cardId": 13151, - "weight": 200 + "weight": 250 }, { "id": 6422, - "planId": 103, + "planId": 102, "cardId": 13161, - "weight": 200 + "weight": 250 }, { "id": 6423, - "planId": 103, + "planId": 102, "cardId": 13171, - "weight": 200 + "weight": 250 }, { "id": 6424, - "planId": 103, + "planId": 102, "cardId": 13181, - "weight": 200 + "weight": 250 }, { "id": 6425, - "planId": 103, + "planId": 102, "cardId": 13112, - "weight": 200 + "weight": 250 }, { "id": 6426, - "planId": 103, + "planId": 102, "cardId": 13122, - "weight": 200 + "weight": 250 }, { "id": 6427, - "planId": 103, + "planId": 102, "cardId": 13132, - "weight": 200 + "weight": 250 }, { "id": 6428, - "planId": 103, + "planId": 102, "cardId": 13142, - "weight": 200 + "weight": 250 }, { "id": 6429, - "planId": 103, + "planId": 102, "cardId": 13152, - "weight": 200 + "weight": 250 }, { "id": 6430, - "planId": 103, + "planId": 102, "cardId": 13162, - "weight": 200 + "weight": 250 }, { "id": 6431, - "planId": 103, + "planId": 102, "cardId": 13172, - "weight": 200 + "weight": 250 }, { "id": 6432, - "planId": 103, + "planId": 102, "cardId": 13182, - "weight": 200 + "weight": 250 }, { "id": 6433, - "planId": 103, + "planId": 102, "cardId": 12111, - "weight": 200 + "weight": 250 }, { "id": 6434, - "planId": 103, + "planId": 102, "cardId": 12121, - "weight": 200 + "weight": 250 }, { "id": 6435, - "planId": 103, + "planId": 102, "cardId": 12131, - "weight": 200 + "weight": 250 }, { "id": 6436, - "planId": 103, + "planId": 102, "cardId": 12141, - "weight": 200 + "weight": 250 }, { "id": 6437, - "planId": 103, + "planId": 102, "cardId": 12151, - "weight": 200 + "weight": 250 }, { "id": 6438, - "planId": 103, + "planId": 102, "cardId": 12161, - "weight": 200 + "weight": 250 }, { "id": 6439, - "planId": 103, + "planId": 102, "cardId": 12171, - "weight": 200 + "weight": 250 }, { "id": 6440, - "planId": 103, + "planId": 102, "cardId": 12181, - "weight": 200 + "weight": 250 }, { "id": 6441, - "planId": 103, + "planId": 102, "cardId": 12112, - "weight": 200 + "weight": 250 }, { "id": 6442, - "planId": 103, + "planId": 102, "cardId": 12122, - "weight": 200 + "weight": 250 }, { "id": 6443, - "planId": 103, + "planId": 102, "cardId": 12132, - "weight": 200 + "weight": 250 }, { "id": 6444, - "planId": 103, + "planId": 102, "cardId": 12142, - "weight": 200 + "weight": 250 }, { "id": 6445, - "planId": 103, + "planId": 102, "cardId": 12152, - "weight": 200 + "weight": 250 }, { "id": 6446, - "planId": 103, + "planId": 102, "cardId": 12162, - "weight": 200 + "weight": 250 }, { "id": 6447, - "planId": 103, + "planId": 102, "cardId": 12172, - "weight": 200 + "weight": 250 }, { "id": 6448, - "planId": 103, + "planId": 102, "cardId": 12182, - "weight": 200 + "weight": 250 }, { "id": 6449, - "planId": 103, + "planId": 102, "cardId": 16111, - "weight": 200 + "weight": 250 }, { "id": 6450, - "planId": 103, + "planId": 102, "cardId": 16121, - "weight": 200 + "weight": 250 }, { "id": 6451, - "planId": 103, + "planId": 102, "cardId": 16131, - "weight": 200 + "weight": 250 }, { "id": 6452, - "planId": 103, + "planId": 102, "cardId": 16141, - "weight": 200 + "weight": 250 }, { "id": 6453, - "planId": 103, + "planId": 102, "cardId": 16151, - "weight": 200 + "weight": 250 }, { "id": 6454, - "planId": 103, + "planId": 102, "cardId": 16161, - "weight": 200 + "weight": 250 }, { "id": 6455, - "planId": 103, + "planId": 102, "cardId": 16171, - "weight": 200 + "weight": 250 }, { "id": 6456, - "planId": 103, + "planId": 102, "cardId": 16181, - "weight": 200 + "weight": 250 }, { "id": 6457, - "planId": 103, + "planId": 102, "cardId": 16112, - "weight": 200 + "weight": 250 }, { "id": 6458, - "planId": 103, + "planId": 102, "cardId": 16122, - "weight": 200 + "weight": 250 }, { "id": 6459, - "planId": 103, + "planId": 102, "cardId": 16132, - "weight": 200 + "weight": 250 }, { "id": 6460, - "planId": 103, + "planId": 102, "cardId": 16142, - "weight": 200 + "weight": 250 }, { "id": 6461, - "planId": 103, + "planId": 102, "cardId": 16152, - "weight": 200 + "weight": 250 }, { "id": 6462, - "planId": 103, + "planId": 102, "cardId": 16162, - "weight": 200 + "weight": 250 }, { "id": 6463, - "planId": 103, + "planId": 102, "cardId": 16172, - "weight": 200 + "weight": 250 }, { "id": 6464, - "planId": 103, + "planId": 102, "cardId": 16182, - "weight": 200 + "weight": 250 }, { "id": 6465, - "planId": 103, + "planId": 102, "cardId": 11211, "weight": 300 }, { "id": 6466, - "planId": 103, + "planId": 102, "cardId": 11221, "weight": 300 }, { "id": 6467, - "planId": 103, + "planId": 102, "cardId": 11231, "weight": 300 }, { "id": 6468, - "planId": 103, + "planId": 102, "cardId": 11241, "weight": 300 }, { "id": 6469, - "planId": 103, + "planId": 102, "cardId": 11251, "weight": 300 }, { "id": 6470, - "planId": 103, + "planId": 102, "cardId": 11261, "weight": 300 }, { "id": 6471, - "planId": 103, + "planId": 102, "cardId": 11212, "weight": 300 }, { "id": 6472, - "planId": 103, + "planId": 102, "cardId": 11222, "weight": 300 }, { "id": 6473, - "planId": 103, + "planId": 102, "cardId": 11232, "weight": 300 }, { "id": 6474, - "planId": 103, + "planId": 102, "cardId": 11242, "weight": 300 }, { "id": 6475, - "planId": 103, + "planId": 102, "cardId": 11252, "weight": 300 }, { "id": 6476, - "planId": 103, + "planId": 102, "cardId": 11262, "weight": 300 }, { "id": 6477, - "planId": 103, + "planId": 102, "cardId": 14211, "weight": 300 }, { "id": 6478, - "planId": 103, + "planId": 102, "cardId": 14221, "weight": 300 }, { "id": 6479, - "planId": 103, + "planId": 102, "cardId": 14231, "weight": 300 }, { "id": 6480, - "planId": 103, + "planId": 102, "cardId": 14241, "weight": 300 }, { "id": 6481, - "planId": 103, + "planId": 102, "cardId": 14251, "weight": 300 }, { "id": 6482, - "planId": 103, + "planId": 102, "cardId": 14261, "weight": 300 }, { "id": 6483, - "planId": 103, + "planId": 102, "cardId": 14212, "weight": 300 }, { "id": 6484, - "planId": 103, + "planId": 102, "cardId": 14222, "weight": 300 }, { "id": 6485, - "planId": 103, + "planId": 102, "cardId": 14232, "weight": 300 }, { "id": 6486, - "planId": 103, + "planId": 102, "cardId": 14242, "weight": 300 }, { "id": 6487, - "planId": 103, + "planId": 102, "cardId": 14252, "weight": 300 }, { "id": 6488, - "planId": 103, + "planId": 102, "cardId": 14262, "weight": 300 }, { "id": 6489, - "planId": 103, + "planId": 102, "cardId": 17211, "weight": 300 }, { "id": 6490, - "planId": 103, + "planId": 102, "cardId": 17221, "weight": 300 }, { "id": 6491, - "planId": 103, + "planId": 102, "cardId": 17231, "weight": 300 }, { "id": 6492, - "planId": 103, + "planId": 102, "cardId": 17241, "weight": 300 }, { "id": 6493, - "planId": 103, + "planId": 102, "cardId": 17251, "weight": 300 }, { "id": 6494, - "planId": 103, + "planId": 102, "cardId": 17261, "weight": 300 }, { "id": 6495, - "planId": 103, + "planId": 102, "cardId": 17212, "weight": 300 }, { "id": 6496, - "planId": 103, + "planId": 102, "cardId": 17222, "weight": 300 }, { "id": 6497, - "planId": 103, + "planId": 102, "cardId": 17232, "weight": 300 }, { "id": 6498, - "planId": 103, + "planId": 102, "cardId": 17242, "weight": 300 }, { "id": 6499, - "planId": 103, + "planId": 102, "cardId": 17252, "weight": 300 }, { "id": 6500, - "planId": 103, + "planId": 102, "cardId": 17262, "weight": 300 }, { "id": 6501, - "planId": 103, + "planId": 102, "cardId": 15211, "weight": 300 }, { "id": 6502, - "planId": 103, + "planId": 102, "cardId": 15221, "weight": 300 }, { "id": 6503, - "planId": 103, + "planId": 102, "cardId": 15231, "weight": 300 }, { "id": 6504, - "planId": 103, + "planId": 102, "cardId": 15241, "weight": 300 }, { "id": 6505, - "planId": 103, + "planId": 102, "cardId": 15251, "weight": 300 }, { "id": 6506, - "planId": 103, + "planId": 102, "cardId": 15261, "weight": 300 }, { "id": 6507, - "planId": 103, + "planId": 102, "cardId": 15212, "weight": 300 }, { "id": 6508, - "planId": 103, + "planId": 102, "cardId": 15222, "weight": 300 }, { "id": 6509, - "planId": 103, + "planId": 102, "cardId": 15232, "weight": 300 }, { "id": 6510, - "planId": 103, + "planId": 102, "cardId": 15242, "weight": 300 }, { "id": 6511, - "planId": 103, + "planId": 102, "cardId": 15252, "weight": 300 }, { "id": 6512, - "planId": 103, + "planId": 102, "cardId": 15262, "weight": 300 }, { "id": 6513, - "planId": 103, + "planId": 102, "cardId": 18211, "weight": 300 }, { "id": 6514, - "planId": 103, + "planId": 102, "cardId": 18221, "weight": 300 }, { "id": 6515, - "planId": 103, + "planId": 102, "cardId": 18231, "weight": 300 }, { "id": 6516, - "planId": 103, + "planId": 102, "cardId": 18241, "weight": 300 }, { "id": 6517, - "planId": 103, + "planId": 102, "cardId": 18251, "weight": 300 }, { "id": 6518, - "planId": 103, + "planId": 102, "cardId": 18261, "weight": 300 }, { "id": 6519, - "planId": 103, + "planId": 102, "cardId": 18212, "weight": 300 }, { "id": 6520, - "planId": 103, + "planId": 102, "cardId": 18222, "weight": 300 }, { "id": 6521, - "planId": 103, + "planId": 102, "cardId": 18232, "weight": 300 }, { "id": 6522, - "planId": 103, + "planId": 102, "cardId": 18242, "weight": 300 }, { "id": 6523, - "planId": 103, + "planId": 102, "cardId": 18252, "weight": 300 }, { "id": 6524, - "planId": 103, + "planId": 102, "cardId": 18262, "weight": 300 }, { "id": 6525, - "planId": 103, + "planId": 102, "cardId": 13211, "weight": 300 }, { "id": 6526, - "planId": 103, + "planId": 102, "cardId": 13221, "weight": 300 }, { "id": 6527, - "planId": 103, + "planId": 102, "cardId": 13231, "weight": 300 }, { "id": 6528, - "planId": 103, + "planId": 102, "cardId": 13241, "weight": 300 }, { "id": 6529, - "planId": 103, + "planId": 102, "cardId": 13251, "weight": 300 }, { "id": 6530, - "planId": 103, + "planId": 102, "cardId": 13261, "weight": 300 }, { "id": 6531, - "planId": 103, + "planId": 102, "cardId": 13212, "weight": 300 }, { "id": 6532, - "planId": 103, + "planId": 102, "cardId": 13222, "weight": 300 }, { "id": 6533, - "planId": 103, + "planId": 102, "cardId": 13232, "weight": 300 }, { "id": 6534, - "planId": 103, + "planId": 102, "cardId": 13242, "weight": 300 }, { "id": 6535, - "planId": 103, + "planId": 102, "cardId": 13252, "weight": 300 }, { "id": 6536, - "planId": 103, + "planId": 102, "cardId": 13262, "weight": 300 }, { "id": 6537, - "planId": 103, + "planId": 102, "cardId": 12211, "weight": 300 }, { "id": 6538, - "planId": 103, + "planId": 102, "cardId": 12221, "weight": 300 }, { "id": 6539, - "planId": 103, + "planId": 102, "cardId": 12231, "weight": 300 }, { "id": 6540, - "planId": 103, + "planId": 102, "cardId": 12241, "weight": 300 }, { "id": 6541, - "planId": 103, + "planId": 102, "cardId": 12251, "weight": 300 }, { "id": 6542, - "planId": 103, + "planId": 102, "cardId": 12261, "weight": 300 }, { "id": 6543, - "planId": 103, + "planId": 102, "cardId": 12212, "weight": 300 }, { "id": 6544, - "planId": 103, + "planId": 102, "cardId": 12222, "weight": 300 }, { "id": 6545, - "planId": 103, + "planId": 102, "cardId": 12232, "weight": 300 }, { "id": 6546, - "planId": 103, + "planId": 102, "cardId": 12242, "weight": 300 }, { "id": 6547, - "planId": 103, + "planId": 102, "cardId": 12252, "weight": 300 }, { "id": 6548, - "planId": 103, + "planId": 102, "cardId": 12262, "weight": 300 }, { "id": 6549, - "planId": 103, + "planId": 102, "cardId": 16211, "weight": 300 }, { "id": 6550, - "planId": 103, + "planId": 102, "cardId": 16221, "weight": 300 }, { "id": 6551, - "planId": 103, + "planId": 102, "cardId": 16231, "weight": 300 }, { "id": 6552, - "planId": 103, + "planId": 102, "cardId": 16241, "weight": 300 }, { "id": 6553, - "planId": 103, + "planId": 102, "cardId": 16251, "weight": 300 }, { "id": 6554, - "planId": 103, + "planId": 102, "cardId": 16261, "weight": 300 }, { "id": 6555, - "planId": 103, + "planId": 102, "cardId": 16212, "weight": 300 }, { "id": 6556, - "planId": 103, + "planId": 102, "cardId": 16222, "weight": 300 }, { "id": 6557, - "planId": 103, + "planId": 102, "cardId": 16232, "weight": 300 }, { "id": 6558, - "planId": 103, + "planId": 102, "cardId": 16242, "weight": 300 }, { "id": 6559, - "planId": 103, + "planId": 102, "cardId": 16252, "weight": 300 }, { "id": 6560, - "planId": 103, + "planId": 102, "cardId": 16262, "weight": 300 }, { "id": 6561, - "planId": 103, + "planId": 102, "cardId": 11311, - "weight": 150 + "weight": 50 }, { "id": 6562, - "planId": 103, + "planId": 102, "cardId": 11321, - "weight": 150 + "weight": 50 }, { "id": 6563, - "planId": 103, + "planId": 102, "cardId": 11331, - "weight": 150 + "weight": 50 }, { "id": 6564, - "planId": 103, + "planId": 102, "cardId": 11341, - "weight": 150 + "weight": 50 }, { "id": 6565, - "planId": 103, + "planId": 102, "cardId": 11312, - "weight": 150 + "weight": 50 }, { "id": 6566, - "planId": 103, + "planId": 102, "cardId": 11322, - "weight": 150 + "weight": 50 }, { "id": 6567, - "planId": 103, + "planId": 102, "cardId": 11332, - "weight": 150 + "weight": 50 }, { "id": 6568, - "planId": 103, + "planId": 102, "cardId": 11342, - "weight": 150 + "weight": 50 }, { "id": 6569, - "planId": 103, + "planId": 102, "cardId": 14311, - "weight": 150 + "weight": 50 }, { "id": 6570, - "planId": 103, + "planId": 102, "cardId": 14321, - "weight": 150 + "weight": 50 }, { "id": 6571, - "planId": 103, + "planId": 102, "cardId": 14331, - "weight": 150 + "weight": 50 }, { "id": 6572, - "planId": 103, + "planId": 102, "cardId": 14341, - "weight": 150 + "weight": 50 }, { "id": 6573, - "planId": 103, + "planId": 102, "cardId": 14312, - "weight": 150 + "weight": 50 }, { "id": 6574, - "planId": 103, + "planId": 102, "cardId": 14322, - "weight": 150 + "weight": 50 }, { "id": 6575, - "planId": 103, + "planId": 102, "cardId": 14332, - "weight": 150 + "weight": 50 }, { "id": 6576, - "planId": 103, + "planId": 102, "cardId": 14342, - "weight": 150 + "weight": 50 }, { "id": 6577, - "planId": 103, + "planId": 102, "cardId": 17311, - "weight": 150 + "weight": 50 }, { "id": 6578, - "planId": 103, + "planId": 102, "cardId": 17321, - "weight": 150 + "weight": 50 }, { "id": 6579, - "planId": 103, + "planId": 102, "cardId": 17331, - "weight": 150 + "weight": 50 }, { "id": 6580, - "planId": 103, + "planId": 102, "cardId": 17341, - "weight": 150 + "weight": 50 }, { "id": 6581, - "planId": 103, + "planId": 102, "cardId": 17312, - "weight": 150 + "weight": 50 }, { "id": 6582, - "planId": 103, + "planId": 102, "cardId": 17322, - "weight": 150 + "weight": 50 }, { "id": 6583, - "planId": 103, + "planId": 102, "cardId": 17332, - "weight": 150 + "weight": 50 }, { "id": 6584, - "planId": 103, + "planId": 102, "cardId": 17342, - "weight": 150 + "weight": 50 }, { "id": 6585, - "planId": 103, + "planId": 102, "cardId": 15311, - "weight": 150 + "weight": 50 }, { "id": 6586, - "planId": 103, + "planId": 102, "cardId": 15321, - "weight": 150 + "weight": 50 }, { "id": 6587, - "planId": 103, + "planId": 102, "cardId": 15331, - "weight": 150 + "weight": 50 }, { "id": 6588, - "planId": 103, + "planId": 102, "cardId": 15341, - "weight": 150 + "weight": 50 }, { "id": 6589, - "planId": 103, + "planId": 102, "cardId": 15312, - "weight": 150 + "weight": 50 }, { "id": 6590, - "planId": 103, + "planId": 102, "cardId": 15322, - "weight": 150 + "weight": 50 }, { "id": 6591, - "planId": 103, + "planId": 102, "cardId": 15332, - "weight": 150 + "weight": 50 }, { "id": 6592, - "planId": 103, + "planId": 102, "cardId": 15342, - "weight": 150 + "weight": 50 }, { "id": 6593, - "planId": 103, + "planId": 102, "cardId": 18311, - "weight": 150 + "weight": 50 }, { "id": 6594, - "planId": 103, + "planId": 102, "cardId": 18321, - "weight": 150 + "weight": 50 }, { "id": 6595, - "planId": 103, + "planId": 102, "cardId": 18331, - "weight": 150 + "weight": 50 }, { "id": 6596, - "planId": 103, + "planId": 102, "cardId": 18341, - "weight": 150 + "weight": 50 }, { "id": 6597, - "planId": 103, + "planId": 102, "cardId": 18312, - "weight": 150 + "weight": 50 }, { "id": 6598, - "planId": 103, + "planId": 102, "cardId": 18322, - "weight": 150 + "weight": 50 }, { "id": 6599, - "planId": 103, + "planId": 102, "cardId": 18332, - "weight": 150 + "weight": 50 }, { "id": 6600, - "planId": 103, + "planId": 102, "cardId": 18342, - "weight": 150 + "weight": 50 }, { "id": 6601, - "planId": 103, + "planId": 102, "cardId": 13311, - "weight": 150 + "weight": 50 }, { "id": 6602, - "planId": 103, + "planId": 102, "cardId": 13321, - "weight": 150 + "weight": 50 }, { "id": 6603, - "planId": 103, + "planId": 102, "cardId": 13331, - "weight": 150 + "weight": 50 }, { "id": 6604, - "planId": 103, + "planId": 102, "cardId": 13341, - "weight": 150 + "weight": 50 }, { "id": 6605, - "planId": 103, + "planId": 102, "cardId": 13312, - "weight": 150 + "weight": 50 }, { "id": 6606, - "planId": 103, + "planId": 102, "cardId": 13322, - "weight": 150 + "weight": 50 }, { "id": 6607, - "planId": 103, + "planId": 102, "cardId": 13332, - "weight": 150 + "weight": 50 }, { "id": 6608, - "planId": 103, + "planId": 102, "cardId": 13342, - "weight": 150 + "weight": 50 }, { "id": 6609, - "planId": 103, + "planId": 102, "cardId": 12311, - "weight": 150 + "weight": 50 }, { "id": 6610, - "planId": 103, + "planId": 102, "cardId": 12321, - "weight": 150 + "weight": 50 }, { "id": 6611, - "planId": 103, + "planId": 102, "cardId": 12331, - "weight": 150 + "weight": 50 }, { "id": 6612, - "planId": 103, + "planId": 102, "cardId": 12341, - "weight": 150 + "weight": 50 }, { "id": 6613, - "planId": 103, + "planId": 102, "cardId": 12312, - "weight": 150 + "weight": 50 }, { "id": 6614, - "planId": 103, + "planId": 102, "cardId": 12322, - "weight": 150 + "weight": 50 }, { "id": 6615, - "planId": 103, + "planId": 102, "cardId": 12332, - "weight": 150 + "weight": 50 }, { "id": 6616, - "planId": 103, + "planId": 102, "cardId": 12342, - "weight": 150 + "weight": 50 }, { "id": 6617, - "planId": 103, + "planId": 102, "cardId": 16311, - "weight": 150 + "weight": 50 }, { "id": 6618, - "planId": 103, + "planId": 102, "cardId": 16321, - "weight": 150 + "weight": 50 }, { "id": 6619, - "planId": 103, + "planId": 102, "cardId": 16331, - "weight": 150 + "weight": 50 }, { "id": 6620, - "planId": 103, + "planId": 102, "cardId": 16341, - "weight": 150 + "weight": 50 }, { "id": 6621, - "planId": 103, + "planId": 102, "cardId": 16312, - "weight": 150 + "weight": 50 }, { "id": 6622, - "planId": 103, + "planId": 102, "cardId": 16322, - "weight": 150 + "weight": 50 }, { "id": 6623, - "planId": 103, + "planId": 102, "cardId": 16332, - "weight": 150 + "weight": 50 }, { "id": 6624, - "planId": 103, + "planId": 102, "cardId": 16342, - "weight": 150 + "weight": 50 }, { "id": 6625, "planId": 103, "cardId": 11111, - "weight": 90 + "weight": 250 }, { "id": 6626, "planId": 103, "cardId": 11121, - "weight": 90 + "weight": 250 }, { "id": 6627, "planId": 103, "cardId": 11131, - "weight": 90 + "weight": 250 }, { "id": 6628, "planId": 103, "cardId": 11141, - "weight": 90 + "weight": 250 }, { "id": 6629, "planId": 103, "cardId": 11151, - "weight": 90 + "weight": 250 }, { "id": 6630, "planId": 103, "cardId": 11161, - "weight": 90 + "weight": 250 }, { "id": 6631, "planId": 103, "cardId": 11171, - "weight": 90 + "weight": 250 }, { "id": 6632, "planId": 103, "cardId": 11181, - "weight": 90 + "weight": 250 }, { "id": 6633, "planId": 103, "cardId": 11112, - "weight": 90 + "weight": 250 }, { "id": 6634, "planId": 103, "cardId": 11122, - "weight": 90 + "weight": 250 }, { "id": 6635, "planId": 103, "cardId": 11132, - "weight": 90 + "weight": 250 }, { "id": 6636, "planId": 103, "cardId": 11142, - "weight": 90 + "weight": 250 }, { "id": 6637, "planId": 103, "cardId": 11152, - "weight": 90 + "weight": 250 }, { "id": 6638, "planId": 103, "cardId": 11162, - "weight": 90 + "weight": 250 }, { "id": 6639, "planId": 103, "cardId": 11172, - "weight": 90 + "weight": 250 }, { "id": 6640, "planId": 103, "cardId": 11182, - "weight": 90 + "weight": 250 }, { "id": 6641, "planId": 103, "cardId": 14111, - "weight": 90 + "weight": 250 }, { "id": 6642, "planId": 103, "cardId": 14121, - "weight": 90 + "weight": 250 }, { "id": 6643, "planId": 103, "cardId": 14131, - "weight": 90 + "weight": 250 }, { "id": 6644, "planId": 103, "cardId": 14141, - "weight": 90 + "weight": 250 }, { "id": 6645, "planId": 103, "cardId": 14151, - "weight": 90 + "weight": 250 }, { "id": 6646, "planId": 103, "cardId": 14161, - "weight": 90 + "weight": 250 }, { "id": 6647, "planId": 103, "cardId": 14171, - "weight": 90 + "weight": 250 }, { "id": 6648, "planId": 103, "cardId": 14181, - "weight": 90 + "weight": 250 }, { "id": 6649, "planId": 103, "cardId": 14112, - "weight": 90 + "weight": 250 }, { "id": 6650, "planId": 103, "cardId": 14122, - "weight": 90 + "weight": 250 }, { "id": 6651, "planId": 103, "cardId": 14132, - "weight": 90 + "weight": 250 }, { "id": 6652, "planId": 103, "cardId": 14142, - "weight": 90 + "weight": 250 }, { "id": 6653, "planId": 103, "cardId": 14152, - "weight": 90 + "weight": 250 }, { "id": 6654, "planId": 103, "cardId": 14162, - "weight": 90 + "weight": 250 }, { "id": 6655, "planId": 103, "cardId": 14172, - "weight": 90 + "weight": 250 }, { "id": 6656, "planId": 103, "cardId": 14182, - "weight": 90 + "weight": 250 }, { "id": 6657, "planId": 103, "cardId": 17111, - "weight": 90 + "weight": 250 }, { "id": 6658, "planId": 103, "cardId": 17121, - "weight": 90 + "weight": 250 }, { "id": 6659, "planId": 103, "cardId": 17131, - "weight": 90 + "weight": 250 }, { "id": 6660, "planId": 103, "cardId": 17141, - "weight": 90 + "weight": 250 }, { "id": 6661, "planId": 103, "cardId": 17151, - "weight": 90 + "weight": 250 }, { "id": 6662, "planId": 103, "cardId": 17161, - "weight": 90 + "weight": 250 }, { "id": 6663, "planId": 103, "cardId": 17171, - "weight": 90 + "weight": 250 }, { "id": 6664, "planId": 103, "cardId": 17181, - "weight": 90 + "weight": 250 }, { "id": 6665, "planId": 103, "cardId": 17112, - "weight": 90 + "weight": 250 }, { "id": 6666, "planId": 103, "cardId": 17122, - "weight": 90 + "weight": 250 }, { "id": 6667, "planId": 103, "cardId": 17132, - "weight": 90 + "weight": 250 }, { "id": 6668, "planId": 103, "cardId": 17172, - "weight": 90 + "weight": 250 }, { "id": 6669, "planId": 103, "cardId": 17152, - "weight": 90 + "weight": 250 }, { "id": 6670, "planId": 103, "cardId": 17162, - "weight": 90 + "weight": 250 }, { "id": 6671, "planId": 103, "cardId": 17172, - "weight": 90 + "weight": 250 }, { "id": 6672, "planId": 103, "cardId": 17182, - "weight": 90 + "weight": 250 }, { "id": 6673, "planId": 103, "cardId": 15111, - "weight": 90 + "weight": 250 }, { "id": 6674, "planId": 103, "cardId": 15121, - "weight": 90 + "weight": 250 }, { "id": 6675, "planId": 103, "cardId": 15131, - "weight": 90 + "weight": 250 }, { "id": 6676, "planId": 103, "cardId": 15141, - "weight": 90 + "weight": 250 }, { "id": 6677, "planId": 103, "cardId": 15151, - "weight": 90 + "weight": 250 }, { "id": 6678, "planId": 103, "cardId": 15161, - "weight": 90 + "weight": 250 }, { "id": 6679, "planId": 103, "cardId": 15171, - "weight": 90 + "weight": 250 }, { "id": 6680, "planId": 103, "cardId": 15181, - "weight": 90 + "weight": 250 }, { "id": 6681, "planId": 103, "cardId": 15112, - "weight": 90 + "weight": 250 }, { "id": 6682, "planId": 103, "cardId": 15122, - "weight": 90 + "weight": 250 }, { "id": 6683, "planId": 103, "cardId": 15132, - "weight": 90 + "weight": 250 }, { "id": 6684, "planId": 103, "cardId": 15142, - "weight": 90 + "weight": 250 }, { "id": 6685, "planId": 103, "cardId": 15152, - "weight": 90 + "weight": 250 }, { "id": 6686, "planId": 103, "cardId": 15162, - "weight": 90 + "weight": 250 }, { "id": 6687, "planId": 103, "cardId": 15172, - "weight": 90 + "weight": 250 }, { "id": 6688, "planId": 103, "cardId": 15182, - "weight": 90 + "weight": 250 }, { "id": 6689, "planId": 103, "cardId": 18111, - "weight": 90 + "weight": 250 }, { "id": 6690, "planId": 103, "cardId": 18121, - "weight": 90 + "weight": 250 }, { "id": 6691, "planId": 103, "cardId": 18131, - "weight": 90 + "weight": 250 }, { "id": 6692, "planId": 103, "cardId": 18141, - "weight": 90 + "weight": 250 }, { "id": 6693, "planId": 103, "cardId": 18151, - "weight": 90 + "weight": 250 }, { "id": 6694, "planId": 103, "cardId": 18161, - "weight": 90 + "weight": 250 }, { "id": 6695, "planId": 103, "cardId": 18171, - "weight": 90 + "weight": 250 }, { "id": 6696, "planId": 103, "cardId": 18181, - "weight": 90 + "weight": 250 }, { "id": 6697, "planId": 103, "cardId": 18112, - "weight": 90 + "weight": 250 }, { "id": 6698, "planId": 103, "cardId": 18122, - "weight": 90 + "weight": 250 }, { "id": 6699, "planId": 103, "cardId": 18132, - "weight": 90 + "weight": 250 }, { "id": 6700, "planId": 103, "cardId": 18142, - "weight": 90 + "weight": 250 }, { "id": 6701, "planId": 103, "cardId": 18152, - "weight": 90 + "weight": 250 }, { "id": 6702, "planId": 103, "cardId": 18162, - "weight": 90 + "weight": 250 }, { "id": 6703, "planId": 103, "cardId": 18172, - "weight": 90 + "weight": 250 }, { "id": 6704, "planId": 103, "cardId": 18182, - "weight": 90 + "weight": 250 }, { "id": 6705, "planId": 103, "cardId": 13111, - "weight": 90 + "weight": 250 }, { "id": 6706, "planId": 103, "cardId": 13121, - "weight": 90 + "weight": 250 }, { "id": 6707, "planId": 103, "cardId": 13131, - "weight": 90 + "weight": 250 }, { "id": 6708, "planId": 103, "cardId": 13141, - "weight": 90 + "weight": 250 }, { "id": 6709, "planId": 103, "cardId": 13151, - "weight": 90 + "weight": 250 }, { "id": 6710, "planId": 103, "cardId": 13161, - "weight": 90 + "weight": 250 }, { "id": 6711, "planId": 103, "cardId": 13171, - "weight": 90 + "weight": 250 }, { "id": 6712, "planId": 103, "cardId": 13181, - "weight": 90 + "weight": 250 }, { "id": 6713, "planId": 103, "cardId": 13112, - "weight": 90 + "weight": 250 }, { "id": 6714, "planId": 103, "cardId": 13122, - "weight": 90 + "weight": 250 }, { "id": 6715, "planId": 103, "cardId": 13132, - "weight": 90 + "weight": 250 }, { "id": 6716, "planId": 103, "cardId": 13142, - "weight": 90 + "weight": 250 }, { "id": 6717, "planId": 103, "cardId": 13152, - "weight": 90 + "weight": 250 }, { "id": 6718, "planId": 103, "cardId": 13162, - "weight": 90 + "weight": 250 }, { "id": 6719, "planId": 103, "cardId": 13172, - "weight": 90 + "weight": 250 }, { "id": 6720, "planId": 103, "cardId": 13182, - "weight": 90 + "weight": 250 }, { "id": 6721, "planId": 103, "cardId": 12111, - "weight": 90 + "weight": 250 }, { "id": 6722, "planId": 103, "cardId": 12121, - "weight": 90 + "weight": 250 }, { "id": 6723, "planId": 103, "cardId": 12131, - "weight": 90 + "weight": 250 }, { "id": 6724, "planId": 103, "cardId": 12141, - "weight": 90 + "weight": 250 }, { "id": 6725, "planId": 103, "cardId": 12151, - "weight": 90 + "weight": 250 }, { "id": 6726, "planId": 103, "cardId": 12161, - "weight": 90 + "weight": 250 }, { "id": 6727, "planId": 103, "cardId": 12171, - "weight": 90 + "weight": 250 }, { "id": 6728, "planId": 103, "cardId": 12181, - "weight": 90 + "weight": 250 }, { "id": 6729, "planId": 103, "cardId": 12112, - "weight": 90 + "weight": 250 }, { "id": 6730, "planId": 103, "cardId": 12122, - "weight": 90 + "weight": 250 }, { "id": 6731, "planId": 103, "cardId": 12132, - "weight": 90 + "weight": 250 }, { "id": 6732, "planId": 103, "cardId": 12142, - "weight": 90 + "weight": 250 }, { "id": 6733, "planId": 103, "cardId": 12152, - "weight": 90 + "weight": 250 }, { "id": 6734, "planId": 103, "cardId": 12162, - "weight": 90 + "weight": 250 }, { "id": 6735, "planId": 103, "cardId": 12172, - "weight": 90 + "weight": 250 }, { "id": 6736, "planId": 103, "cardId": 12182, - "weight": 90 + "weight": 250 }, { "id": 6737, "planId": 103, "cardId": 16111, - "weight": 90 + "weight": 250 }, { "id": 6738, "planId": 103, "cardId": 16121, - "weight": 90 + "weight": 250 }, { "id": 6739, "planId": 103, "cardId": 16131, - "weight": 90 + "weight": 250 }, { "id": 6740, "planId": 103, "cardId": 16141, - "weight": 90 + "weight": 250 }, { "id": 6741, "planId": 103, "cardId": 16151, - "weight": 90 + "weight": 250 }, { "id": 6742, "planId": 103, "cardId": 16161, - "weight": 90 + "weight": 250 }, { "id": 6743, "planId": 103, "cardId": 16171, - "weight": 90 + "weight": 250 }, { "id": 6744, "planId": 103, "cardId": 16181, - "weight": 90 + "weight": 250 }, { "id": 6745, "planId": 103, "cardId": 16112, - "weight": 90 + "weight": 250 }, { "id": 6746, "planId": 103, "cardId": 16122, - "weight": 90 + "weight": 250 }, { "id": 6747, "planId": 103, "cardId": 16132, - "weight": 90 + "weight": 250 }, { "id": 6748, "planId": 103, "cardId": 16142, - "weight": 90 + "weight": 250 }, { "id": 6749, "planId": 103, "cardId": 16152, - "weight": 90 + "weight": 250 }, { "id": 6750, "planId": 103, "cardId": 16162, - "weight": 90 + "weight": 250 }, { "id": 6751, "planId": 103, "cardId": 16172, - "weight": 90 + "weight": 250 }, { "id": 6752, "planId": 103, "cardId": 16182, - "weight": 90 + "weight": 250 }, { "id": 6753, "planId": 103, "cardId": 11211, - "weight": 160 + "weight": 300 }, { "id": 6754, "planId": 103, "cardId": 11221, - "weight": 160 + "weight": 300 }, { "id": 6755, "planId": 103, "cardId": 11231, - "weight": 160 + "weight": 300 }, { "id": 6756, "planId": 103, "cardId": 11241, - "weight": 160 + "weight": 300 }, { "id": 6757, "planId": 103, "cardId": 11251, - "weight": 160 + "weight": 300 }, { "id": 6758, "planId": 103, "cardId": 11261, - "weight": 160 + "weight": 300 }, { "id": 6759, "planId": 103, "cardId": 11212, - "weight": 160 + "weight": 300 }, { "id": 6760, "planId": 103, "cardId": 11222, - "weight": 160 + "weight": 300 }, { "id": 6761, "planId": 103, "cardId": 11232, - "weight": 160 + "weight": 300 }, { "id": 6762, "planId": 103, "cardId": 11242, - "weight": 160 + "weight": 300 }, { "id": 6763, "planId": 103, "cardId": 11252, - "weight": 160 + "weight": 300 }, { "id": 6764, "planId": 103, "cardId": 11262, - "weight": 160 + "weight": 300 }, { "id": 6765, "planId": 103, "cardId": 14211, - "weight": 160 + "weight": 300 }, { "id": 6766, "planId": 103, "cardId": 14221, - "weight": 160 + "weight": 300 }, { "id": 6767, "planId": 103, "cardId": 14231, - "weight": 160 + "weight": 300 }, { "id": 6768, "planId": 103, "cardId": 14241, - "weight": 160 + "weight": 300 }, { "id": 6769, "planId": 103, "cardId": 14251, - "weight": 160 + "weight": 300 }, { "id": 6770, "planId": 103, "cardId": 14261, - "weight": 160 + "weight": 300 }, { "id": 6771, "planId": 103, "cardId": 14212, - "weight": 160 + "weight": 300 }, { "id": 6772, "planId": 103, "cardId": 14222, - "weight": 160 + "weight": 300 }, { "id": 6773, "planId": 103, "cardId": 14232, - "weight": 160 + "weight": 300 }, { "id": 6774, "planId": 103, "cardId": 14242, - "weight": 160 + "weight": 300 }, { "id": 6775, "planId": 103, "cardId": 14252, - "weight": 160 + "weight": 300 }, { "id": 6776, "planId": 103, "cardId": 14262, - "weight": 160 + "weight": 300 }, { "id": 6777, "planId": 103, "cardId": 17211, - "weight": 160 + "weight": 300 }, { "id": 6778, "planId": 103, "cardId": 17221, - "weight": 160 + "weight": 300 }, { "id": 6779, "planId": 103, "cardId": 17231, - "weight": 160 + "weight": 300 }, { "id": 6780, "planId": 103, "cardId": 17241, - "weight": 160 + "weight": 300 }, { "id": 6781, "planId": 103, "cardId": 17251, - "weight": 160 + "weight": 300 }, { "id": 6782, "planId": 103, "cardId": 17261, - "weight": 160 + "weight": 300 }, { "id": 6783, "planId": 103, "cardId": 17212, - "weight": 160 + "weight": 300 }, { "id": 6784, "planId": 103, "cardId": 17222, - "weight": 160 + "weight": 300 }, { "id": 6785, "planId": 103, "cardId": 17232, - "weight": 160 + "weight": 300 }, { "id": 6786, "planId": 103, "cardId": 17242, - "weight": 160 + "weight": 300 }, { "id": 6787, "planId": 103, "cardId": 17252, - "weight": 160 + "weight": 300 }, { "id": 6788, "planId": 103, "cardId": 17262, - "weight": 160 + "weight": 300 }, { "id": 6789, "planId": 103, "cardId": 15211, - "weight": 160 + "weight": 300 }, { "id": 6790, "planId": 103, "cardId": 15221, - "weight": 160 + "weight": 300 }, { "id": 6791, "planId": 103, "cardId": 15231, - "weight": 160 + "weight": 300 }, { "id": 6792, "planId": 103, "cardId": 15241, - "weight": 160 + "weight": 300 }, { "id": 6793, "planId": 103, "cardId": 15251, - "weight": 160 + "weight": 300 }, { "id": 6794, "planId": 103, "cardId": 15261, - "weight": 160 + "weight": 300 }, { "id": 6795, "planId": 103, "cardId": 15212, - "weight": 160 + "weight": 300 }, { "id": 6796, "planId": 103, "cardId": 15222, - "weight": 160 + "weight": 300 }, { "id": 6797, "planId": 103, "cardId": 15232, - "weight": 160 + "weight": 300 }, { "id": 6798, "planId": 103, "cardId": 15242, - "weight": 160 + "weight": 300 }, { "id": 6799, "planId": 103, "cardId": 15252, - "weight": 160 + "weight": 300 }, { "id": 6800, "planId": 103, "cardId": 15262, - "weight": 160 + "weight": 300 }, { "id": 6801, "planId": 103, "cardId": 18211, - "weight": 160 + "weight": 300 }, { "id": 6802, "planId": 103, "cardId": 18221, - "weight": 160 + "weight": 300 }, { "id": 6803, "planId": 103, "cardId": 18231, - "weight": 160 + "weight": 300 }, { "id": 6804, "planId": 103, "cardId": 18241, - "weight": 160 + "weight": 300 }, { "id": 6805, "planId": 103, "cardId": 18251, - "weight": 160 + "weight": 300 }, { "id": 6806, "planId": 103, "cardId": 18261, - "weight": 160 + "weight": 300 }, { "id": 6807, "planId": 103, "cardId": 18212, - "weight": 160 + "weight": 300 }, { "id": 6808, "planId": 103, "cardId": 18222, - "weight": 160 + "weight": 300 }, { "id": 6809, "planId": 103, "cardId": 18232, - "weight": 160 + "weight": 300 }, { "id": 6810, "planId": 103, "cardId": 18242, - "weight": 160 + "weight": 300 }, { "id": 6811, "planId": 103, "cardId": 18252, - "weight": 160 + "weight": 300 }, { "id": 6812, "planId": 103, "cardId": 18262, - "weight": 160 + "weight": 300 }, { "id": 6813, "planId": 103, "cardId": 13211, - "weight": 160 + "weight": 300 }, { "id": 6814, "planId": 103, "cardId": 13221, - "weight": 160 + "weight": 300 }, { "id": 6815, "planId": 103, "cardId": 13231, - "weight": 160 + "weight": 300 }, { "id": 6816, "planId": 103, "cardId": 13241, - "weight": 160 + "weight": 300 }, { "id": 6817, "planId": 103, "cardId": 13251, - "weight": 160 + "weight": 300 }, { "id": 6818, "planId": 103, "cardId": 13261, - "weight": 160 + "weight": 300 }, { "id": 6819, "planId": 103, "cardId": 13212, - "weight": 160 + "weight": 300 }, { "id": 6820, "planId": 103, "cardId": 13222, - "weight": 160 + "weight": 300 }, { "id": 6821, "planId": 103, "cardId": 13232, - "weight": 160 + "weight": 300 }, { "id": 6822, "planId": 103, "cardId": 13242, - "weight": 160 + "weight": 300 }, { "id": 6823, "planId": 103, "cardId": 13252, - "weight": 160 + "weight": 300 }, { "id": 6824, "planId": 103, "cardId": 13262, - "weight": 160 + "weight": 300 }, { "id": 6825, "planId": 103, "cardId": 12211, - "weight": 160 + "weight": 300 }, { "id": 6826, "planId": 103, "cardId": 12221, - "weight": 160 + "weight": 300 }, { "id": 6827, "planId": 103, "cardId": 12231, - "weight": 160 + "weight": 300 }, { "id": 6828, "planId": 103, "cardId": 12241, - "weight": 160 + "weight": 300 }, { "id": 6829, "planId": 103, "cardId": 12251, - "weight": 160 + "weight": 300 }, { "id": 6830, "planId": 103, "cardId": 12261, - "weight": 160 + "weight": 300 }, { "id": 6831, "planId": 103, "cardId": 12212, - "weight": 160 + "weight": 300 }, { "id": 6832, "planId": 103, "cardId": 12222, - "weight": 160 + "weight": 300 }, { "id": 6833, "planId": 103, "cardId": 12232, - "weight": 160 + "weight": 300 }, { "id": 6834, "planId": 103, "cardId": 12242, - "weight": 160 + "weight": 300 }, { "id": 6835, "planId": 103, "cardId": 12252, - "weight": 160 + "weight": 300 }, { "id": 6836, "planId": 103, "cardId": 12262, - "weight": 160 + "weight": 300 }, { "id": 6837, "planId": 103, "cardId": 16211, - "weight": 160 + "weight": 300 }, { "id": 6838, "planId": 103, "cardId": 16221, - "weight": 160 + "weight": 300 }, { "id": 6839, "planId": 103, "cardId": 16231, - "weight": 160 + "weight": 300 }, { "id": 6840, "planId": 103, "cardId": 16241, - "weight": 160 + "weight": 300 }, { "id": 6841, "planId": 103, "cardId": 16251, - "weight": 160 + "weight": 300 }, { "id": 6842, "planId": 103, "cardId": 16261, - "weight": 160 + "weight": 300 }, { "id": 6843, "planId": 103, "cardId": 16212, - "weight": 160 + "weight": 300 }, { "id": 6844, "planId": 103, "cardId": 16222, - "weight": 160 + "weight": 300 }, { "id": 6845, "planId": 103, "cardId": 16232, - "weight": 160 + "weight": 300 }, { "id": 6846, "planId": 103, "cardId": 16242, - "weight": 160 + "weight": 300 }, { "id": 6847, "planId": 103, "cardId": 16252, - "weight": 160 + "weight": 300 }, { "id": 6848, "planId": 103, "cardId": 16262, - "weight": 160 + "weight": 300 }, { "id": 6849, "planId": 103, "cardId": 11311, - "weight": 180 + "weight": 50 }, { "id": 6850, "planId": 103, "cardId": 11321, - "weight": 180 + "weight": 50 }, { "id": 6851, "planId": 103, "cardId": 11331, - "weight": 180 + "weight": 50 }, { "id": 6852, "planId": 103, "cardId": 11341, - "weight": 180 + "weight": 50 }, { "id": 6853, "planId": 103, "cardId": 11312, - "weight": 180 + "weight": 50 }, { "id": 6854, "planId": 103, "cardId": 11322, - "weight": 180 + "weight": 50 }, { "id": 6855, "planId": 103, "cardId": 11332, - "weight": 180 + "weight": 50 }, { "id": 6856, "planId": 103, "cardId": 11342, - "weight": 180 + "weight": 50 }, { "id": 6857, "planId": 103, "cardId": 14311, - "weight": 180 + "weight": 50 }, { "id": 6858, "planId": 103, "cardId": 14321, - "weight": 180 + "weight": 50 }, { "id": 6859, "planId": 103, "cardId": 14331, - "weight": 180 + "weight": 50 }, { "id": 6860, "planId": 103, "cardId": 14341, - "weight": 180 + "weight": 50 }, { "id": 6861, "planId": 103, "cardId": 14312, - "weight": 180 + "weight": 50 }, { "id": 6862, "planId": 103, "cardId": 14322, - "weight": 180 + "weight": 50 }, { "id": 6863, "planId": 103, "cardId": 14332, - "weight": 180 + "weight": 50 }, { "id": 6864, "planId": 103, "cardId": 14342, - "weight": 180 + "weight": 50 }, { "id": 6865, "planId": 103, "cardId": 17311, - "weight": 180 + "weight": 50 }, { "id": 6866, "planId": 103, "cardId": 17321, - "weight": 180 + "weight": 50 }, { "id": 6867, "planId": 103, "cardId": 17331, - "weight": 180 + "weight": 50 }, { "id": 6868, "planId": 103, "cardId": 17341, - "weight": 180 + "weight": 50 }, { "id": 6869, "planId": 103, "cardId": 17312, - "weight": 180 + "weight": 50 }, { "id": 6870, "planId": 103, "cardId": 17322, - "weight": 180 + "weight": 50 }, { "id": 6871, "planId": 103, "cardId": 17332, - "weight": 180 + "weight": 50 }, { "id": 6872, "planId": 103, "cardId": 17342, - "weight": 180 + "weight": 50 }, { "id": 6873, "planId": 103, "cardId": 15311, - "weight": 180 + "weight": 50 }, { "id": 6874, "planId": 103, "cardId": 15321, - "weight": 180 + "weight": 50 }, { "id": 6875, "planId": 103, "cardId": 15331, - "weight": 180 + "weight": 50 }, { "id": 6876, "planId": 103, "cardId": 15341, - "weight": 180 + "weight": 50 }, { "id": 6877, "planId": 103, "cardId": 15312, - "weight": 180 + "weight": 50 }, { "id": 6878, "planId": 103, "cardId": 15322, - "weight": 180 + "weight": 50 }, { "id": 6879, "planId": 103, "cardId": 15332, - "weight": 180 + "weight": 50 }, { "id": 6880, "planId": 103, "cardId": 15342, - "weight": 180 + "weight": 50 }, { "id": 6881, "planId": 103, "cardId": 18311, - "weight": 180 + "weight": 50 }, { "id": 6882, "planId": 103, "cardId": 18321, - "weight": 180 + "weight": 50 }, { "id": 6883, "planId": 103, "cardId": 18331, - "weight": 180 + "weight": 50 }, { "id": 6884, "planId": 103, "cardId": 18341, - "weight": 180 + "weight": 50 }, { "id": 6885, "planId": 103, "cardId": 18312, - "weight": 180 + "weight": 50 }, { "id": 6886, "planId": 103, "cardId": 18322, - "weight": 180 + "weight": 50 }, { "id": 6887, "planId": 103, "cardId": 18332, - "weight": 180 + "weight": 50 }, { "id": 6888, "planId": 103, "cardId": 18342, - "weight": 180 + "weight": 50 }, { "id": 6889, "planId": 103, "cardId": 13311, - "weight": 180 + "weight": 50 }, { "id": 6890, "planId": 103, "cardId": 13321, - "weight": 180 + "weight": 50 }, { "id": 6891, "planId": 103, "cardId": 13331, - "weight": 180 + "weight": 50 }, { "id": 6892, "planId": 103, "cardId": 13341, - "weight": 180 + "weight": 50 }, { "id": 6893, "planId": 103, "cardId": 13312, - "weight": 180 + "weight": 50 }, { "id": 6894, "planId": 103, "cardId": 13322, - "weight": 180 + "weight": 50 }, { "id": 6895, "planId": 103, "cardId": 13332, - "weight": 180 + "weight": 50 }, { "id": 6896, "planId": 103, "cardId": 13342, - "weight": 180 + "weight": 50 }, { "id": 6897, "planId": 103, "cardId": 12311, - "weight": 180 + "weight": 50 }, { "id": 6898, "planId": 103, "cardId": 12321, - "weight": 180 + "weight": 50 }, { "id": 6899, "planId": 103, "cardId": 12331, - "weight": 180 + "weight": 50 }, { "id": 6900, "planId": 103, "cardId": 12341, - "weight": 180 + "weight": 50 }, { "id": 6901, "planId": 103, "cardId": 12312, - "weight": 180 + "weight": 50 }, { "id": 6902, "planId": 103, "cardId": 12322, - "weight": 180 + "weight": 50 }, { "id": 6903, "planId": 103, "cardId": 12332, - "weight": 180 + "weight": 50 }, { "id": 6904, "planId": 103, "cardId": 12342, - "weight": 180 + "weight": 50 }, { "id": 6905, "planId": 103, "cardId": 16311, - "weight": 180 + "weight": 50 }, { "id": 6906, "planId": 103, "cardId": 16321, - "weight": 180 + "weight": 50 }, { "id": 6907, "planId": 103, "cardId": 16331, - "weight": 180 + "weight": 50 }, { "id": 6908, "planId": 103, "cardId": 16341, - "weight": 180 + "weight": 50 }, { "id": 6909, "planId": 103, "cardId": 16312, - "weight": 180 + "weight": 50 }, { "id": 6910, "planId": 103, "cardId": 16322, - "weight": 180 + "weight": 50 }, { "id": 6911, "planId": 103, "cardId": 16332, - "weight": 180 + "weight": 50 }, { "id": 6912, "planId": 103, "cardId": 16342, - "weight": 180 + "weight": 50 } ] \ No newline at end of file diff --git a/shared/resource/jsons/dic_rougePassive_weight.json b/shared/resource/jsons/dic_rougePassive_weight.json new file mode 100644 index 000000000..419f7164c --- /dev/null +++ b/shared/resource/jsons/dic_rougePassive_weight.json @@ -0,0 +1,386 @@ +[ + { + "id": 1, + "authorType": 1, + "quality": 1, + "level": 1, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 2, + "authorType": 1, + "quality": 1, + "level": 2, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 3, + "authorType": 1, + "quality": 2, + "level": 1, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 4, + "authorType": 1, + "quality": 2, + "level": 2, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 5, + "authorType": 1, + "quality": 3, + "level": 1, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 6, + "authorType": 1, + "quality": 3, + "level": 2, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 7, + "authorType": 2, + "quality": 1, + "level": 1, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 8, + "authorType": 2, + "quality": 1, + "level": 2, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 9, + "authorType": 2, + "quality": 2, + "level": 1, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 10, + "authorType": 2, + "quality": 2, + "level": 2, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 11, + "authorType": 2, + "quality": 3, + "level": 1, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 12, + "authorType": 2, + "quality": 3, + "level": 2, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 13, + "authorType": 3, + "quality": 1, + "level": 1, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 14, + "authorType": 3, + "quality": 1, + "level": 2, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 15, + "authorType": 3, + "quality": 2, + "level": 1, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 16, + "authorType": 3, + "quality": 2, + "level": 2, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 17, + "authorType": 3, + "quality": 3, + "level": 1, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 18, + "authorType": 3, + "quality": 3, + "level": 2, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 19, + "authorType": 4, + "quality": 1, + "level": 1, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 20, + "authorType": 4, + "quality": 1, + "level": 2, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 21, + "authorType": 4, + "quality": 2, + "level": 1, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 22, + "authorType": 4, + "quality": 2, + "level": 2, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 23, + "authorType": 4, + "quality": 3, + "level": 1, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 24, + "authorType": 4, + "quality": 3, + "level": 2, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 25, + "authorType": 5, + "quality": 1, + "level": 1, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 26, + "authorType": 5, + "quality": 1, + "level": 2, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 27, + "authorType": 5, + "quality": 2, + "level": 1, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 28, + "authorType": 5, + "quality": 2, + "level": 2, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 29, + "authorType": 5, + "quality": 3, + "level": 1, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 30, + "authorType": 5, + "quality": 3, + "level": 2, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 31, + "authorType": 6, + "quality": 1, + "level": 1, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 32, + "authorType": 6, + "quality": 1, + "level": 2, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 33, + "authorType": 6, + "quality": 2, + "level": 1, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 34, + "authorType": 6, + "quality": 2, + "level": 2, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 35, + "authorType": 6, + "quality": 3, + "level": 1, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 36, + "authorType": 6, + "quality": 3, + "level": 2, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 37, + "authorType": 7, + "quality": 1, + "level": 1, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 38, + "authorType": 7, + "quality": 1, + "level": 2, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 39, + "authorType": 7, + "quality": 2, + "level": 1, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 40, + "authorType": 7, + "quality": 2, + "level": 2, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 41, + "authorType": 7, + "quality": 3, + "level": 1, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 42, + "authorType": 7, + "quality": 3, + "level": 2, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 43, + "authorType": 8, + "quality": 1, + "level": 1, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 44, + "authorType": 8, + "quality": 1, + "level": 2, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 45, + "authorType": 8, + "quality": 2, + "level": 1, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 46, + "authorType": 8, + "quality": 2, + "level": 2, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 47, + "authorType": 8, + "quality": 3, + "level": 1, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + }, + { + "id": 48, + "authorType": 8, + "quality": 3, + "level": 2, + "authorTypeWeightAdd": 800, + "getHolyWeightAdd": 500 + } +] \ No newline at end of file