Get Dependents

SpreadJS provides extensive support for formula auditing by providing users the ability to display relationships between formulas and cells. This can be done by tracing the precedent and dependent cells in the worksheet. The following sample uses the getDependents method to get the dependent cellRange information object for an array of cells. In this example, click on cell C10 to see it's dependent cells.

Description
app.vue
index.html
data.js
Copy to CodeMine

Dependents are cells or ranges affected by the current cell's formula.

Set formula =SUM(A1) in cell B1. Cell B1 is the dependent cell of cell A1.

Use the getDependents method to get the dependent cellRange information object array of cell. As shown in the following code.

    var childNodes = sheet.getDependents(row, col);
Dependents are cells or ranges affected by the current cell's formula. Set formula =SUM(A1) in cell B1. Cell B1 is the dependent cell of cell A1. Use the getDependents method to get the dependent cellRange information object array of cell. As shown in the following code.
<template> <div class="sample-tutorial"> <gc-spread-sheets class="sample-spreadsheets" @workbookInitialized="init"></gc-spread-sheets> <div id="statusBar"></div> </div> </template> <script setup> import { ref } from "vue"; import "@mescius/spread-sheets-vue"; import GC from "@mescius/spread-sheets"; const precedentLevelColor = [ "#FFFFFF", "#19E093", "#09E8DB", "#12A0D1", "#096CE8", "#0926DE", ]; const dependentLevelColor = [ "#FFFFFF", "#ADDE0B", "#E8DD0C", "#D1AD00", "#E8A90C", "#E08804", ]; const spreadRef = ref(null); const init = (spread) => { spreadRef.value = spread; initSpread(spread); initStatusBar(spread); buildNodeTreeAndPaint(spread); } function initSpread(spread) { if (data.length > 0) { spread.fromJSON(data[0]); let sheet = spread.getActiveSheet(); dependentLevelColor.forEach(function (color, index) { sheet .getCell(26, 7 - index, 3) .backColor(color) .text(index.toString()) .font("bold 24px") .hAlign(GC.Spread.Sheets.HorizontalAlign.center); }); precedentLevelColor.forEach(function (color, index) { sheet .getCell(26, 7 + index, 3) .backColor(color) .text(index.toString()) .font("bold 24px") .hAlign(GC.Spread.Sheets.HorizontalAlign.center); }); sheet.getCell(26, 1).text("dependent"); sheet.setStyle(26, 1, sheet.getStyle(10, 0)); sheet.getCell(26, 13).text("precedent"); sheet.setStyle(26, 13, sheet.getStyle(10, 0)); sheet.getCell(26, 7).text("C"); } } function initStatusBar(spread) { let statusBarDOM = document.getElementById("statusBar"); let statusBar = new GC.Spread.Sheets.StatusBar.StatusBar(statusBarDOM); statusBar.bind(spread); } function buildNodeTreeAndPaint(spread) { let sheet = spread.getActiveSheet(); let oldDependentNodeTree, oldPrecedentNodeTree; sheet.bind(GC.Spread.Sheets.Events.SelectionChanging, function (e, info) { spread.suspendPaint(); if (oldDependentNodeTree || oldPrecedentNodeTree) { if ( oldDependentNodeTree.dependentChildNodes !== undefined || oldPrecedentNodeTree.precedentChildNodes !== undefined ) { paintDependentCells(oldDependentNodeTree, true); paintPrecedentCells(oldPrecedentNodeTree, true); } } let newRow = info.newSelections[0].row; let newCol = info.newSelections[0].col; let dependentNodeTree = createDependentNodeTree( newRow, newCol, sheet ); oldDependentNodeTree = dependentNodeTree; let precedentNodeTree = createPrecedentNodeTree( newRow, newCol, sheet ); oldPrecedentNodeTree = precedentNodeTree; if ( precedentNodeTree.precedentChildNodes !== undefined || dependentNodeTree.dependentChildNodes !== undefined ) { paintDependentCells(dependentNodeTree); paintPrecedentCells(precedentNodeTree); } spread.resumePaint(); }); } function createPrecedentNodeTree(row, col, sheet, precedentLevel) { if (precedentLevel === undefined) { precedentLevel = 0; } let node = { row: row, col: col, sheet: sheet, level: precedentLevel, }; let precedentChildNodes = addPrecedentChildNode( row, col, sheet, precedentLevel ); if (precedentChildNodes.length > 0) { node.precedentChildNodes = precedentChildNodes; } return node; } function createDependentNodeTree(row, col, sheet, dependentLevel) { if (dependentLevel === undefined) { dependentLevel = 0; } let node = { row: row, col: col, sheet: sheet, level: dependentLevel, }; let dependentChildNodes = addDependentChildNode( row, col, sheet, dependentLevel ); if (dependentChildNodes.length > 0) { node.dependentChildNodes = dependentChildNodes; } return node; } function addDependentChildNode(row, col, sheet, dependentLevel) { let childNodeArray = []; let childNodes = sheet.getDependents(row, col); if (childNodes.length >= 1) { dependentLevel++; childNodes.forEach(function (node) { let _sheet = sheet.parent.getSheetFromName(node.sheetName); childNodeArray.push( createDependentNodeTree( node.row, node.col, _sheet, dependentLevel ) ); }); } return childNodeArray; } function addPrecedentChildNode(row, col, sheet, precedentLevel) { let childNodeArray = []; let childNodes = sheet.getPrecedents(row, col); if (childNodes.length >= 1) { precedentLevel++; childNodes.forEach(function (node) { let row = node.row, col = node.col, rowCount = node.rowCount, colCount = node.colCount, _sheet = sheet.parent.getSheetFromName(node.sheetName); if (rowCount > 1 || colCount > 1) { for (let r = row; r < row + rowCount; r++) { for (let c = col; c < col + colCount; c++) { childNodeArray.push( createPrecedentNodeTree(r, c, _sheet, precedentLevel) ); } } } else { childNodeArray.push( createPrecedentNodeTree(row, col, _sheet, precedentLevel) ); } }); } return childNodeArray; } function paintDependentCells(nodeTree, clearFlag) { let currentRow = nodeTree.row, currentCol = nodeTree.col, currentSheet = nodeTree.sheet, currentLevel = nodeTree.level; let dependentChildNodes = nodeTree.dependentChildNodes; currentSheet .getCell(currentRow, currentCol) .backColor(clearFlag ? "white" : dependentLevelColor[currentLevel]); if (dependentChildNodes) { dependentChildNodes.forEach(function (node) { paintDependentCells(node, clearFlag); }); } } function paintPrecedentCells(nodeTree, clearFlag) { let currentRow = nodeTree.row, currentCol = nodeTree.col, currentSheet = nodeTree.sheet, currentLevel = nodeTree.level; let precedentChildNodes = nodeTree.precedentChildNodes; currentSheet .getCell(currentRow, currentCol) .backColor(clearFlag ? "white" : precedentLevelColor[currentLevel]); if (precedentChildNodes) { precedentChildNodes.forEach(function (node) { paintPrecedentCells(node, clearFlag); }); } } </script> <style scoped> .sample-tutorial { position: relative; height: 100%; overflow: hidden; } body { position: absolute; top: 0; bottom: 0; left: 0; right: 0; height: 100%; } .sample-spreadsheets{ height: calc(100% - 30px); } #app{ height: 100%; width: 100%; } #statusBar { width: 100%; height: 30px; } </style>
<!DOCTYPE html> <html lang="en" style="height:100%;font-size:14px;"> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <title>SpreadJS VUE</title> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <link rel="stylesheet" type="text/css" href="$DEMOROOT$/en/vue3/node_modules/@mescius/spread-sheets/styles/gc.spread.sheets.excel2013white.css"> <script src="$DEMOROOT$/en/vue3/node_modules/systemjs/dist/system.src.js"></script> <script src="./systemjs.config.js"></script> <script src="./compiler.js" type="module"></script> <script src="./src/data.js"></script> <script> var System = SystemJS; System.import("./src/app.js"); System.import('$DEMOROOT$/en/lib/vue3/license.js'); </script> </head> <body> <div id="app"></div> </body> </html>
var data = [{ "version": "12.1.0", "tabStripRatio": 0.6, "sheets": { "Channel Marketing Budget": { "name": "Channel Marketing Budget", "rowCount": 65, "columnCount": 21, "activeRow": 29, "activeCol": 8, "zoomFactor": 0.8, "frozenRowCount": 3, "theme": { "name": "Office", "themeColor": { "name": "Custom 127", "background1": {"a": 255, "r": 255, "g": 255, "b": 255}, "background2": {"a": 255, "r": 255, "g": 255, "b": 255}, "text1": {"a": 255, "r": 0, "g": 0, "b": 0}, "text2": {"a": 255, "r": 0, "g": 0, "b": 0}, "accent1": {"a": 255, "r": 6, "g": 73, "b": 107}, "accent2": {"a": 255, "r": 50, "g": 114, "b": 112}, "accent3": {"a": 255, "r": 120, "g": 189, "b": 155}, "accent4": {"a": 255, "r": 226, "g": 238, "b": 192}, "accent5": {"a": 255, "r": 169, "g": 215, "b": 168}, "accent6": {"a": 255, "r": 210, "g": 108, "b": 108}, "hyperlink": {"a": 255, "r": 70, "g": 160, "b": 201}, "followedHyperlink": {"a": 255, "r": 154, "g": 96, "b": 162} }, "headingFont": "Franklin Gothic Medium", "bodyFont": "Franklin Gothic Book" }, "data": { "dataTable": { "0": { "0": {"style": "__builtInStyle35", "value":"CHANNEL MARKETING BUDGET"}, "1": {"style": "__builtInStyle35"}, "2": {"style": "__builtInStyle35"}, "3": {"style": "__builtInStyle35"}, "4": {"style": "__builtInStyle35"}, "5": {"style": "__builtInStyle35"}, "6": {"style": "__builtInStyle35"}, "7": {"style": "__builtInStyle35"}, "8": {"style": "__builtInStyle35"}, "9": {"style": "__builtInStyle35"}, "10": {"style": "__builtInStyle35"}, "11": {"style": "__builtInStyle35"}, "12": {"style": "__builtInStyle35"}, "13": {"style": "__builtInStyle35"}, "14": {"style": "__builtInStyle35"}, "15": {"style": {"hAlign": 1}} }, "1": { "0": {"value": " ", "style": "__builtInStyle36"}, "1": { "value": "Rate", "style": { "backColor": "#12355b", "foreColor": "Background 1 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "2": { "value": "Month 1", "style": { "backColor": "#12355b", "foreColor": "Background 1 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "3": { "value": "Month 2", "style": { "backColor": "#12355b", "foreColor": "Background 1 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "4": { "value": "Month 3", "style": { "backColor": "#12355b", "foreColor": "Background 1 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "5": { "value": "Month 4", "style": { "backColor": "#12355b", "foreColor": "Background 1 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "6": { "value": "Month 5", "style": { "backColor": "#12355b", "foreColor": "Background 1 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "7": { "value": "Month 6", "style": { "backColor": "#12355b", "foreColor": "Background 1 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "8": { "value": "Month 7", "style": { "backColor": "#12355b", "foreColor": "Background 1 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "9": { "value": "Month 8", "style": { "backColor": "#12355b", "foreColor": "Background 1 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "10": { "value": "Month 9", "style": { "backColor": "#12355b", "foreColor": "Background 1 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "11": { "value": "Month 10", "style": { "backColor": "#12355b", "foreColor": "Background 1 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "12": { "value": "Month 11", "style": { "backColor": "#12355b", "foreColor": "Background 1 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "13": { "value": "Month 12", "style": { "backColor": "#12355b", "foreColor": "Background 1 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "14": { "value": "Total", "style": { "backColor": "#1b335a", "foreColor": "Background 2 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "formatter": "0.00", "borderLeft": {"color": "#000000", "style": 1}, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } } }, "2": { "0": {"value": "ANTICIPATED SALES TOTAL $(000)", "style": "__builtInStyle37"}, "1": { "value": " ", "style": { "backColor": "#ffffff", "foreColor": "#12355b", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "2": { "value": 750, "style": { "backColor": "#ffffff", "foreColor": "#12355b", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "3": { "value": "200", "style": { "backColor": "#ffffff", "foreColor": "#12355b", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "4": { "value": "500", "style": { "backColor": "#ffffff", "foreColor": "#12355b", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "5": { "value": 1500, "style": { "backColor": "#ffffff", "foreColor": "#12355b", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "6": { "value": 1200, "style": { "backColor": "#ffffff", "foreColor": "#12355b", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "7": { "value": 1500, "style": { "backColor": "#ffffff", "foreColor": "#12355b", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "8": { "value": 1500, "style": { "backColor": "#ffffff", "foreColor": "#12355b", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "9": { "value": 1800, "style": { "backColor": "#ffffff", "foreColor": "#12355b", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "10": { "value": 2000, "style": { "backColor": "#ffffff", "foreColor": "#12355b", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "11": { "value": 2000, "style": { "backColor": "#ffffff", "foreColor": "#12355b", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "12": { "value": 2000, "style": { "backColor": "#ffffff", "foreColor": "#12355b", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "13": { "value": 2000, "style": { "backColor": "#ffffff", "foreColor": "#12355b", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "14": { "value": 16950, "style": { "backColor": "#ffffff", "foreColor": "#12355b", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(C3:N3)" }, "15": {"style": "__builtInStyle9"} }, "3": { "0": {"value": "AGENT/BROKER ITEMS", "style": "__builtInTableStyle0__builtInStyle39"}, "1": { "value": "Rate", "style": { "backColor": "#12355b", "foreColor": "Background 2 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "2": { "value": "Month 1", "style": { "backColor": "#12355b", "foreColor": "Background 2 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "3": { "value": "Month 2", "style": { "backColor": "#12355b", "foreColor": "Background 2 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "4": { "value": "Month 3", "style": { "backColor": "#12355b", "foreColor": "Background 2 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "5": { "value": "Month 4", "style": { "backColor": "#12355b", "foreColor": "Background 2 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "6": { "value": "Month 5", "style": { "backColor": "#12355b", "foreColor": "Background 2 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "7": { "value": "Month 6", "style": { "backColor": "#12355b", "foreColor": "Background 2 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "8": { "value": "Month 7", "style": { "backColor": "#12355b", "foreColor": "Background 2 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "9": { "value": "Month 8", "style": { "backColor": "#12355b", "foreColor": "Background 2 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "10": { "value": "Month 9", "style": { "backColor": "#12355b", "foreColor": "Background 2 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "11": { "value": "Month 10", "style": { "backColor": "#12355b", "foreColor": "Background 2 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "12": { "value": "Month 11", "style": { "backColor": "#12355b", "foreColor": "Background 2 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "13": { "value": "Month 12", "style": { "backColor": "#12355b", "foreColor": "Background 2 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "14": { "style": { "backColor": "#12355b", "foreColor": "Background 2 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "formatter": "#,##0.00", "borderLeft": {"color": "#000000", "style": 1}, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 0, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } } }, "4": { "0": { "value": "AGENT/BROKER (% OF TOTAL SALES)", "style": "__builtInTableStyle2__builtInStyle41" }, "1": { "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "italic bold 17.3px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "2": { "value": 0.1, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "0%", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "3": { "value": 0.1, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "0%", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "4": { "value": 0.1, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "0%", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "5": { "value": 0.1, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "0%", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "6": { "value": 0.1, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "0%", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "7": { "value": 0.1, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "0%", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "8": { "value": 0.1, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "0%", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "9": { "value": 0.1, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "0%", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "10": { "value": 0.1, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "0%", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "11": { "value": 0.1, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "0%", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "12": { "value": 0.1, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "0%", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "13": { "value": 0.1, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "0%", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "14": { "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 0, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } } }, "5": { "0": {"value": "Communication", "style": "__builtInTableStyle5__builtInStyle45"}, "1": { "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "2": { "value": 50, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "3": { "value": 50, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "4": { "value": 50, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "5": { "value": 50, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "6": { "value": 50, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "7": { "value": 50, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "8": { "value": 50, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "9": { "value": 50, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "10": { "value": 50, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "11": { "value": 50, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "12": { "value": 50, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "13": { "value": 50, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "14": { "value": 600, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM('Channel Marketing Budget'!$C6:$N6)" } }, "6": { "0": {"value": "Training", "style": "__builtInTableStyle5__builtInStyle45"}, "1": { "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "2": { "value": 250, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "3": { "value": 250, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "4": { "value": 250, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "5": { "value": 250, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "6": { "value": 250, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "7": { "value": 250, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "8": { "value": 250, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "9": { "value": 250, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "10": { "value": 250, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "11": { "value": 250, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "12": { "value": 250, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "13": { "value": 250, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "14": { "value": 3000, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM('Channel Marketing Budget'!$C7:$N7)" } }, "7": { "0": {"value": "Promotions", "style": "__builtInTableStyle5__builtInStyle45"}, "1": { "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "2": { "value": 600, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "3": { "value": 600, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "4": { "value": 600, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "5": { "value": 600, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "6": { "value": 600, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "7": { "value": 600, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "8": { "value": 600, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "9": { "value": 600, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "10": { "value": 600, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "11": { "value": 600, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "12": { "value": 600, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "13": { "value": 600, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "14": { "value": 7200, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM('Channel Marketing Budget'!$C8:$N8)" } }, "8": { "0": {"value": "Discounts", "style": "__builtInTableStyle5__builtInStyle45"}, "1": { "value": 0.1, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "0.00%", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "2": { "value": 7.5, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "C3*C5*$B$9" }, "3": { "value": 2, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "D3*D5*$B$9" }, "4": { "value": 5, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "E3*E5*$B$9" }, "5": { "value": 15, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "F3*F5*$B$9" }, "6": { "value": 12, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "G3*G5*$B$9" }, "7": { "value": 15, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "H3*H5*$B$9" }, "8": { "value": 15, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "I3*I5*$B$9" }, "9": { "value": 18, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "J3*J5*$B$9" }, "10": { "value": 20, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "K3*K5*$B$9" }, "11": { "value": 20, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "L3*L5*$B$9" }, "12": { "value": 20, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "M3*M5*$B$9" }, "13": { "value": 20, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "N3*N5*$B$9" }, "14": { "value": 169.5, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM('Channel Marketing Budget'!$C9:$N9)" } }, "9": { "0": { "value": "Commission (% of Agent's Sales)", "style": "__builtInTableStyle5__builtInStyle45" }, "1": { "value": 0.1, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "0.00%", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "2": { "value": 7.5, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "C3*C5*$B$10" }, "3": { "value": 2, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "D3*D5*$B$10" }, "4": { "value": 5, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "E3*E5*$B$10" }, "5": { "value": 15, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "F3*F5*$B$10" }, "6": { "value": 12, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "G3*G5*$B$10" }, "7": { "value": 15, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "H3*H5*$B$10" }, "8": { "value": 15, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "I3*I5*$B$10" }, "9": { "value": 18, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "J3*J5*$B$10" }, "10": { "value": 20, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "K3*K5*$B$10" }, "11": { "value": 20, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "L3*L5*$B$10" }, "12": { "value": 20, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "M3*M5*$B$10" }, "13": { "value": 20, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "N3*N5*$B$10" }, "14": { "value": 169.5, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM('Channel Marketing Budget'!$C10:$N10)" } }, "10": { "0": {"value": "Agent/Broker Total $(000)", "style": "__builtInTableStyle9__builtInStyle50"}, "1": { "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "2": { "value": 915, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(C6:C10)" }, "3": { "value": 904, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(D6:D10)" }, "4": { "value": 910, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(E6:E10)" }, "5": { "value": 930, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(F6:F10)" }, "6": { "value": 924, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(G6:G10)" }, "7": { "value": 930, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(H6:H10)" }, "8": { "value": 930, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(I6:I10)" }, "9": { "value": 936, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(J6:J10)" }, "10": { "value": 940, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(K6:K10)" }, "11": { "value": 940, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(L6:L10)" }, "12": { "value": 940, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(M6:M10)" }, "13": { "value": 940, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(N6:N10)" }, "14": { "value": 11139, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 0, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(O6:O10)" } }, "11": { "0": {"value": "DISTRIBUTORS ITEMS", "style": "__builtInTableStyle24__builtInStyle38"}, "1": { "value": "Rate", "style": { "backColor": "#12355b", "foreColor": "Background 1 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "2": { "value": "Month 1", "style": { "backColor": "#12355b", "foreColor": "Background 1 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "3": { "value": "Month 2", "style": { "backColor": "#12355b", "foreColor": "Background 1 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "4": { "value": "Month 3", "style": { "backColor": "#12355b", "foreColor": "Background 1 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "5": { "value": "Month 4", "style": { "backColor": "#12355b", "foreColor": "Background 1 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "6": { "value": "Month 5", "style": { "backColor": "#12355b", "foreColor": "Background 1 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "7": { "value": "Month 6", "style": { "backColor": "#12355b", "foreColor": "Background 1 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "8": { "value": "Month 7", "style": { "backColor": "#12355b", "foreColor": "Background 1 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "9": { "value": "Month 8", "style": { "backColor": "#12355b", "foreColor": "Background 1 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "10": { "value": "Month 9", "style": { "backColor": "#12355b", "foreColor": "Background 1 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "11": { "value": "Month 10", "style": { "backColor": "#12355b", "foreColor": "Background 1 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "12": { "value": "Month 11", "style": { "backColor": "#12355b", "foreColor": "Background 1 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "13": { "value": "Month 12", "style": { "backColor": "#12355b", "foreColor": "Background 1 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "14": { "style": { "backColor": "#12355b", "foreColor": "Background 1 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "formatter": "#,##0.00", "borderLeft": {"color": "#000000", "style": 1}, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } } }, "12": { "0": { "value": "DISTRIBUTORS (% OF TOTAL SALES)", "style": "__builtInTableStyle26__builtInStyle53" }, "1": { "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "italic bold 17.3px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "2": { "value": 0, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "0%", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "3": { "value": 0, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "0%", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "4": { "value": 0, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "0%", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "5": { "value": 0, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "0%", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "6": { "value": 0, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "0%", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "7": { "value": 0.15, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "0%", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "8": { "value": 0.2, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "0%", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "9": { "value": 0.4, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "0%", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "10": { "value": 0.4, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "0%", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "11": { "value": 0.4, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "0%", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "12": { "value": 0.4, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "0%", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "13": { "value": 0.4, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "0%", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "14": { "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } } }, "13": { "0": {"value": "Communication", "style": "__builtInTableStyle29__builtInStyle57"}, "1": { "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "2": { "value": 50, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "3": { "value": 50, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "4": { "value": 50, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "5": { "value": 50, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "6": { "value": 50, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "7": { "value": 50, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "8": { "value": 50, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "9": { "value": 50, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "10": { "value": 50, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "11": { "value": 50, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "12": { "value": 50, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "13": { "value": 50, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "14": { "value": 600, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM('Channel Marketing Budget'!$C14:$N14)" } }, "14": { "0": {"value": "Training", "style": "__builtInTableStyle29__builtInStyle57"}, "1": { "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "2": { "value": 250, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "3": { "value": 250, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "4": { "value": 250, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "5": { "value": 250, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "6": { "value": 250, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "7": { "value": 250, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "8": { "value": 250, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "9": { "value": 250, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "10": { "value": 250, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "11": { "value": 250, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "12": { "value": 250, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "13": { "value": 250, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "14": { "value": 3000, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(Dstributors[[#This Row], [Month 1]:[Month 12]])" } }, "15": { "0": {"value": "Promotions", "style": "__builtInTableStyle29__builtInStyle57"}, "1": { "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "2": { "value": 600, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "3": { "value": 600, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "4": { "value": 600, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "5": { "value": 600, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "6": { "value": 600, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "7": { "value": 600, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "8": { "value": 600, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "9": { "value": 600, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "10": { "value": 600, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "11": { "value": 600, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "12": { "value": 600, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "13": { "value": 600, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "14": { "value": 7200, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(Dstributors[[#This Row], [Month 1]:[Month 12]])" } }, "16": { "0": { "value": "Commission/Discounts (% of Distributors' Sales)", "style": "__builtInTableStyle29__builtInStyle57" }, "1": { "value": 0.15, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "0.00%", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "2": { "value": 0, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "C3*C13*$B$17" }, "3": { "value": 0, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "D3*D13*$B$17" }, "4": { "value": 0, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "E3*E13*$B$17" }, "5": { "value": 0, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "F3*F13*$B$17" }, "6": { "value": 0, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "G3*G13*$B$17" }, "7": { "value": 33.75, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "H3*H13*$B$17" }, "8": { "value": 45, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "I3*I13*$B$17" }, "9": { "value": 108, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "J3*J13*$B$17" }, "10": { "value": 120, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "K3*K13*$B$17" }, "11": { "value": 120, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "L3*L13*$B$17" }, "12": { "value": 120, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "M3*M13*$B$17" }, "13": { "value": 120, "style": { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "N3*N13*$B$17" }, "14": { "value": 666.75, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(Dstributors[[#This Row], [Month 1]:[Month 12]])" } }, "17": { "0": {"value": "Distributor Total $(000)", "style": "__builtInTableStyle33__builtInStyle63"}, "1": { "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "2": { "value": 900, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(C14:C17)" }, "3": { "value": 900, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(D14:D17)" }, "4": { "value": 900, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(E14:E17)" }, "5": { "value": 900, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(F14:F17)" }, "6": { "value": 900, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(G14:G17)" }, "7": { "value": 933.75, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(H14:H17)" }, "8": { "value": 945, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(I14:I17)" }, "9": { "value": 1008, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(J14:J17)" }, "10": { "value": 1020, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(K14:K17)" }, "11": { "value": 1020, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(L14:L17)" }, "12": { "value": 1020, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(M14:M17)" }, "13": { "value": 1020, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(N14:N17)" }, "14": { "value": 11466.75, "style": { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 0, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(O14:O17)" } }, "18": { "0": {"value": "RETAIL ITEMS", "style": "__builtInTableStyle12__builtInStyle39"}, "1": { "value": "Rate", "style": { "backColor": "#12355b", "foreColor": "Background 2 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "2": { "value": "Month 1", "style": { "backColor": "#12355b", "foreColor": "Background 2 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "3": { "value": "Month 2", "style": { "backColor": "#12355b", "foreColor": "Background 2 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "4": { "value": "Month 3", "style": { "backColor": "#12355b", "foreColor": "Background 2 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "5": { "value": "Month 4", "style": { "backColor": "#12355b", "foreColor": "Background 2 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "6": { "value": "Month 5", "style": { "backColor": "#12355b", "foreColor": "Background 2 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "7": { "value": "Month 6", "style": { "backColor": "#12355b", "foreColor": "Background 2 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "8": { "value": "Month 7", "style": { "backColor": "#12355b", "foreColor": "Background 2 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "9": { "value": "Month 8", "style": { "backColor": "#12355b", "foreColor": "Background 2 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "10": { "value": "Month 9", "style": { "backColor": "#12355b", "foreColor": "Background 2 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "11": { "value": "Month 10", "style": { "backColor": "#12355b", "foreColor": "Background 2 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "12": { "value": "Month 11", "style": { "backColor": "#12355b", "foreColor": "Background 2 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "13": { "value": "Month 12", "style": { "backColor": "#12355b", "foreColor": "Background 2 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "14": { "style": { "backColor": "#12355b", "foreColor": "Background 2 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "formatter": "#,##0.00", "borderLeft": {"color": "#000000", "style": 1}, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } } }, "19": { "0": {"value": "RETAILER (% OF TOTAL SALES)", "style": "__builtInTableStyle14__builtInStyle65"}, "1": { "style": { "backColor": "Background 1 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "italic bold 17.3px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "2": { "value": 0, "style": { "backColor": "Background 1 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "0%", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "3": { "value": 0, "style": { "backColor": "Background 1 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "0%", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "4": { "value": 0.25, "style": { "backColor": "Background 1 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "0%", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "5": { "value": 0.6, "style": { "backColor": "Background 1 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "0%", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "6": { "value": 0.67, "style": { "backColor": "Background 1 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "0%", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "7": { "value": 0.6, "style": { "backColor": "Background 1 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "0%", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "8": { "value": 0.6, "style": { "backColor": "Background 1 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "0%", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "9": { "value": 0.5, "style": { "backColor": "Background 1 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "0%", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "10": { "value": 0.3, "style": { "backColor": "Background 1 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "0%", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "11": { "value": 0.3, "style": { "backColor": "Background 1 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "0%", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "12": { "value": 0.3, "style": { "backColor": "Background 1 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "0%", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "13": { "value": 0.3, "style": { "backColor": "Background 1 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "0%", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "14": { "style": { "backColor": "Background 1 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 2, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } } }, "20": { "0": {"value": "Communication", "style": "__builtInTableStyle17__builtInStyle69"}, "1": { "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "2": { "value": 50, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "3": { "value": 50, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "4": { "value": 50, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "5": { "value": 50, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "6": { "value": 50, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "7": { "value": 50, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "8": { "value": 50, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "9": { "value": 50, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "10": { "value": 50, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "11": { "value": 50, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "12": { "value": 50, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "13": { "value": 50, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "14": { "style": { "backColor": "Background 1 0", "foreColor": "#38424c", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM('Channel Marketing Budget'!$C21:$N21)" } }, "21": { "0": {"value": "Training", "style": "__builtInTableStyle17__builtInStyle69"}, "1": { "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "2": { "value": 250, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "3": { "value": 250, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "4": { "value": 250, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "5": { "value": 250, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "6": { "value": 250, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "7": { "value": 250, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "8": { "value": 250, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "9": { "value": 250, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "10": { "value": 250, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "11": { "value": 250, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "12": { "value": 250, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "13": { "value": 250, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "14": { "value": 600, "style": { "backColor": "Background 1 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM('Channel Marketing Budget'!$C22:$N22)" } }, "22": { "0": {"value": "Promotions", "style": "__builtInTableStyle17__builtInStyle69"}, "1": { "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "2": { "value": 600, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "3": { "value": 600, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "4": { "value": 600, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "5": { "value": 600, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "6": { "value": 600, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "7": { "value": 600, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "8": { "value": 600, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "9": { "value": 600, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "10": { "value": 600, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "11": { "value": 600, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "12": { "value": 600, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "13": { "value": 600, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "14": { "value": 3000, "style": { "backColor": "Background 1 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM('Channel Marketing Budget'!$C23:$N23)" } }, "23": { "0": { "value": "Commission/Discounts (% of Retail Sales)", "style": "__builtInTableStyle17__builtInStyle69" }, "1": { "value": 0.1, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "0.00%", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "2": { "value": 0, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "C3*C20*$B$24" }, "3": { "value": 0, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "D3*D20*$B$24" }, "4": { "value": 12.5, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "E3*E20*$B$24" }, "5": { "value": 90, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "F3*F20*$B$24" }, "6": { "value": 80.4, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "G3*G20*$B$24" }, "7": { "value": 90, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "H3*H20*$B$24" }, "8": { "value": 90, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "I3*I20*$B$24" }, "9": { "value": 90, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "J3*J20*$B$24" }, "10": { "value": 60, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "K3*K20*$B$24" }, "11": { "value": 60, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "L3*L20*$B$24" }, "12": { "value": 60, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "M3*M20*$B$24" }, "13": { "value": 60, "style": { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "N3*N20*$B$24" }, "14": { "value": 692.9, "style": { "backColor": "Background 1 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM('Channel Marketing Budget'!$C24:$N24)" } }, "24": { "0": {"value": "Retailer Total $(000)", "style": "__builtInTableStyle21__builtInStyle75"}, "1": { "style": { "backColor": "Background 1 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "2": { "value": 900, "style": { "backColor": "Background 1 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(C21:C24)" }, "3": { "value": 900, "style": { "backColor": "Background 1 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(D21:D24)" }, "4": { "value": 912.5, "style": { "backColor": "Background 1 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(E21:E24)" }, "5": { "value": 990, "style": { "backColor": "Background 1 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(F21:F24)" }, "6": { "value": 980.4, "style": { "backColor": "Background 1 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(G21:G24)" }, "7": { "value": 990, "style": { "backColor": "Background 1 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(H21:H24)" }, "8": { "value": 990, "style": { "backColor": "Background 1 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(I21:I24)" }, "9": { "value": 990, "style": { "backColor": "Background 1 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(J21:J24)" }, "10": { "value": 960, "style": { "backColor": "Background 1 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(K21:K24)" }, "11": { "value": 960, "style": { "backColor": "Background 1 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(L21:L24)" }, "12": { "value": 960, "style": { "backColor": "Background 1 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(M21:M24)" }, "13": { "value": 960, "style": { "backColor": "Background 1 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(N21:N24)" }, "14": { "value": 4292.9, "style": { "backColor": "Background 1 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(O21:O24)" } }, "25": { "0": {"value": "TOTAL MARKETING BUDGET:", "style": "__builtInStyle81"}, "1": { "style": { "backColor": "Background 1 0", "foreColor": "#12355b", "hAlign": 1, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Medium", "themeFont": "Headings", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "2": { "value": 2715, "style": { "backColor": "Background 1 0", "foreColor": "#12355b", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 0, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(AgentAndBroker[[#Totals], [Month 1]],Dstributors[[#Totals], [Month 1]],Retailer[[#Totals], [Month 1]])" }, "3": { "value": 2704, "style": { "backColor": "Background 1 0", "foreColor": "#12355b", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 0, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(Retailer[[#Totals], [Month 2]],Dstributors[[#Totals], [Month 2]],AgentAndBroker[[#Totals], [Month 2]])" }, "4": { "value": 2722.5, "style": { "backColor": "Background 1 0", "foreColor": "#12355b", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 0, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(Retailer[[#Totals], [Month 3]],Dstributors[[#Totals], [Month 3]],AgentAndBroker[[#Totals], [Month 3]])" }, "5": { "value": 2820, "style": { "backColor": "Background 1 0", "foreColor": "#12355b", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 0, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(Retailer[[#Totals], [Month 4]],Dstributors[[#Totals], [Month 4]],AgentAndBroker[[#Totals], [Month 4]])" }, "6": { "value": 2804.4, "style": { "backColor": "Background 1 0", "foreColor": "#12355b", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 0, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(Retailer[[#Totals], [Month 5]],Dstributors[[#Totals], [Month 5]],AgentAndBroker[[#Totals], [Month 5]])" }, "7": { "value": 2853.75, "style": { "backColor": "Background 1 0", "foreColor": "#12355b", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 0, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(Retailer[[#Totals], [Month 6]],Dstributors[[#Totals], [Month 6]],AgentAndBroker[[#Totals], [Month 6]])" }, "8": { "value": 2865, "style": { "backColor": "Background 1 0", "foreColor": "#12355b", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 0, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(Retailer[[#Totals], [Month 7]],Dstributors[[#Totals], [Month 7]],AgentAndBroker[[#Totals], [Month 7]])" }, "9": { "value": 2934, "style": { "backColor": "Background 1 0", "foreColor": "#12355b", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 0, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(Retailer[[#Totals], [Month 8]],Dstributors[[#Totals], [Month 8]],AgentAndBroker[[#Totals], [Month 8]])" }, "10": { "value": 2920, "style": { "backColor": "Background 1 0", "foreColor": "#12355b", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 0, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(Retailer[[#Totals], [Month 9]],Dstributors[[#Totals], [Month 9]],AgentAndBroker[[#Totals], [Month 9]])" }, "11": { "value": 2920, "style": { "backColor": "Background 1 0", "foreColor": "#12355b", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 0, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(Retailer[[#Totals], [Month 10]],Dstributors[[#Totals], [Month 10]],AgentAndBroker[[#Totals], [Month 10]])" }, "12": { "value": 2920, "style": { "backColor": "Background 1 0", "foreColor": "#12355b", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 0, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(Retailer[[#Totals], [Month 11]],Dstributors[[#Totals], [Month 11]],AgentAndBroker[[#Totals], [Month 11]])" }, "13": { "value": 2920, "style": { "backColor": "Background 1 0", "foreColor": "#12355b", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 0, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(Retailer[[#Totals], [Month 12]],Dstributors[[#Totals], [Month 12]],AgentAndBroker[[#Totals], [Month 12]])" }, "14": { "value": 34098.65, "style": { "backColor": "Background 1 0", "foreColor": "Accent 1 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 0, "wordWrap": false, "diagonalDown": null, "diagonalUp": null }, "formula": "SUM(C26:N26)" } }, "26": { "0": { "style": { "backColor": null, "foreColor": "#262626", "hAlign": 0, "font": "11pt \"Franklin Gothic Book\"", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": null, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "1": { "style": { "backColor": null, "foreColor": "#262626", "hAlign": 0, "font": "11pt \"Franklin Gothic Book\"", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": null, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "2": { "style": { "backColor": null, "foreColor": "#262626", "hAlign": 0, "font": "11pt \"Franklin Gothic Book\"", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": null, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "3": { "style": { "backColor": null, "foreColor": "#262626", "hAlign": 0, "font": "11pt \"Franklin Gothic Book\"", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": null, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "4": { "style": { "backColor": null, "foreColor": "#262626", "hAlign": 0, "font": "11pt \"Franklin Gothic Book\"", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": null, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "5": { "style": { "backColor": null, "foreColor": "#262626", "hAlign": 0, "font": "11pt \"Franklin Gothic Book\"", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": null, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "6": { "style": { "backColor": null, "foreColor": "#262626", "hAlign": 0, "font": "11pt \"Franklin Gothic Book\"", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": null, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "7": { "style": { "backColor": null, "foreColor": "#262626", "hAlign": 0, "font": "11pt \"Franklin Gothic Book\"", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": null, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "8": { "style": { "backColor": null, "foreColor": "#262626", "hAlign": 0, "font": "11pt \"Franklin Gothic Book\"", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": null, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "9": { "style": { "backColor": null, "foreColor": "#262626", "hAlign": 0, "font": "11pt \"Franklin Gothic Book\"", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": null, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "10": { "style": { "backColor": null, "foreColor": "#262626", "hAlign": 0, "font": "11pt \"Franklin Gothic Book\"", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": null, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "11": { "style": { "backColor": null, "foreColor": "#262626", "hAlign": 0, "font": "11pt \"Franklin Gothic Book\"", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": null, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "12": { "style": { "backColor": null, "foreColor": "#262626", "hAlign": 0, "font": "11pt \"Franklin Gothic Book\"", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": null, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "13": { "style": { "backColor": null, "foreColor": "#262626", "hAlign": 0, "font": "11pt \"Franklin Gothic Book\"", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": null, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } }, "14": { "style": { "backColor": null, "foreColor": "#262626", "hAlign": 0, "font": "11pt \"Franklin Gothic Book\"", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": null, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } } }, "27": { "0": { "value": "In the above illustration C represents the current cell, and the numbers and colors on both sides of C represent the precedent cells and dependent cells of the current cell in the order of the formula hierarchy.", "style": { "backColor": null, "foreColor": "rgb(255, 0, 0)", "hAlign": 1, "vAlign": 1, "font": "12pt \"Franklin Gothic Book\"", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "wordWrap": false } }, "1": { "style": { "backColor": null, "foreColor": "rgb(255, 0, 0)", "hAlign": 1, "vAlign": 1, "font": "12pt \"Franklin Gothic Book\"", "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "wordWrap": false } }, "2": { "style": { "backColor": null, "foreColor": "rgb(255, 0, 0)", "hAlign": 1, "vAlign": 1, "font": "12pt \"Franklin Gothic Book\"", "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "wordWrap": false } }, "3": { "style": { "backColor": null, "foreColor": "rgb(255, 0, 0)", "hAlign": 1, "vAlign": 1, "font": "12pt \"Franklin Gothic Book\"", "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "wordWrap": false } }, "4": { "style": { "backColor": null, "foreColor": "rgb(255, 0, 0)", "hAlign": 1, "vAlign": 1, "font": "12pt \"Franklin Gothic Book\"", "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "wordWrap": false } }, "5": { "style": { "backColor": null, "foreColor": "rgb(255, 0, 0)", "hAlign": 1, "vAlign": 1, "font": "12pt \"Franklin Gothic Book\"", "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "wordWrap": false } }, "6": { "style": { "backColor": null, "foreColor": "rgb(255, 0, 0)", "hAlign": 1, "vAlign": 1, "font": "12pt \"Franklin Gothic Book\"", "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "wordWrap": false } }, "7": { "style": { "backColor": null, "foreColor": "rgb(255, 0, 0)", "hAlign": 1, "vAlign": 1, "font": "12pt \"Franklin Gothic Book\"", "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "wordWrap": false } }, "8": { "style": { "backColor": null, "foreColor": "rgb(255, 0, 0)", "hAlign": 1, "vAlign": 1, "font": "12pt \"Franklin Gothic Book\"", "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "wordWrap": false } }, "9": { "style": { "backColor": null, "foreColor": "rgb(255, 0, 0)", "hAlign": 1, "vAlign": 1, "font": "12pt \"Franklin Gothic Book\"", "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "wordWrap": false } }, "10": { "style": { "backColor": null, "foreColor": "rgb(255, 0, 0)", "hAlign": 1, "vAlign": 1, "font": "12pt \"Franklin Gothic Book\"", "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "wordWrap": false } }, "11": { "style": { "backColor": null, "foreColor": "rgb(255, 0, 0)", "hAlign": 1, "vAlign": 1, "font": "12pt \"Franklin Gothic Book\"", "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "wordWrap": false } }, "12": { "style": { "backColor": null, "foreColor": "rgb(255, 0, 0)", "hAlign": 1, "vAlign": 1, "font": "12pt \"Franklin Gothic Book\"", "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "wordWrap": false } }, "13": { "style": { "backColor": null, "foreColor": "rgb(255, 0, 0)", "hAlign": 1, "vAlign": 1, "font": "12pt \"Franklin Gothic Book\"", "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "wordWrap": false } }, "14": { "style": { "backColor": null, "foreColor": "rgb(255, 0, 0)", "hAlign": 1, "vAlign": 1, "font": "12pt \"Franklin Gothic Book\"", "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "wordWrap": false } } } }, "rowDataArray": [null, {"style": "__builtInStyle21"}, {"style": "__builtInStyle7"}, {"style": "__builtInStyle32"}, {"style": "__builtInStyle7"}, {"style": "__builtInStyle7"}, {"style": "__builtInStyle7"}, {"style": "__builtInStyle8"}, {"style": "__builtInStyle8"}, {"style": "__builtInStyle27"}, {"style": "__builtInStyle7"}, {"style": "__builtInStyle32"}, {"style": "__builtInStyle7"}, {"style": "__builtInStyle8"}, {"style": "__builtInStyle8"}, {"style": "__builtInStyle27"}, {"style": "__builtInStyle7"}, {"style": "__builtInStyle7"}, {"style": "__builtInStyle32"}, {"style": "__builtInStyle8"}, {"style": "__builtInStyle8"}, {"style": "__builtInStyle27"}, {"style": "__builtInStyle7"}, {"style": "__builtInStyle7"}, {"style": "__builtInStyle7"}, {"style": "__builtInStyle28"}], "columnDataArray": [{"style": "__builtInStyle40"}, {"style": "__builtInStyle17"}, {"style": "__builtInStyle17"}, {"style": "__builtInStyle17"}, {"style": "__builtInStyle17"}, {"style": "__builtInStyle17"}, {"style": "__builtInStyle17"}, {"style": "__builtInStyle17"}, {"style": "__builtInStyle17"}, {"style": "__builtInStyle17"}, {"style": "__builtInStyle17"}, {"style": "__builtInStyle17"}, {"style": "__builtInStyle17"}, {"style": "__builtInStyle17"}, {"style": "__builtInStyle17"}, {"style": "__builtInStyle6"}, {"style": "__builtInStyle6"}, {"style": "__builtInStyle6"}, {"style": "__builtInStyle6"}, {"style": "__builtInStyle6"}, {"style": "__builtInStyle6"}], "defaultDataNode": { "style": { "backColor": null, "foreColor": "Text 1 15", "vAlign": 2, "font": "normal normal 13.3px Franklin Gothic Book", "themeFont": "Body", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 0, "wordWrap": false, "diagonalDown": null, "diagonalUp": null } } }, "rowHeaderData": {"defaultDataNode": {"style": {"themeFont": "Body"}}}, "colHeaderData": {"defaultDataNode": {"style": {"themeFont": "Body"}}}, "rows": [{"size": 87}, {"size": 27}, {"size": 27}, {"size": 27}, {"size": 27, "visible": true}, { "size": 27, "visible": true }, {"size": 27, "visible": true}, {"size": 27, "visible": true}, {"size": 27, "visible": true}, { "size": 27, "visible": true }, {"size": 27}, {"size": 27}, {"size": 27, "visible": true}, {"size": 27, "visible": true}, { "size": 27, "visible": true }, {"size": 27, "visible": true}, {"size": 27, "visible": true}, {"size": 27}, {"size": 27}, { "size": 27, "visible": true }, {"size": 27, "visible": true}, {"size": 27, "visible": true}, {"size": 27, "visible": true}, { "size": 27, "visible": true }, {"size": 27}, {"size": 27}, {"size": 27}, {"size": 27}, {"size": 27}, {"size": 27}, {"size": 27}, {"size": 27}, {"size": 27}, {"size": 27}, {"size": 27}, {"size": 27}, {"size": 27}, {"size": 27}, {"size": 27}, {"size": 27}, {"size": 27}, {"size": 27}, {"size": 27}, {"size": 27}, {"size": 27}, {"size": 27}, {"size": 27}, {"size": 27}, {"size": 27}, {"size": 27}, {"size": 27}, {"size": 27}, {"size": 27}, {"size": 27}, {"size": 27}, {"size": 27}, {"size": 27}, {"size": 27}, {"size": 27}, {"size": 27}, {"size": 27}, {"size": 27}, {"size": 27}, {"size": 27}, {"size": 27}], "columns": [{"size": 356.47058823529414}, {"size": 93}, {"size": 93}, {"size": 93}, {"size": 93}, {"size": 93}, {"size": 93}, {"size": 93}, {"size": 93}, {"size": 93}, {"size": 93}, {"size": 93}, {"size": 93}, {"size": 93}, {"size": 147.05882352941177}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}, {"size": 70}], "spans": [{"row": 0, "rowCount": 1, "col": 0, "colCount": 15}, { "row": 0, "rowCount": 3, "col": 15, "colCount": 4 }, {"row": 27, "rowCount": 1, "col": 0, "colCount": 15}], "selections": {"0": {"row": 29, "rowCount": 1, "col": 8, "colCount": 1}, "length": 1}, "defaults": {"colHeaderRowHeight": 20, "colWidth": 70, "rowHeaderColWidth": 40, "rowHeight": 26}, "printInfo": { "repeatRowStart": 2, "repeatRowEnd": 2, "showColumnHeader": 1, "showRowHeader": 1, "centering": 1, "footerCenter": "Page &P of &N", "margin": {"top": 72, "bottom": 72, "left": 24, "right": 24, "header": 29, "footer": 29}, "orientation": 2, "pageOrder": 1, "zoomFactor": 0.48, "fitPagesWide": 1, "paperSize": {"width": 850, "height": 1100, "kind": 1} }, "tables": [{ "name": "AgentAndBroker", "row": 3, "col": 0, "rowCount": 8, "colCount": 14, "showFooter": true, "bandRows": false, "rowFilter": { "range": {"row": 4, "rowCount": 6, "col": 0, "colCount": 14}, "typeName": "HideRowFilter", "dialogVisibleInfo": {}, "filterButtonVisibleInfo": { "0": false, "1": false, "2": false, "3": false, "4": false, "5": false, "6": false, "7": false, "8": false, "9": false, "10": false, "11": false, "12": false, "13": false }, "showFilterButton": false }, "columns": [{ "id": 1, "name": "AGENT/BROKER ITEMS", "footerValue": "Agent/Broker Total $(000)" }, {"id": 2, "name": "Rate"}, {"id": 3, "name": "Month 1", "footerFormula": "SUM(C6:C10)"}, { "id": 4, "name": "Month 2", "footerFormula": "SUM(D6:D10)" }, {"id": 5, "name": "Month 3", "footerFormula": "SUM(E6:E10)"}, { "id": 6, "name": "Month 4", "footerFormula": "SUM(F6:F10)" }, {"id": 7, "name": "Month 5", "footerFormula": "SUM(G6:G10)"}, { "id": 8, "name": "Month 6", "footerFormula": "SUM(H6:H10)" }, {"id": 9, "name": "Month 7", "footerFormula": "SUM(I6:I10)"}, { "id": 10, "name": "Month 8", "footerFormula": "SUM(J6:J10)" }, {"id": 11, "name": "Month 9", "footerFormula": "SUM(K6:K10)"}, { "id": 12, "name": "Month 10", "footerFormula": "SUM(L6:L10)" }, {"id": 13, "name": "Month 11", "footerFormula": "SUM(M6:M10)"}, { "id": 14, "name": "Month 12", "footerFormula": "SUM(N6:N10)" }] }, { "name": "Retailer", "row": 18, "col": 0, "rowCount": 7, "colCount": 14, "showFooter": true, "bandRows": false, "rowFilter": { "range": {"row": 19, "rowCount": 5, "col": 0, "colCount": 14}, "typeName": "HideRowFilter", "dialogVisibleInfo": {}, "filterButtonVisibleInfo": { "0": false, "1": false, "2": false, "3": false, "4": false, "5": false, "6": false, "7": false, "8": false, "9": false, "10": false, "11": false, "12": false, "13": false }, "showFilterButton": false }, "columns": [{"id": 1, "name": "RETAIL ITEMS", "footerValue": "Retailer Total $(000)"}, { "id": 2, "name": "Rate" }, {"id": 3, "name": "Month 1", "footerFormula": "SUM(C21:C24)"}, { "id": 4, "name": "Month 2", "footerFormula": "SUM(D21:D24)" }, {"id": 5, "name": "Month 3", "footerFormula": "SUM(E21:E24)"}, { "id": 6, "name": "Month 4", "footerFormula": "SUM(F21:F24)" }, {"id": 7, "name": "Month 5", "footerFormula": "SUM(G21:G24)"}, { "id": 8, "name": "Month 6", "footerFormula": "SUM(H21:H24)" }, {"id": 9, "name": "Month 7", "footerFormula": "SUM(I21:I24)"}, { "id": 10, "name": "Month 8", "footerFormula": "SUM(J21:J24)" }, {"id": 11, "name": "Month 9", "footerFormula": "SUM(K21:K24)"}, { "id": 12, "name": "Month 10", "footerFormula": "SUM(L21:L24)" }, {"id": 13, "name": "Month 11", "footerFormula": "SUM(M21:M24)"}, { "id": 14, "name": "Month 12", "footerFormula": "SUM(N21:N24)" }] }, { "name": "Dstributors", "row": 11, "col": 0, "rowCount": 7, "colCount": 14, "showFooter": true, "bandRows": false, "rowFilter": { "range": {"row": 12, "rowCount": 5, "col": 0, "colCount": 14}, "typeName": "HideRowFilter", "dialogVisibleInfo": {}, "filterButtonVisibleInfo": { "0": false, "1": false, "2": false, "3": false, "4": false, "5": false, "6": false, "7": false, "8": false, "9": false, "10": false, "11": false, "12": false, "13": false }, "showFilterButton": false }, "columns": [{ "id": 1, "name": "DISTRIBUTORS ITEMS", "footerValue": "Distributor Total $(000)" }, {"id": 2, "name": "Rate"}, {"id": 3, "name": "Month 1", "footerFormula": "SUM(C14:C17)"}, { "id": 4, "name": "Month 2", "footerFormula": "SUM(D14:D17)" }, {"id": 5, "name": "Month 3", "footerFormula": "SUM(E14:E17)"}, { "id": 6, "name": "Month 4", "footerFormula": "SUM(F14:F17)" }, {"id": 7, "name": "Month 5", "footerFormula": "SUM(G14:G17)"}, { "id": 8, "name": "Month 6", "footerFormula": "SUM(H14:H17)" }, {"id": 9, "name": "Month 7", "footerFormula": "SUM(I14:I17)"}, { "id": 10, "name": "Month 8", "footerFormula": "SUM(J14:J17)" }, {"id": 11, "name": "Month 9", "footerFormula": "SUM(K14:K17)"}, { "id": 12, "name": "Month 10", "footerFormula": "SUM(L14:L17)" }, {"id": 13, "name": "Month 11", "footerFormula": "SUM(M14:M17)"}, { "id": 14, "name": "Month 12", "footerFormula": "SUM(N14:N17)" }] }], "sheetTabColor": "Accent 1 0", "gridline": {"showHorizontalGridline": false, "showVerticalGridline": false}, "index": 0 } }, "namedStyles": [{ "backColor": "Accent 1 80", "foreColor": "Text 1 0", "font": "14.7px \"Franklin Gothic Book\"", "themeFont": "Body", "name": "20% - Accent1" }, { "backColor": "Accent 2 80", "foreColor": "Text 1 0", "font": "14.7px \"Franklin Gothic Book\"", "themeFont": "Body", "name": "20% - Accent2" }, { "backColor": "Accent 3 80", "foreColor": "Text 1 0", "font": "14.7px \"Franklin Gothic Book\"", "themeFont": "Body", "name": "20% - Accent3" }, { "backColor": "Accent 4 80", "foreColor": "Text 1 0", "font": "14.7px \"Franklin Gothic Book\"", "themeFont": "Body", "name": "20% - Accent4" }, { "backColor": "Accent 5 80", "foreColor": "Text 1 0", "font": "14.7px \"Franklin Gothic Book\"", "themeFont": "Body", "name": "20% - Accent5" }, { "backColor": "Accent 6 80", "foreColor": "Text 1 0", "font": "14.7px \"Franklin Gothic Book\"", "themeFont": "Body", "name": "20% - Accent6" }, { "backColor": "Accent 1 60", "foreColor": "Text 1 0", "font": "14.7px \"Franklin Gothic Book\"", "themeFont": "Body", "name": "40% - Accent1" }, { "backColor": "Accent 2 60", "foreColor": "Text 1 0", "font": "14.7px \"Franklin Gothic Book\"", "themeFont": "Body", "name": "40% - Accent2" }, { "backColor": "Accent 3 60", "foreColor": "Text 1 0", "font": "14.7px \"Franklin Gothic Book\"", "themeFont": "Body", "name": "40% - Accent3" }, { "backColor": "Accent 4 60", "foreColor": "Text 1 0", "font": "14.7px \"Franklin Gothic Book\"", "themeFont": "Body", "name": "40% - Accent4" }, { "backColor": "Accent 5 60", "foreColor": "Text 1 0", "font": "14.7px \"Franklin Gothic Book\"", "themeFont": "Body", "name": "40% - Accent5" }, { "backColor": "Accent 6 60", "foreColor": "Text 1 0", "font": "14.7px \"Franklin Gothic Book\"", "themeFont": "Body", "name": "40% - Accent6" }, { "backColor": "Accent 1 40", "foreColor": "Background 1 0", "font": "14.7px \"Franklin Gothic Book\"", "themeFont": "Body", "name": "60% - Accent1" }, { "backColor": "Accent 2 40", "foreColor": "Background 1 0", "font": "14.7px \"Franklin Gothic Book\"", "themeFont": "Body", "name": "60% - Accent2" }, { "backColor": "Accent 3 40", "foreColor": "Background 1 0", "font": "14.7px \"Franklin Gothic Book\"", "themeFont": "Body", "name": "60% - Accent3" }, { "backColor": "Accent 4 40", "foreColor": "Background 1 0", "font": "14.7px \"Franklin Gothic Book\"", "themeFont": "Body", "name": "60% - Accent4" }, { "backColor": "Accent 5 40", "foreColor": "Background 1 0", "font": "14.7px \"Franklin Gothic Book\"", "themeFont": "Body", "name": "60% - Accent5" }, { "backColor": "Accent 6 40", "foreColor": "Background 1 0", "font": "14.7px \"Franklin Gothic Book\"", "themeFont": "Body", "name": "60% - Accent6" }, { "backColor": "Accent 1 0", "foreColor": "Background 1 0", "font": "14.7px \"Franklin Gothic Book\"", "themeFont": "Body", "name": "Accent1" }, { "backColor": "Accent 2 0", "foreColor": "Background 1 0", "font": "14.7px \"Franklin Gothic Book\"", "themeFont": "Body", "name": "Accent2" }, { "backColor": "Accent 3 0", "foreColor": "Background 1 0", "font": "14.7px \"Franklin Gothic Book\"", "themeFont": "Body", "name": "Accent3" }, { "backColor": "Accent 4 0", "foreColor": "Background 1 0", "font": "14.7px \"Franklin Gothic Book\"", "themeFont": "Body", "name": "Accent4" }, { "backColor": "Accent 5 0", "foreColor": "Background 1 0", "font": "14.7px \"Franklin Gothic Book\"", "themeFont": "Body", "name": "Accent5" }, { "backColor": "Accent 6 0", "foreColor": "Background 1 0", "font": "14.7px \"Franklin Gothic Book\"", "themeFont": "Body", "name": "Accent6" }, { "backColor": "#ffc7ce", "foreColor": "#9c0006", "font": "14.7px \"Franklin Gothic Book\"", "themeFont": "Body", "name": "Bad" }, { "backColor": "#f2f2f2", "foreColor": "#fa7d00", "font": "bold 14.7px \"Franklin Gothic Book\"", "themeFont": "Body", "borderLeft": {"color": "#7f7f7f", "style": 1}, "borderTop": {"color": "#7f7f7f", "style": 1}, "borderRight": {"color": "#7f7f7f", "style": 1}, "borderBottom": {"color": "#7f7f7f", "style": 1}, "name": "Calculation", "diagonalDown": null, "diagonalUp": null }, { "backColor": "#a5a5a5", "foreColor": "Background 1 0", "font": "bold 14.7px \"Franklin Gothic Book\"", "themeFont": "Body", "borderLeft": {"color": "#3f3f3f", "style": 6}, "borderTop": {"color": "#3f3f3f", "style": 6}, "borderRight": {"color": "#3f3f3f", "style": 6}, "borderBottom": {"color": "#3f3f3f", "style": 6}, "name": "Check Cell", "diagonalDown": null, "diagonalUp": null }, { "backColor": null, "formatter": "_(* #,##0.00_);_(* (#,##0.00);_(* \"-\"??_);_(@_)", "name": "Comma" }, { "backColor": null, "formatter": "_(* #,##0_);_(* (#,##0);_(* \"-\"_);_(@_)", "name": "Comma [0]" }, { "backColor": null, "formatter": "_(\"$\"* #,##0.00_);_(\"$\"* (#,##0.00);_(\"$\"* \"-\"??_);_(@_)", "name": "Currency" }, { "backColor": null, "formatter": "_(\"$\"* #,##0_);_(\"$\"* (#,##0);_(\"$\"* \"-\"_);_(@_)", "name": "Currency [0]" }, { "backColor": null, "foreColor": "#7f7f7f", "font": "italic 14.7px \"Franklin Gothic Book\"", "themeFont": "Body", "name": "Explanatory Text" }, { "backColor": "#c6efce", "foreColor": "#006100", "font": "14.7px \"Franklin Gothic Book\"", "themeFont": "Body", "name": "Good" }, { "backColor": null, "foreColor": "Text 2 0", "font": "14.7px \"Franklin Gothic Medium\"", "themeFont": "Headings", "name": "Heading 1" }, { "backColor": "Accent 1 40", "foreColor": "Background 1 0", "hAlign": 3, "vAlign": 1, "font": "14.7px \"Franklin Gothic Medium\"", "themeFont": "Headings", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": {"color": "Accent 1 40", "style": 2}, "textIndent": 0, "wordWrap": false, "name": "Heading 2", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Accent 1 80", "foreColor": "Accent 1 0", "hAlign": 3, "vAlign": 1, "font": "14.7px \"Franklin Gothic Medium\"", "themeFont": "Headings", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": {"color": "Accent 1 80", "style": 2}, "textIndent": 0, "wordWrap": false, "name": "Heading 3", "diagonalDown": null, "diagonalUp": null }, { "backColor": null, "foreColor": "Text 2 0", "font": "bold 14.7px \"Franklin Gothic Book\"", "themeFont": "Body", "name": "Heading 4" }, { "backColor": "#ffcc99", "foreColor": "#3f3f76", "font": "14.7px \"Franklin Gothic Book\"", "themeFont": "Body", "borderLeft": {"color": "#7f7f7f", "style": 1}, "borderTop": {"color": "#7f7f7f", "style": 1}, "borderRight": {"color": "#7f7f7f", "style": 1}, "borderBottom": {"color": "#7f7f7f", "style": 1}, "name": "Input", "diagonalDown": null, "diagonalUp": null }, { "backColor": null, "foreColor": "#fa7d00", "font": "14.7px \"Franklin Gothic Book\"", "themeFont": "Body", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": {"color": "#ff8001", "style": 6}, "name": "Linked Cell", "diagonalDown": null, "diagonalUp": null }, { "backColor": "#ffeb9c", "foreColor": "#9c6500", "font": "14.7px \"Franklin Gothic Book\"", "themeFont": "Body", "name": "Neutral" }, { "backColor": null, "foreColor": "Text 1 15", "hAlign": 3, "vAlign": 2, "font": "13.3px \"Franklin Gothic Book\"", "themeFont": "Body", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 0, "wordWrap": false, "name": "Normal", "diagonalDown": null, "diagonalUp": null }, { "backColor": "#ffffcc", "borderLeft": {"color": "#b2b2b2", "style": 1}, "borderTop": {"color": "#b2b2b2", "style": 1}, "borderRight": {"color": "#b2b2b2", "style": 1}, "borderBottom": {"color": "#b2b2b2", "style": 1}, "name": "Note", "diagonalDown": null, "diagonalUp": null }, { "backColor": "#f2f2f2", "foreColor": "#3f3f3f", "font": "bold 14.7px \"Franklin Gothic Book\"", "themeFont": "Body", "borderLeft": {"color": "#3f3f3f", "style": 1}, "borderTop": {"color": "#3f3f3f", "style": 1}, "borderRight": {"color": "#3f3f3f", "style": 1}, "borderBottom": {"color": "#3f3f3f", "style": 1}, "name": "Output", "diagonalDown": null, "diagonalUp": null }, {"backColor": null, "formatter": "0%", "name": "Percent"}, { "backColor": null, "foreColor": "Accent 1 0", "font": "bold 34.7px \"Franklin Gothic Medium\"", "themeFont": "Headings", "name": "Title" }, { "backColor": null, "foreColor": "Text 1 0", "font": "bold 14.7px \"Franklin Gothic Book\"", "themeFont": "Body", "borderLeft": null, "borderTop": {"color": "Accent 1 0", "style": 1}, "borderRight": null, "borderBottom": {"color": "Accent 1 0", "style": 6}, "name": "Total", "diagonalDown": null, "diagonalUp": null }, { "backColor": null, "foreColor": "#ff0000", "font": "14.7px \"Franklin Gothic Book\"", "themeFont": "Body", "name": "Warning Text" }, { "backColor": null, "foreColor": "Text 1 15", "hAlign": 3, "vAlign": 2, "font": "normal normal 13.3px Franklin Gothic Book", "themeFont": "Body", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 0, "wordWrap": false, "name": "__builtInStyle5", "diagonalDown": null, "diagonalUp": null }, { "backColor": null, "foreColor": "Text 1 15", "hAlign": 3, "vAlign": 2, "font": "normal normal 14.7px Franklin Gothic Book", "themeFont": "Body", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 0, "wordWrap": false, "name": "__builtInStyle6", "diagonalDown": null, "diagonalUp": null }, { "backColor": null, "foreColor": "Text 1 15", "hAlign": 3, "vAlign": 2, "font": "normal normal 13.3px Franklin Gothic Book", "themeFont": "Body", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 0, "wordWrap": false, "name": "__builtInStyle7", "diagonalDown": null, "diagonalUp": null }, { "backColor": null, "foreColor": "Text 1 15", "hAlign": 3, "vAlign": 2, "font": "normal normal 15.3px Franklin Gothic Book", "themeFont": "Body", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 0, "wordWrap": false, "name": "__builtInStyle8", "diagonalDown": null, "diagonalUp": null }, { "backColor": null, "foreColor": "Text 1 15", "hAlign": 2, "vAlign": 1, "font": "normal normal 13.3px Franklin Gothic Book", "themeFont": "Body", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 0, "wordWrap": false, "name": "__builtInStyle9", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Accent 1 0", "foreColor": "Background 1 0", "hAlign": 1, "vAlign": 2, "font": "normal bold 21.3px Arial", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 0, "wordWrap": false, "name": "__builtInStyle10", "parentName": "Heading 2", "diagonalDown": null, "diagonalUp": null }, { "backColor": null, "foreColor": "Text 1 15", "hAlign": 3, "vAlign": 1, "font": "normal normal 14.7px Calibri", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 0, "wordWrap": true, "name": "__builtInStyle11", "diagonalDown": null, "diagonalUp": null }, { "backColor": null, "foreColor": "Text 1 15", "hAlign": 3, "vAlign": 1, "font": "normal bold 14.7px Calibri", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 0, "wordWrap": true, "name": "__builtInStyle12", "diagonalDown": null, "diagonalUp": null }, { "backColor": null, "foreColor": "Background 1 0", "hAlign": 3, "vAlign": 2, "font": "normal normal 14.7px Franklin Gothic Book", "themeFont": "Body", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 0, "wordWrap": true, "name": "__builtInStyle13", "diagonalDown": null, "diagonalUp": null }, { "backColor": null, "foreColor": "Background 1 0", "hAlign": 3, "vAlign": 2, "font": "normal normal 14.7px Franklin Gothic Medium", "themeFont": "Headings", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 0, "wordWrap": true, "name": "__builtInStyle14", "diagonalDown": null, "diagonalUp": null }, { "backColor": null, "foreColor": "Background 1 0", "hAlign": 3, "vAlign": 2, "font": "normal normal 13.3px Franklin Gothic Book", "themeFont": "Body", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 0, "wordWrap": true, "name": "__builtInStyle15", "diagonalDown": null, "diagonalUp": null }, { "backColor": null, "foreColor": "Background 1 0", "hAlign": 3, "vAlign": 2, "font": "normal normal 15.3px Franklin Gothic Book", "themeFont": "Body", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 0, "wordWrap": true, "name": "__builtInStyle16", "diagonalDown": null, "diagonalUp": null }, { "backColor": null, "foreColor": "Text 1 15", "hAlign": 0, "vAlign": 2, "font": "normal normal 14.7px Franklin Gothic Book", "themeFont": "Body", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInStyle17", "diagonalDown": null, "diagonalUp": null }, { "backColor": "#12355b", "foreColor": "Background 1 0", "hAlign": 0, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInStyle18", "diagonalDown": null, "diagonalUp": null }, { "backColor": null, "foreColor": "Background 1 0", "hAlign": 0, "vAlign": 1, "font": "normal normal 14.7px Franklin Gothic Medium", "themeFont": "Headings", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 0, "wordWrap": true, "name": "__builtInStyle19", "diagonalDown": null, "diagonalUp": null }, { "backColor": "#1b335a", "foreColor": "Background 2 0", "hAlign": 0, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "formatter": "0.00", "borderLeft": {"color": "#000000", "style": 1}, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInStyle20", "diagonalDown": null, "diagonalUp": null }, { "backColor": null, "foreColor": "Text 1 15", "hAlign": 0, "vAlign": 2, "font": "normal normal 14.7px Franklin Gothic Medium", "themeFont": "Headings", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 0, "wordWrap": false, "name": "__builtInStyle21", "diagonalDown": null, "diagonalUp": null }, { "backColor": null, "foreColor": "Background 1 0", "hAlign": 3, "vAlign": 1, "font": "normal normal 14.7px Franklin Gothic Book", "themeFont": "Body", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 0, "wordWrap": true, "name": "__builtInStyle22", "diagonalDown": null, "diagonalUp": null }, { "backColor": "#e2f0fd", "foreColor": "#12355b", "hAlign": 0, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInStyle23", "diagonalDown": null, "diagonalUp": null }, { "backColor": "#e2f0fd", "foreColor": "#12355b", "hAlign": 0, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInStyle24", "diagonalDown": null, "diagonalUp": null }, { "backColor": "#e2f0fd", "foreColor": "#12355b", "hAlign": 0, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0", "borderLeft": {"color": "#000000", "style": 1}, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInStyle25", "diagonalDown": null, "diagonalUp": null }, { "backColor": null, "foreColor": "Background 1 0", "hAlign": 3, "vAlign": 2, "font": "normal bold 24px Franklin Gothic Book", "themeFont": "Body", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 0, "wordWrap": true, "name": "__builtInStyle26", "diagonalDown": null, "diagonalUp": null }, { "backColor": null, "foreColor": "Text 1 15", "hAlign": 3, "vAlign": 2, "font": "normal bold 24px Franklin Gothic Book", "themeFont": "Body", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 0, "wordWrap": false, "name": "__builtInStyle27", "diagonalDown": null, "diagonalUp": null }, { "backColor": null, "foreColor": "Text 1 15", "hAlign": 3, "vAlign": 2, "font": "normal normal 14.7px Franklin Gothic Medium", "themeFont": "Headings", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 0, "wordWrap": false, "name": "__builtInStyle28", "diagonalDown": null, "diagonalUp": null }, { "backColor": "#12355b", "foreColor": "Background 2 0", "hAlign": 0, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInStyle29", "diagonalDown": null, "diagonalUp": null }, { "backColor": null, "foreColor": "Background 1 0", "hAlign": 3, "vAlign": 1, "font": "normal normal 14.7px Franklin Gothic Medium", "themeFont": "Headings", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 0, "wordWrap": true, "name": "__builtInStyle30", "diagonalDown": null, "diagonalUp": null }, { "backColor": "#12355b", "foreColor": "Background 2 0", "hAlign": 0, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "formatter": "#,##0.00", "borderLeft": {"color": "#000000", "style": 1}, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInStyle31", "diagonalDown": null, "diagonalUp": null }, { "backColor": null, "foreColor": "Text 1 15", "hAlign": 3, "vAlign": 2, "font": "normal normal 13.3px Franklin Gothic Medium", "themeFont": "Headings", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 0, "wordWrap": false, "name": "__builtInStyle32", "diagonalDown": null, "diagonalUp": null }, { "backColor": "#12355b", "foreColor": "Background 1 0", "hAlign": 0, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "formatter": "#,##0.00", "borderLeft": {"color": "#000000", "style": 1}, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInStyle33", "diagonalDown": null, "diagonalUp": null }, { "backColor": "#12355b", "foreColor": "Background 2 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "formatter": "#,##0.00", "borderLeft": {"color": "#000000", "style": 1}, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 0, "wordWrap": false, "name": "__builtInStyle34", "diagonalDown": null, "diagonalUp": null }, { "backColor": "#4FCAF7", "foreColor": "#12355b", "hAlign": 1, "vAlign": 1, "font": "normal bold 64px Franklin Gothic Medium", "themeFont": "Headings", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 0, "wordWrap": false, "name": "__builtInStyle35", "parentName": "Title", "diagonalDown": null, "diagonalUp": null }, { "backColor": "#12355b", "foreColor": "Background 1 0", "hAlign": 0, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Medium", "themeFont": "Headings", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 0, "wordWrap": false, "name": "__builtInStyle36", "diagonalDown": null, "diagonalUp": null }, { "backColor": "#ffffff", "foreColor": "#12355b", "hAlign": 0, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 0, "wordWrap": false, "name": "__builtInStyle37", "diagonalDown": null, "diagonalUp": null }, { "backColor": "#12355b", "foreColor": "Background 1 0", "hAlign": 0, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 0, "wordWrap": false, "name": "__builtInStyle38", "diagonalDown": null, "diagonalUp": null }, { "backColor": "#12355b", "foreColor": "Background 2 0", "hAlign": 0, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 0, "wordWrap": false, "name": "__builtInStyle39", "diagonalDown": null, "diagonalUp": null }, { "backColor": null, "foreColor": "Text 1 15", "hAlign": 0, "vAlign": 1, "font": "normal normal 14.7px Franklin Gothic Book", "themeFont": "Body", "borderLeft": null, "borderTop": null, "borderRight": null, "borderBottom": null, "locked": true, "textIndent": 0, "wordWrap": false, "name": "__builtInStyle40", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 0, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 0, "wordWrap": false, "name": "__builtInStyle41", "parentName": "Heading 1", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 0, "vAlign": 1, "font": "italic bold 17.3px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInStyle42", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 0, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "0%", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInStyle43", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 0, "wordWrap": false, "name": "__builtInStyle44", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 0, "vAlign": 1, "font": "normal normal 17.3px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 0, "wordWrap": false, "name": "__builtInStyle45", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 0, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInStyle46", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 0, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInStyle47", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 0, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInStyle48", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 0, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "0.00%", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInStyle49", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 0, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 0, "wordWrap": false, "name": "__builtInStyle50", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 0, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInStyle51", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 0, "wordWrap": false, "name": "__builtInStyle52", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 0, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 0, "wordWrap": false, "name": "__builtInStyle53", "parentName": "Heading 1", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 0, "vAlign": 1, "font": "italic bold 17.3px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInStyle54", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 0, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "0%", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInStyle55", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 0, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInStyle56", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 0, "vAlign": 1, "font": "normal normal 17.3px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 0, "wordWrap": false, "name": "__builtInStyle57", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 0, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInStyle58", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 0, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInStyle59", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 0, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInStyle60", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 0, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "0.00%", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInStyle61", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 0, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInStyle62", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 0, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 0, "wordWrap": false, "name": "__builtInStyle63", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 1, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 0, "wordWrap": false, "name": "__builtInStyle64", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 1 0", "foreColor": "#1b335a", "hAlign": 0, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 0, "wordWrap": false, "name": "__builtInStyle65", "parentName": "Heading 1", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 1 0", "foreColor": "#1b335a", "hAlign": 0, "vAlign": 1, "font": "italic bold 17.3px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInStyle66", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 1 0", "foreColor": "#1b335a", "hAlign": 0, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "0%", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInStyle67", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 1 0", "foreColor": "#1b335a", "hAlign": 0, "vAlign": 2, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInStyle68", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 0, "vAlign": 1, "font": "normal normal 17.3px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 0, "wordWrap": false, "name": "__builtInStyle69", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 0, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInStyle70", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 1 0", "foreColor": "#38424c", "hAlign": 0, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInStyle71", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 0, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInStyle72", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 1 0", "foreColor": "#1b335a", "hAlign": 0, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInStyle73", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 0, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "0.00%", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInStyle74", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 1 0", "foreColor": "#1b335a", "hAlign": 0, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 0, "wordWrap": false, "name": "__builtInStyle75", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 1 0", "foreColor": "#1b335a", "hAlign": 0, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInStyle76", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 1 0", "foreColor": "Text 1 15", "hAlign": 0, "vAlign": 1, "font": "normal normal 14.7px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 0, "wordWrap": false, "name": "__builtInStyle77", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 1 0", "foreColor": "Text 1 15", "hAlign": 0, "vAlign": 2, "font": "normal normal 14.7px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInStyle78", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 1 0", "foreColor": "Text 1 15", "hAlign": 0, "vAlign": 2, "font": "normal normal 14.7px Franklin Gothic Book", "themeFont": "Body", "formatter": "0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInStyle79", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 1 0", "foreColor": "Accent 1 0", "hAlign": 0, "vAlign": 2, "font": "normal bold 15.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInStyle80", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 1 0", "foreColor": "Background 2 0", "hAlign": 0, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 0, "wordWrap": false, "name": "__builtInStyle81", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 1 0", "foreColor": "#12355b", "hAlign": 0, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Medium", "themeFont": "Headings", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInStyle82", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 1 0", "foreColor": "#12355b", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 0, "wordWrap": false, "name": "__builtInStyle83", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 1 0", "foreColor": "Accent 1 0", "hAlign": 1, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 0, "wordWrap": false, "name": "__builtInStyle84", "diagonalDown": null, "diagonalUp": null }, { "backColor": "#12355b", "foreColor": "Background 2 0", "hAlign": 0, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "locked": true, "textIndent": 0, "wordWrap": false, "name": "__builtInTableStyle0__builtInStyle39", "diagonalDown": null, "diagonalUp": null }, { "backColor": "#12355b", "foreColor": "Background 2 0", "hAlign": 0, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInTableStyle1__builtInStyle29", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 0, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 0, "wordWrap": false, "name": "__builtInTableStyle2__builtInStyle41", "parentName": "Heading 1", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 0, "vAlign": 1, "font": "italic bold 17.3px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInTableStyle3__builtInStyle42", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 0, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "0%", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInTableStyle4__builtInStyle43", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 0, "vAlign": 1, "font": "normal normal 17.3px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 0, "wordWrap": false, "name": "__builtInTableStyle5__builtInStyle45", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 0, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInTableStyle6__builtInStyle46", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 0, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInTableStyle7__builtInStyle48", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 0, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "0.00%", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInTableStyle8__builtInStyle49", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 0, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 0, "wordWrap": false, "name": "__builtInTableStyle9__builtInStyle50", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 0, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInTableStyle10__builtInStyle51", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 0, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "#92d050", "style": 1}, "borderTop": {"color": "#92d050", "style": 1}, "borderRight": {"color": "#92d050", "style": 1}, "borderBottom": {"color": "#92d050", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInTableStyle11__builtInStyle47", "diagonalDown": null, "diagonalUp": null }, { "backColor": "#12355b", "foreColor": "Background 2 0", "hAlign": 0, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "locked": true, "textIndent": 0, "wordWrap": false, "name": "__builtInTableStyle12__builtInStyle39", "diagonalDown": null, "diagonalUp": null }, { "backColor": "#12355b", "foreColor": "Background 2 0", "hAlign": 0, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInTableStyle13__builtInStyle29", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 1 0", "foreColor": "#1b335a", "hAlign": 0, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 0, "wordWrap": false, "name": "__builtInTableStyle14__builtInStyle65", "parentName": "Heading 1", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 1 0", "foreColor": "#1b335a", "hAlign": 0, "vAlign": 1, "font": "italic bold 17.3px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInTableStyle15__builtInStyle66", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 1 0", "foreColor": "#1b335a", "hAlign": 0, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "0%", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInTableStyle16__builtInStyle67", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 0, "vAlign": 1, "font": "normal normal 17.3px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 0, "wordWrap": false, "name": "__builtInTableStyle17__builtInStyle69", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 0, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInTableStyle18__builtInStyle70", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 0, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInTableStyle19__builtInStyle72", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 1 0", "foreColor": "Text 2 25", "hAlign": 0, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "0.00%", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInTableStyle20__builtInStyle74", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 1 0", "foreColor": "#1b335a", "hAlign": 0, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 0, "wordWrap": false, "name": "__builtInTableStyle21__builtInStyle75", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 1 0", "foreColor": "#1b335a", "hAlign": 0, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInTableStyle22__builtInStyle76", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 1 0", "foreColor": "#1b335a", "hAlign": 0, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInTableStyle23__builtInStyle73", "diagonalDown": null, "diagonalUp": null }, { "backColor": "#12355b", "foreColor": "Background 1 0", "hAlign": 0, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "locked": true, "textIndent": 0, "wordWrap": false, "name": "__builtInTableStyle24__builtInStyle38", "diagonalDown": null, "diagonalUp": null }, { "backColor": "#12355b", "foreColor": "Background 1 0", "hAlign": 0, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Medium", "themeFont": "Headings", "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInTableStyle25__builtInStyle18", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 0, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 0, "wordWrap": false, "name": "__builtInTableStyle26__builtInStyle53", "parentName": "Heading 1", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 0, "vAlign": 1, "font": "italic bold 17.3px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInTableStyle27__builtInStyle54", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 0, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "formatter": "0%", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInTableStyle28__builtInStyle55", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 0, "vAlign": 1, "font": "normal normal 17.3px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 0, "wordWrap": false, "name": "__builtInTableStyle29__builtInStyle57", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 0, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInTableStyle30__builtInStyle58", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 0, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInTableStyle31__builtInStyle60", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 2 0", "foreColor": "Text 2 25", "hAlign": 0, "vAlign": 1, "font": "normal normal 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "0.00%", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInTableStyle32__builtInStyle61", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 0, "vAlign": 1, "font": "normal bold 17.3px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 0, "wordWrap": false, "name": "__builtInTableStyle33__builtInStyle63", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 0, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInTableStyle34__builtInStyle62", "diagonalDown": null, "diagonalUp": null }, { "backColor": "Background 2 0", "foreColor": "#1b335a", "hAlign": 0, "vAlign": 1, "font": "normal bold 16px Franklin Gothic Book", "themeFont": "Body", "formatter": "#,##0.00", "borderLeft": {"color": "Accent 4 -25", "style": 1}, "borderTop": {"color": "Accent 4 -25", "style": 1}, "borderRight": {"color": "Accent 4 -25", "style": 1}, "borderBottom": {"color": "Accent 4 -25", "style": 1}, "locked": true, "textIndent": 2, "wordWrap": false, "name": "__builtInTableStyle35__builtInStyle59", "diagonalDown": null, "diagonalUp": null }] }];
(function (global) { SystemJS.config({ transpiler: 'plugin-babel', babelOptions: { es2015: true }, paths: { // paths serve as alias 'npm:': 'node_modules/' }, packageConfigPaths: [ './node_modules/*/package.json', "./node_modules/@mescius/*/package.json", "./node_modules/@babel/*/package.json", "./node_modules/@vue/*/package.json" ], map: { '@mescius/spread-sheets': 'npm:@mescius/spread-sheets/index.js', '@mescius/spread-sheets-vue': 'npm:@mescius/spread-sheets-vue/index.js', 'vue': "npm:vue/dist/vue.esm-browser.js", 'tiny-emitter': 'npm:tiny-emitter/index.js', 'plugin-babel': 'npm:systemjs-plugin-babel/plugin-babel.js', "systemjs-babel-build": "npm:systemjs-plugin-babel/systemjs-babel-browser.js", }, meta: { '*.css': { loader: 'systemjs-plugin-css' }, '*.vue': { loader: "../plugin-vue/index.js" } } }); })(this);