You can add hyperlink to shape, line or group shape, tooltip and hyperlink target also support.
You can add hyperlink to shape, line or group shape using the following code:
import { Component, NgModule, enableProdMode } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { SpreadSheetsModule } from '@mescius/spread-sheets-angular';
import GC from '@mescius/spread-sheets';
import "@mescius/spread-sheets-shapes";
import { getData } from './app.data';
import { Stopwatch } from './stopwatch';
import './styles.css';
@Component({
selector: 'app-component',
templateUrl: 'src/app.component.html'
})
export class AppComponent {
spread: GC.Spread.Sheets.Workbook;
hostStyle = {
width: '100%',
height: '100%',
overflow: 'hidden',
float: 'left'
};
initSpread($event: any) {
let spread = $event.spread, self = this;
self.spread = spread;
spread.suspendPaint();
spread.setSheetCount(5);
let sheetData = getData();
var sheet1 = spread.getSheet(0);
var sheet2 = spread.getSheet(1);
var sheet3 = spread.getSheet(2);
var sheet4 = spread.getSheet(3);
var sheet5 = spread.getSheet(4);
sheet1.fromJSON(sheetData.shape_hyperlink_data_sheet1);
sheet2.fromJSON(sheetData.shape_hyperlink_data_sheet2);
sheet3.fromJSON(sheetData.shape_hyperlink_data_sheet3);
sheet4.fromJSON(sheetData.shape_hyperlink_data_sheet4);
sheet5.fromJSON(sheetData.shape_hyperlink_data_sheet5);
self.initSheet1(sheet1);
self.initSheet2(sheet2);
self.initSheet3(sheet3);
self.initSheet4(sheet4);
self.initSheet5(sheet5);
spread.resumePaint();
}
initSheet1(sheet: GC.Spread.Sheets.Worksheet) {
let self = this;
var rightArrow1 = sheet.shapes.add("rightArrow1", GC.Spread.Sheets.Shapes.AutoShapeType.rightArrowCallout, 580, 133, 143, 35);
self.applyUsageShapeStyle(rightArrow1);
rightArrow1.hyperlink({ url: "sjs://'Sheet Location'!A1", target: 0, tooltip: "goes to 'Sheet Locaton'!A1" });
var rightArrow2 = sheet.shapes.add("rightArrow2", GC.Spread.Sheets.Shapes.AutoShapeType.rightArrowCallout, 580, 193, 143, 35);
self.applyUsageShapeStyle(rightArrow2);
rightArrow2.hyperlink({ url: "sjs://'Email Address'!A1", target: 0, tooltip: "goes to 'Email Address'!A1" });
var rightArrow3 = sheet.shapes.add("rightArrow3", GC.Spread.Sheets.Shapes.AutoShapeType.rightArrowCallout, 580, 254, 143, 35);
self.applyUsageShapeStyle(rightArrow3);
rightArrow3.hyperlink({ url: "sjs://'Access URL'!A1", target: 0, tooltip: "goes to 'Access URL'!A1" });
var rightArrow4 = sheet.shapes.add("rightArrow4", GC.Spread.Sheets.Shapes.AutoShapeType.rightArrowCallout, 580, 314, 143, 35);
self.applyUsageShapeStyle(rightArrow4);
rightArrow4.hyperlink({ url: "sjs://'Custom Command'!A1", target: 0, tooltip: "goes to 'Custom Command'!A1" });
}
initSheet2(sheet: GC.Spread.Sheets.Worksheet) {
this.backToFirstPage(sheet);
}
initSheet3(sheet: GC.Spread.Sheets.Worksheet) {
this.backToFirstPage(sheet);
var rect1 = sheet.shapes.add("rectangle1", GC.Spread.Sheets.Shapes.AutoShapeType.rectangle, 175, 327, 268, 35);
var email = 'JoneBarkley@example.com';
this.applyLinkageShapeStyle(rect1, email);
rect1.hyperlink({ url: email, target: 0 });
}
initSheet4(sheet: GC.Spread.Sheets.Worksheet) {
this.backToFirstPage(sheet);
var rect2 = sheet.shapes.add("rectangle2", GC.Spread.Sheets.Shapes.AutoShapeType.rectangle, 209, 327, 268, 35);
this.applyLinkageShapeStyle(rect2, 'www.spreadjs.com');
rect2.hyperlink({ url: "http://developer.mescius.com", target: 0, tooltip: "goes to SpreadJS" });
}
initSheet5(sheet: GC.Spread.Sheets.Worksheet) {
this.backToFirstPage(sheet);
var rect3 = sheet.shapes.add("rectangle3", GC.Spread.Sheets.Shapes.AutoShapeType.roundedRectangle, 261, 188, 280, 140);
this.applyTimerShapeStyle(rect3, 'Click here to start a timer');
var stopWatch = new Stopwatch(rect3);
rect3.hyperlink({
command: function () {
if (!stopWatch.started) {
stopWatch.start();
} else {
stopWatch.stop();
}
}
});
}
backToFirstPage(sheet: GC.Spread.Sheets.Worksheet) {
var leftArrow = sheet.shapes.add("rightArrow1", GC.Spread.Sheets.Shapes.AutoShapeType.leftArrowCallout, 525, 410, 189, 35);
this.applyUsageShapeStyle(leftArrow, 'Back To First Page');
leftArrow.hyperlink({ url: "sjs://'Shape Hyperlink'!A1", target: 0, tooltip: "goes to 'Shape Hyperlink'!A1" });
}
applyUsageShapeStyle(shape: any, text?: string) {
shape.adjustments([0.38, 0.36, 0.52, 0.8]);
shape.text(text || 'Check Usage');
var style = shape.style();
style.fill.type = 0;
style.line.color = "rgb(11,116,77)";
style.textEffect.color = "rgb(11,116,77)";
style.textFrame.vAlign = 1;
shape.style(style);
}
applyLinkageShapeStyle(shape: any, text: string) {
shape.text(text);
var style = shape.style();
style.fill.type = 0;
style.line.transparency = 1;
style.textEffect.color = "rgb(5,99,193)";
style.textFrame.vAlign = 1;
style.textEffect.font = "20px Calibri"
shape.style(style);
}
applyTimerShapeStyle(shape: any, text: string) {
shape.text(text);
var style = shape.style();
style.fill.type = 0;
style.line.color = "rgb(11,116,77)";
style.textEffect.color = "rgb(11,116,77)";
style.textFrame.hAlign = 1;
style.textFrame.vAlign = 1;
style.textEffect.font = "22px Calibri"
shape.style(style);
}
}
@NgModule({
imports: [BrowserModule, SpreadSheetsModule],
declarations: [AppComponent],
exports: [AppComponent],
bootstrap: [AppComponent]
})
export class AppModule { }
enableProdMode();
// Bootstrap application with hash style navigation and global services.
platformBrowserDynamic().bootstrapModule(AppModule);
<!doctype html>
<html style="height:100%;font-size:14px;">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="$DEMOROOT$/en/angular/node_modules/@mescius/spread-sheets/styles/gc.spread.sheets.excel2013white.css">
<!-- Polyfills -->
<script src="$DEMOROOT$/en/angular/node_modules/core-js/client/shim.min.js"></script>
<script src="$DEMOROOT$/en/angular/node_modules/zone.js/fesm2015/zone.min.js"></script>
<!-- SystemJS -->
<script src="$DEMOROOT$/en/angular/node_modules/systemjs/dist/system.js"></script>
<script src="systemjs.config.js"></script>
<script>
// workaround to load 'rxjs/operators' from the rxjs bundle
System.import('rxjs').then(function (m) {
System.import('@angular/compiler');
System.set(SystemJS.resolveSync('rxjs/operators'), System.newModule(m.operators));
System.import('$DEMOROOT$/en/lib/angular/license.ts');
System.import('./src/app.component');
});
</script>
</head>
<body>
<app-component></app-component>
</body>
</html>
<div class="sample-tutorial">
<gc-spread-sheets [hostStyle]="hostStyle" (workbookInitialized)="initSpread($event)">
</gc-spread-sheets>
</div>
export function getData() {
return {
shape_hyperlink_data_sheet1 : {
"name": "Shape Hyperlink",
"isSelected": true,
"rowCount": 36,
"columnCount": 18,
"activeRow": 9,
"activeCol": 12,
"frozenTrailingRowStickToEdge": true,
"frozenTrailingColumnStickToEdge": true,
"theme": {
"name": "Office",
"themeColor": {
"name": "Office",
"background1": {
"a": 255,
"r": 255,
"g": 255,
"b": 255
},
"background2": {
"a": 255,
"r": 231,
"g": 230,
"b": 230
},
"text1": {
"a": 255,
"r": 0,
"g": 0,
"b": 0
},
"text2": {
"a": 255,
"r": 68,
"g": 84,
"b": 106
},
"accent1": {
"a": 255,
"r": 68,
"g": 114,
"b": 196
},
"accent2": {
"a": 255,
"r": 237,
"g": 125,
"b": 49
},
"accent3": {
"a": 255,
"r": 165,
"g": 165,
"b": 165
},
"accent4": {
"a": 255,
"r": 255,
"g": 192,
"b": 0
},
"accent5": {
"a": 255,
"r": 91,
"g": 155,
"b": 213
},
"accent6": {
"a": 255,
"r": 112,
"g": 173,
"b": 71
},
"hyperlink": {
"a": 255,
"r": 5,
"g": 99,
"b": 193
},
"followedHyperlink": {
"a": 255,
"r": 149,
"g": 79,
"b": 114
}
},
"headingFont": "Calibri Light",
"bodyFont": "Calibri"
},
"data": {
"defaultDataNode": {
"style": {
"backColor": null,
"foreColor": "Text 1 0",
"vAlign": 2,
"font": "normal normal 14.7px Calibri",
"themeFont": "Body",
"borderLeft": null,
"borderTop": null,
"borderRight": null,
"borderBottom": null,
"locked": true,
"textIndent": 0,
"wordWrap": false,
"diagonalDown": null,
"diagonalUp": null
}
},
"dataTable": { }
},
"rowHeaderData": {
"defaultDataNode": {
"style": {
"themeFont": "Body"
}
}
},
"colHeaderData": {
"defaultDataNode": {
"style": {
"themeFont": "Body"
}
}
},
"leftCellIndex": 0,
"topCellIndex": 0,
"selections": {
"0": {
"row": 12,
"rowCount": 1,
"col": 15,
"colCount": 1
},
"length": 1
},
"defaults": {
"colHeaderRowHeight": 20,
"colWidth": 64,
"rowHeaderColWidth": 40,
"rowHeight": 20,
"_isExcelDefaultColumnWidth": true
},
"rowOutlines": {
"items": [ ]
},
"columnOutlines": {
"items": [ ]
},
"cellStates": { },
"states": { },
"outlineColumnOptions": { },
"autoMergeRangeInfos": [ ],
"printInfo": {
"margin": {
"top": 72,
"bottom": 72,
"left": 67,
"right": 67,
"header": 29,
"footer": 29
},
"pageOrder": 1,
"paperSize": {
"width": 850,
"height": 1100,
"kind": 1
}
},
"shapes": [
{
"isLocked": true,
"canPrint": true,
"dynamicMove": true,
"dynamicSize": true,
"allowResize": true,
"allowRotate": true,
"allowMove": true,
"showHandle": true,
"alt": "",
"childrenData": [
{ },
{ },
{ },
{ },
{ },
{
"hAlign": 1,
"vAlign": 1
},
{ },
{ },
{ },
{
"hAlign": 1,
"vAlign": 1
},
{
"hAlign": 1,
"vAlign": 1
},
{
"hAlign": 1,
"vAlign": 1
}
],
"shapeData": {
"anchorType": 0,
"startPoint": {
"row": 1,
"col": 1,
"rowOffset": 1,
"colOffset": 1
},
"endPoint": {
"row": 23,
"col": 11,
"rowOffset": 6,
"colOffset": 52
},
"grpSp": {
"shapeType": 3,
"sp": [
{
"shapeType": 5,
"macro": "",
"textlink": "",
"nvSpPr": {
"cNvPr": {
"id": 3,
"name": "Background",
"descr": "Background",
"extLst": {
"ext": [
{
"creationId": [
{
"name": "http://schemas.microsoft.com/office/drawing/2014/main",
"id": "{0A5DAF91-14F3-40DB-9D30-6898DBB09546}"
}
],
"uri": "{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}",
"hiddenExtensionType": 4
}
]
},
"hidden": false
},
"cNvSpPr": {
"txBox": false
}
},
"spPr": {
"xfrm": {
"flipH": false,
"flipV": false,
"rot": 0,
"off": {
"x": 65,
"y": 21
},
"ext": {
"cx": 691,
"cy": 445
}
},
"prstGeom": {
"prst": 4,
"avLst": { }
},
"ln": {
"w": 1.33,
"cap": 2,
"cmpd": 0,
"algn": 0,
"prstDash": 0,
"noFill": true,
"miter": {
"lim": 800000
}
},
"extLst": {
"ext": [ ]
},
"solidFill": {
"srgbClr": {
"val": [
245,
245,
245
]
}
}
},
"style": {
"lnRef": {
"ColorProp": {
"schemeClr": {
"val": 4,
"shade": [
50000
]
},
"colorFillType": 0
},
"idx": 2
},
"fillRef": {
"ColorProp": {
"schemeClr": {
"val": 4
},
"colorFillType": 0
},
"idx": 1
},
"effectRef": {
"ColorProp": {
"schemeClr": {
"val": 4
}
},
"idx": 0
},
"fontRef": {
"TextCharacterProperties": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 14.666666666666666,
"solidFill": {
"schemeClr": {
"val": 0
}
}
},
"idx": 1
}
},
"txBody": {
"bodyPr": {
"wrap": 1,
"rtlCol": false,
"anchor": 0,
"horzOverflow": 1,
"vertOverflow": 2
},
"lstStyle": {
"defPPr": {
"defRPr": { }
},
"lvl1pPr": {
"marL": 0,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
},
"solidFill": {
"schemeClr": {
"val": 0
}
}
}
},
"lvl2pPr": {
"marL": 457200,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl3pPr": {
"marL": 914400,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl4pPr": {
"marL": 1371600,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl5pPr": {
"marL": 1828800,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl6pPr": {
"marL": 2286000,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl7pPr": {
"marL": 2743200,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl8pPr": {
"marL": 3200400,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl9pPr": {
"marL": 3657600,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
}
},
"p": [
{
"pPr": {
"algn": 0,
"defRPr": {
"sz": 24,
"kern": 1200,
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
},
"solidFill": {
"schemeClr": {
"val": 0
}
}
}
},
"endParaRPr": {
"sz": 14.67,
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
}
},
"elements": [ ]
}
]
},
"isLocked": true,
"canPrint": true,
"dynamicMove": true,
"dynamicSize": true,
"allowResize": true,
"allowRotate": true,
"allowMove": true,
"showHandle": true
},
{
"shapeType": 5,
"macro": "",
"textlink": "",
"nvSpPr": {
"cNvPr": {
"id": 4,
"name": "Step",
"descr": "Add numbers like a champ",
"extLst": {
"ext": [
{
"creationId": [
{
"name": "http://schemas.microsoft.com/office/drawing/2014/main",
"id": "{8CFFE355-3A75-40AF-8F0C-51C6B7802BF4}"
}
],
"uri": "{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}",
"hiddenExtensionType": 4
}
]
},
"hidden": false
},
"cNvSpPr": {
"txBox": true
}
},
"spPr": {
"xfrm": {
"flipH": false,
"flipV": false,
"rot": 0,
"off": {
"x": 89.33060400000001,
"y": 52.333333
},
"ext": {
"cx": 547.669396,
"cy": 51.007034
}
},
"prstGeom": {
"prst": 4,
"avLst": { }
},
"ln": {
"w": 1,
"cmpd": 0,
"noFill": true
},
"extLst": {
"ext": [ ]
},
"noFill": true
},
"style": {
"lnRef": {
"ColorProp": {
"colorFillType": 0,
"scrgbClr": {
"r": 0,
"g": 0,
"b": 0,
"invGammaField": [ ],
"gammaField": [ ],
"blueOffField": [ ],
"blueModField": [ ],
"blueField": [ ],
"greenOffField": [ ],
"greenModField": [ ],
"greenField": [ ],
"redOffField": [ ],
"redModField": [ ],
"redField": [ ],
"lumOffField": [ ],
"lumModField": [ ],
"lumField": [ ],
"satOffField": [ ],
"satModField": [ ],
"satField": [ ],
"hueOffField": [ ],
"hueModField": [ ],
"hueField": [ ],
"alphaOffField": [ ],
"alphaModField": [ ],
"alphaField": [ ],
"grayField": [ ],
"invField": [ ],
"compField": [ ],
"shadeField": [ ],
"tintField": [ ]
}
},
"idx": 0
},
"fillRef": {
"ColorProp": {
"colorFillType": 0,
"scrgbClr": {
"r": 0,
"g": 0,
"b": 0,
"invGammaField": [ ],
"gammaField": [ ],
"blueOffField": [ ],
"blueModField": [ ],
"blueField": [ ],
"greenOffField": [ ],
"greenModField": [ ],
"greenField": [ ],
"redOffField": [ ],
"redModField": [ ],
"redField": [ ],
"lumOffField": [ ],
"lumModField": [ ],
"lumField": [ ],
"satOffField": [ ],
"satModField": [ ],
"satField": [ ],
"hueOffField": [ ],
"hueModField": [ ],
"hueField": [ ],
"alphaOffField": [ ],
"alphaModField": [ ],
"alphaField": [ ],
"grayField": [ ],
"invField": [ ],
"compField": [ ],
"shadeField": [ ],
"tintField": [ ]
}
},
"idx": 0
},
"effectRef": {
"ColorProp": {
"scrgbClr": {
"r": 0,
"g": 0,
"b": 0
}
},
"idx": 0
},
"fontRef": {
"TextCharacterProperties": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 14.666666666666666,
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"idx": 1
}
},
"txBody": {
"bodyPr": {
"wrap": 1,
"lIns": 0,
"rIns": 0,
"rtlCol": false,
"anchor": 0,
"horzOverflow": 1,
"vertOverflow": 2
},
"lstStyle": {
"defPPr": {
"defRPr": { }
},
"lvl1pPr": {
"marL": 0,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 1
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl2pPr": {
"marL": 457200,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 13
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl3pPr": {
"marL": 914400,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 13
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl4pPr": {
"marL": 1371600,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 13
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl5pPr": {
"marL": 1828800,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 13
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl6pPr": {
"marL": 2286000,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 13
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl7pPr": {
"marL": 2743200,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 13
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl8pPr": {
"marL": 3200400,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 13
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl9pPr": {
"marL": 3657600,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 13
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
}
},
"p": [
{
"pPr": {
"marL": 0,
"marR": 0,
"lvl": 0,
"indent": 0,
"defTabSz": 914400,
"eaLnBrk": true,
"fontAlgn": 0,
"latinLnBrk": false,
"hangingPunct": true,
"lnSpc": {
"spcPct": 100000
},
"spcBef": {
"spcPts": 0
},
"spcAft": {
"spcPts": 0
},
"buClrTx": { },
"buSzTx": { },
"buFontTx": { },
"buNone": { },
"tabLst": {
"tab": [ ]
},
"defRPr": {
"sz": 24,
"kern": 1200,
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
},
"b": false,
"i": false,
"strike": 0,
"u": 0,
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"algn": 0
},
"elements": [
{
"elementType": 0,
"rPr": {
"kumimoji": false,
"sz": 29.33,
"b": false,
"i": false,
"u": 0,
"strike": 0,
"kern": 0,
"cap": 0,
"spc": 0,
"normalizeH": false,
"ln": {
"noFill": true
},
"effectLst": { },
"uLnTx": { },
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": "34",
"charset": "0",
"typeface": "Segoe UI"
},
"cs": {
"pitchFamily": "34",
"charset": "0",
"typeface": "Segoe UI Light",
"panose": "020B0502040204020203"
},
"solidFill": {
"srgbClr": {
"val": [
59,
56,
56
]
}
}
},
"t": "Shape Hyperlink"
}
]
}
]
},
"isLocked": true,
"canPrint": true,
"dynamicMove": true,
"dynamicSize": true,
"allowResize": true,
"allowRotate": true,
"allowMove": true,
"showHandle": true
},
{
"shapeType": 4,
"macro": "",
"nvCxnSpPr": {
"cNvPr": {
"id": 6,
"name": "Bottom line",
"descr": "Decorative line",
"extLst": {
"ext": [
{
"creationId": [
{
"name": "http://schemas.microsoft.com/office/drawing/2014/main",
"id": "{8297A86A-DB1E-4867-A8FB-C76DA0A7BAD9}"
}
],
"uri": "{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}",
"hiddenExtensionType": 4
}
]
},
"hidden": false,
"title": ""
},
"cNvCxnSpPr": { }
},
"spPr": {
"xfrm": {
"flipH": false,
"flipV": false,
"rot": 0,
"off": {
"x": 90.664042,
"y": 387.123675
},
"ext": {
"cx": 618.336063,
"cy": 0.8763250000000085
}
},
"prstGeom": {
"prst": 95,
"avLst": { }
},
"ln": {
"w": 2.67,
"cap": 2,
"cmpd": 0,
"algn": 0,
"prstDash": 0,
"solidFill": {
"srgbClr": {
"val": [
33,
115,
70
]
}
},
"miter": {
"lim": 800000
}
},
"extLst": {
"ext": [ ]
},
"noFill": true
},
"style": {
"lnRef": {
"ColorProp": {
"schemeClr": {
"val": 4
},
"colorFillType": 0
},
"idx": 1
},
"fillRef": {
"ColorProp": {
"colorFillType": 0,
"scrgbClr": {
"r": 0,
"g": 0,
"b": 0,
"invGammaField": [ ],
"gammaField": [ ],
"blueOffField": [ ],
"blueModField": [ ],
"blueField": [ ],
"greenOffField": [ ],
"greenModField": [ ],
"greenField": [ ],
"redOffField": [ ],
"redModField": [ ],
"redField": [ ],
"lumOffField": [ ],
"lumModField": [ ],
"lumField": [ ],
"satOffField": [ ],
"satModField": [ ],
"satField": [ ],
"hueOffField": [ ],
"hueModField": [ ],
"hueField": [ ],
"alphaOffField": [ ],
"alphaModField": [ ],
"alphaField": [ ],
"grayField": [ ],
"invField": [ ],
"compField": [ ],
"shadeField": [ ],
"tintField": [ ]
}
},
"idx": 0
},
"effectRef": {
"ColorProp": {
"schemeClr": {
"val": 4
}
},
"idx": 0
},
"fontRef": {
"TextCharacterProperties": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 14.666666666666666,
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"idx": 1
}
},
"isLocked": true,
"canPrint": true,
"dynamicMove": true,
"dynamicSize": true,
"allowResize": true,
"allowRotate": true,
"allowMove": true,
"showHandle": true
},
{
"shapeType": 4,
"macro": "",
"nvCxnSpPr": {
"cNvPr": {
"id": 8,
"name": "Top line",
"descr": "Decorative line",
"extLst": {
"ext": [
{
"creationId": [
{
"name": "http://schemas.microsoft.com/office/drawing/2014/main",
"id": "{D1DA4734-4F25-46E8-B306-F4A61A7C64AE}"
}
],
"uri": "{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}",
"hiddenExtensionType": 4
}
]
},
"hidden": false,
"title": ""
},
"cNvCxnSpPr": { }
},
"spPr": {
"xfrm": {
"flipH": false,
"flipV": true,
"rot": 0,
"off": {
"x": 89.664042,
"y": 105.000105
},
"ext": {
"cx": 608.336063,
"cy": 0.05585299999999904
}
},
"prstGeom": {
"prst": 95,
"avLst": { }
},
"ln": {
"w": 2.67,
"cap": 2,
"cmpd": 0,
"algn": 0,
"prstDash": 0,
"solidFill": {
"srgbClr": {
"val": [
33,
115,
70
]
}
},
"miter": {
"lim": 800000
}
},
"extLst": {
"ext": [ ]
},
"noFill": true
},
"style": {
"lnRef": {
"ColorProp": {
"schemeClr": {
"val": 4
},
"colorFillType": 0
},
"idx": 1
},
"fillRef": {
"ColorProp": {
"colorFillType": 0,
"scrgbClr": {
"r": 0,
"g": 0,
"b": 0,
"invGammaField": [ ],
"gammaField": [ ],
"blueOffField": [ ],
"blueModField": [ ],
"blueField": [ ],
"greenOffField": [ ],
"greenModField": [ ],
"greenField": [ ],
"redOffField": [ ],
"redModField": [ ],
"redField": [ ],
"lumOffField": [ ],
"lumModField": [ ],
"lumField": [ ],
"satOffField": [ ],
"satModField": [ ],
"satField": [ ],
"hueOffField": [ ],
"hueModField": [ ],
"hueField": [ ],
"alphaOffField": [ ],
"alphaModField": [ ],
"alphaField": [ ],
"grayField": [ ],
"invField": [ ],
"compField": [ ],
"shadeField": [ ],
"tintField": [ ]
}
},
"idx": 0
},
"effectRef": {
"ColorProp": {
"schemeClr": {
"val": 4
}
},
"idx": 0
},
"fontRef": {
"TextCharacterProperties": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 14.666666666666666,
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"idx": 1
}
},
"isLocked": true,
"canPrint": true,
"dynamicMove": true,
"dynamicSize": true,
"allowResize": true,
"allowRotate": true,
"allowMove": true,
"showHandle": true
},
{
"shapeType": 5,
"macro": "",
"textlink": "",
"nvSpPr": {
"cNvPr": {
"id": 9,
"name": "Rectangle 8",
"extLst": {
"ext": [
{
"creationId": [
{
"name": "http://schemas.microsoft.com/office/drawing/2014/main",
"id": "{32D34B37-A8C9-44FD-95A8-CBFDC8DD1876}"
}
],
"uri": "{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}",
"hiddenExtensionType": 4
}
]
},
"hidden": false
},
"cNvSpPr": {
"txBox": false
}
},
"spPr": {
"xfrm": {
"flipH": false,
"flipV": false,
"rot": 0,
"off": {
"x": 130,
"y": 126
},
"ext": {
"cx": 430,
"cy": 51
}
},
"prstGeom": {
"prst": 4,
"avLst": { }
},
"ln": {
"w": 1.33,
"cap": 2,
"cmpd": 0,
"algn": 0,
"prstDash": 0,
"noFill": true,
"miter": {
"lim": 800000
}
},
"extLst": {
"ext": [ ]
},
"noFill": true
},
"style": {
"lnRef": {
"ColorProp": {
"schemeClr": {
"val": 9
},
"colorFillType": 0
},
"idx": 2
},
"fillRef": {
"ColorProp": {
"schemeClr": {
"val": 0
},
"colorFillType": 0
},
"idx": 1
},
"effectRef": {
"ColorProp": {
"schemeClr": {
"val": 9
}
},
"idx": 0
},
"fontRef": {
"TextCharacterProperties": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 14.666666666666666,
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"idx": 1
}
},
"txBody": {
"bodyPr": {
"vertOverflow": 2,
"horzOverflow": 1,
"rtlCol": false,
"anchor": 0
},
"lstStyle": { },
"p": [
{
"pPr": {
"algn": 0,
"defRPr": {
"sz": 14.67,
"b": false,
"i": false,
"effectLst": { },
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
},
"solidFill": {
"schemeClr": {
"val": 1
}
}
}
},
"endParaRPr": {
"sz": 14.67,
"b": false,
"i": false,
"solidFill": {
"schemeClr": {
"val": 13
}
},
"effectLst": { },
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
},
"elements": [
{
"elementType": 0,
"rPr": {
"sz": 14.67,
"b": false,
"i": false,
"effectLst": { },
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
},
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"t": "Shape hyperlink allows"
},
{
"elementType": 0,
"rPr": {
"sz": 14.67,
"b": false,
"i": false,
"effectLst": { },
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
},
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"t": " users to quickly jump "
},
{
"elementType": 0,
"rPr": {
"sz": 14.67,
"b": false,
"i": false,
"effectLst": { },
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
},
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"t": "to a specific range in the worksheet"
},
{
"elementType": 0,
"rPr": {
"sz": 14.67,
"b": false,
"i": false,
"effectLst": { },
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
},
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"t": "."
}
]
}
]
},
"isLocked": true,
"canPrint": true,
"dynamicMove": true,
"dynamicSize": true,
"allowResize": true,
"allowRotate": true,
"allowMove": true,
"showHandle": true
},
{
"shapeType": 5,
"macro": "",
"textlink": "",
"nvSpPr": {
"cNvPr": {
"id": 10,
"name": "1",
"descr": "1",
"extLst": {
"ext": [
{
"creationId": [
{
"name": "http://schemas.microsoft.com/office/drawing/2014/main",
"id": "{85F89CA8-E2A8-40A6-82A5-C4C0DA05AC32}"
}
],
"uri": "{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}",
"hiddenExtensionType": 4
}
]
},
"hidden": false
},
"cNvSpPr": {
"txBox": false
}
},
"spPr": {
"xfrm": {
"flipH": false,
"flipV": false,
"rot": 0,
"off": {
"x": 95.000105,
"y": 131
},
"ext": {
"cx": 38.000000000000014,
"cy": 38
}
},
"prstGeom": {
"prst": 34,
"avLst": { }
},
"ln": {
"w": 1.33,
"cap": 2,
"cmpd": 0,
"algn": 0,
"prstDash": 0,
"noFill": true,
"miter": {
"lim": 800000
}
},
"extLst": {
"ext": [ ]
},
"solidFill": {
"srgbClr": {
"val": [
33,
115,
70
]
}
}
},
"style": {
"lnRef": {
"ColorProp": {
"schemeClr": {
"val": 4,
"shade": [
50000
]
},
"colorFillType": 0
},
"idx": 2
},
"fillRef": {
"ColorProp": {
"schemeClr": {
"val": 4
},
"colorFillType": 0
},
"idx": 1
},
"effectRef": {
"ColorProp": {
"schemeClr": {
"val": 4
}
},
"idx": 0
},
"fontRef": {
"TextCharacterProperties": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 14.666666666666666,
"solidFill": {
"schemeClr": {
"val": 0
}
}
},
"idx": 1
}
},
"txBody": {
"bodyPr": {
"wrap": 1,
"rtlCol": false,
"anchor": 1,
"horzOverflow": 1,
"vertOverflow": 2
},
"lstStyle": {
"defPPr": {
"defRPr": { }
},
"lvl1pPr": {
"marL": 0,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 0
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl2pPr": {
"marL": 457200,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl3pPr": {
"marL": 914400,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl4pPr": {
"marL": 1371600,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl5pPr": {
"marL": 1828800,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl6pPr": {
"marL": 2286000,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl7pPr": {
"marL": 2743200,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl8pPr": {
"marL": 3200400,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl9pPr": {
"marL": 3657600,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
}
},
"p": [
{
"pPr": {
"algn": 1,
"defRPr": {
"sz": 16,
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"cs": {
"pitchFamily": "34",
"charset": "0",
"typeface": "Segoe UI Semibold",
"panose": "020B0702040204020203"
},
"kern": 1200,
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"solidFill": {
"schemeClr": {
"val": 0
}
}
}
},
"elements": [
{
"elementType": 0,
"rPr": {
"sz": 16,
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"cs": {
"pitchFamily": "34",
"charset": "0",
"typeface": "Segoe UI Semibold",
"panose": "020B0702040204020203"
},
"kern": 1200,
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"solidFill": {
"schemeClr": {
"val": 0
}
}
},
"t": "1"
}
]
}
]
},
"isLocked": true,
"canPrint": true,
"dynamicMove": true,
"dynamicSize": true,
"allowResize": true,
"allowRotate": true,
"allowMove": true,
"showHandle": true
},
{
"shapeType": 5,
"macro": "",
"textlink": "",
"nvSpPr": {
"cNvPr": {
"id": 19,
"name": "Rectangle 18",
"extLst": {
"ext": [
{
"creationId": [
{
"name": "http://schemas.microsoft.com/office/drawing/2014/main",
"id": "{5133BEB1-8A68-439C-A865-2B6BFE8E3686}"
}
],
"uri": "{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}",
"hiddenExtensionType": 4
}
]
},
"hidden": false
},
"cNvSpPr": {
"txBox": false
}
},
"spPr": {
"xfrm": {
"flipH": false,
"flipV": false,
"rot": 0,
"off": {
"x": 130,
"y": 305
},
"ext": {
"cx": 430,
"cy": 85
}
},
"prstGeom": {
"prst": 4,
"avLst": { }
},
"ln": {
"w": 1.33,
"cap": 2,
"cmpd": 0,
"algn": 0,
"prstDash": 0,
"noFill": true,
"miter": {
"lim": 800000
}
},
"extLst": {
"ext": [ ]
},
"noFill": true
},
"style": {
"lnRef": {
"ColorProp": {
"schemeClr": {
"val": 9
},
"colorFillType": 0
},
"idx": 2
},
"fillRef": {
"ColorProp": {
"schemeClr": {
"val": 0
},
"colorFillType": 0
},
"idx": 1
},
"effectRef": {
"ColorProp": {
"schemeClr": {
"val": 9
}
},
"idx": 0
},
"fontRef": {
"TextCharacterProperties": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 14.666666666666666,
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"idx": 1
}
},
"txBody": {
"bodyPr": {
"vertOverflow": 2,
"horzOverflow": 1,
"rtlCol": false,
"anchor": 0
},
"lstStyle": { },
"p": [
{
"endParaRPr": {
"sz": 16,
"effectLst": { }
},
"elements": [
{
"elementType": 0,
"rPr": {
"sz": 14.67,
"b": false,
"i": false,
"effectLst": { },
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
},
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"t": "Shape hyperlinks can be customized with different behavior that the developer can create custom JavaScript code for. In this example, the hyperlink will start or pause a timer."
}
],
"pPr": {
"defRPr": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 16,
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"algn": 0
}
}
]
},
"isLocked": true,
"canPrint": true,
"dynamicMove": true,
"dynamicSize": true,
"allowResize": true,
"allowRotate": true,
"allowMove": true,
"showHandle": true
},
{
"shapeType": 5,
"macro": "",
"textlink": "",
"nvSpPr": {
"cNvPr": {
"id": 20,
"name": "Rectangle 19",
"extLst": {
"ext": [
{
"creationId": [
{
"name": "http://schemas.microsoft.com/office/drawing/2014/main",
"id": "{574A5A6A-212C-451E-8886-63C5D93B19AF}"
}
],
"uri": "{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}",
"hiddenExtensionType": 4
}
]
},
"hidden": false
},
"cNvSpPr": {
"txBox": false
}
},
"spPr": {
"xfrm": {
"flipH": false,
"flipV": false,
"rot": 0,
"off": {
"x": 130,
"y": 246
},
"ext": {
"cx": 430,
"cy": 51
}
},
"prstGeom": {
"prst": 4,
"avLst": { }
},
"ln": {
"w": 1.33,
"cap": 2,
"cmpd": 0,
"algn": 0,
"prstDash": 0,
"noFill": true,
"miter": {
"lim": 800000
}
},
"extLst": {
"ext": [ ]
},
"noFill": true
},
"style": {
"lnRef": {
"ColorProp": {
"schemeClr": {
"val": 9
},
"colorFillType": 0
},
"idx": 2
},
"fillRef": {
"ColorProp": {
"schemeClr": {
"val": 0
},
"colorFillType": 0
},
"idx": 1
},
"effectRef": {
"ColorProp": {
"schemeClr": {
"val": 9
}
},
"idx": 0
},
"fontRef": {
"TextCharacterProperties": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 14.666666666666666,
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"idx": 1
}
},
"txBody": {
"bodyPr": {
"vertOverflow": 2,
"horzOverflow": 1,
"rtlCol": false,
"anchor": 0
},
"lstStyle": { },
"p": [
{
"endParaRPr": {
"sz": 16,
"effectLst": { }
},
"elements": [
{
"elementType": 0,
"rPr": {
"sz": 14.67,
"b": false,
"i": false,
"effectLst": { },
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
},
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"t": "Shape hyperlink"
},
{
"elementType": 0,
"rPr": {
"sz": 14.67,
"b": false,
"i": false,
"effectLst": { },
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
},
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"t": " will"
},
{
"elementType": 0,
"rPr": {
"sz": 14.67,
"b": false,
"i": false,
"effectLst": { },
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
},
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"t": " opens up a specified webpage when the shape with hyperlink in the worksheet is clicked on."
}
],
"pPr": {
"defRPr": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 16,
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"algn": 0
}
}
]
},
"isLocked": true,
"canPrint": true,
"dynamicMove": true,
"dynamicSize": true,
"allowResize": true,
"allowRotate": true,
"allowMove": true,
"showHandle": true
},
{
"shapeType": 5,
"macro": "",
"textlink": "",
"nvSpPr": {
"cNvPr": {
"id": 21,
"name": "Rectangle 20",
"extLst": {
"ext": [
{
"creationId": [
{
"name": "http://schemas.microsoft.com/office/drawing/2014/main",
"id": "{770FC8A2-CD47-4A21-ABBD-4EA2AE908273}"
}
],
"uri": "{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}",
"hiddenExtensionType": 4
}
]
},
"hidden": false
},
"cNvSpPr": {
"txBox": false
}
},
"spPr": {
"xfrm": {
"flipH": false,
"flipV": false,
"rot": 0,
"off": {
"x": 130,
"y": 183
},
"ext": {
"cx": 430,
"cy": 64
}
},
"prstGeom": {
"prst": 4,
"avLst": { }
},
"ln": {
"w": 1.33,
"cap": 2,
"cmpd": 0,
"algn": 0,
"prstDash": 0,
"noFill": true,
"miter": {
"lim": 800000
}
},
"extLst": {
"ext": [ ]
},
"noFill": true
},
"style": {
"lnRef": {
"ColorProp": {
"schemeClr": {
"val": 9
},
"colorFillType": 0
},
"idx": 2
},
"fillRef": {
"ColorProp": {
"schemeClr": {
"val": 0
},
"colorFillType": 0
},
"idx": 1
},
"effectRef": {
"ColorProp": {
"schemeClr": {
"val": 9
}
},
"idx": 0
},
"fontRef": {
"TextCharacterProperties": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 14.666666666666666,
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"idx": 1
}
},
"txBody": {
"bodyPr": {
"vertOverflow": 2,
"horzOverflow": 1,
"rtlCol": false,
"anchor": 0
},
"lstStyle": { },
"p": [
{
"endParaRPr": {
"sz": 14.67,
"effectLst": { }
},
"elements": [
{
"elementType": 0,
"rPr": {
"sz": 14.67,
"b": false,
"i": false,
"effectLst": { },
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
},
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"t": "Shape hyperlink allows users to quickly start a new draft email to the specified address using the default system's email application."
}
],
"pPr": {
"defRPr": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 14.67,
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"algn": 0
}
}
]
},
"isLocked": true,
"canPrint": true,
"dynamicMove": true,
"dynamicSize": true,
"allowResize": true,
"allowRotate": true,
"allowMove": true,
"showHandle": true
},
{
"shapeType": 5,
"macro": "",
"textlink": "",
"nvSpPr": {
"cNvPr": {
"id": 23,
"name": "1",
"descr": "1",
"extLst": {
"ext": [
{
"creationId": [
{
"name": "http://schemas.microsoft.com/office/drawing/2014/main",
"id": "{AC53F069-24B2-4038-B221-70599E062DAB}"
}
],
"uri": "{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}",
"hiddenExtensionType": 4
}
]
},
"hidden": false
},
"cNvSpPr": {
"txBox": false
}
},
"spPr": {
"xfrm": {
"flipH": false,
"flipV": false,
"rot": 0,
"off": {
"x": 95.000105,
"y": 189
},
"ext": {
"cx": 38.000000000000014,
"cy": 38
}
},
"prstGeom": {
"prst": 34,
"avLst": { }
},
"ln": {
"w": 1.33,
"cap": 2,
"cmpd": 0,
"algn": 0,
"prstDash": 0,
"noFill": true,
"miter": {
"lim": 800000
}
},
"extLst": {
"ext": [ ]
},
"solidFill": {
"srgbClr": {
"val": [
33,
115,
70
]
}
}
},
"style": {
"lnRef": {
"ColorProp": {
"schemeClr": {
"val": 4,
"shade": [
50000
]
},
"colorFillType": 0
},
"idx": 2
},
"fillRef": {
"ColorProp": {
"schemeClr": {
"val": 4
},
"colorFillType": 0
},
"idx": 1
},
"effectRef": {
"ColorProp": {
"schemeClr": {
"val": 4
}
},
"idx": 0
},
"fontRef": {
"TextCharacterProperties": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 14.666666666666666,
"solidFill": {
"schemeClr": {
"val": 0
}
}
},
"idx": 1
}
},
"txBody": {
"bodyPr": {
"wrap": 1,
"rtlCol": false,
"anchor": 1,
"horzOverflow": 1,
"vertOverflow": 2
},
"lstStyle": {
"defPPr": {
"defRPr": { }
},
"lvl1pPr": {
"marL": 0,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 0
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl2pPr": {
"marL": 457200,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl3pPr": {
"marL": 914400,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl4pPr": {
"marL": 1371600,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl5pPr": {
"marL": 1828800,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl6pPr": {
"marL": 2286000,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl7pPr": {
"marL": 2743200,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl8pPr": {
"marL": 3200400,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl9pPr": {
"marL": 3657600,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
}
},
"p": [
{
"pPr": {
"algn": 1,
"defRPr": {
"sz": 16,
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"cs": {
"pitchFamily": "34",
"charset": "0",
"typeface": "Segoe UI Semibold",
"panose": "020B0702040204020203"
},
"kern": 1200,
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"solidFill": {
"schemeClr": {
"val": 0
}
}
}
},
"elements": [
{
"elementType": 0,
"rPr": {
"sz": 16,
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"cs": {
"pitchFamily": "34",
"charset": "0",
"typeface": "Segoe UI Semibold",
"panose": "020B0702040204020203"
},
"kern": 1200,
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"solidFill": {
"schemeClr": {
"val": 0
}
}
},
"t": "2"
}
]
}
]
},
"isLocked": true,
"canPrint": true,
"dynamicMove": true,
"dynamicSize": true,
"allowResize": true,
"allowRotate": true,
"allowMove": true,
"showHandle": true
},
{
"shapeType": 5,
"macro": "",
"textlink": "",
"nvSpPr": {
"cNvPr": {
"id": 24,
"name": "1",
"descr": "1",
"extLst": {
"ext": [
{
"creationId": [
{
"name": "http://schemas.microsoft.com/office/drawing/2014/main",
"id": "{860C59E4-07B4-45C2-9772-07405CD98B61}"
}
],
"uri": "{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}",
"hiddenExtensionType": 4
}
]
},
"hidden": false
},
"cNvSpPr": {
"txBox": false
}
},
"spPr": {
"xfrm": {
"flipH": false,
"flipV": false,
"rot": 0,
"off": {
"x": 95.000105,
"y": 248.99999999999997
},
"ext": {
"cx": 38.000000000000014,
"cy": 38.00000000000003
}
},
"prstGeom": {
"prst": 34,
"avLst": { }
},
"ln": {
"w": 1.33,
"cap": 2,
"cmpd": 0,
"algn": 0,
"prstDash": 0,
"noFill": true,
"miter": {
"lim": 800000
}
},
"extLst": {
"ext": [ ]
},
"solidFill": {
"srgbClr": {
"val": [
33,
115,
70
]
}
}
},
"style": {
"lnRef": {
"ColorProp": {
"schemeClr": {
"val": 4,
"shade": [
50000
]
},
"colorFillType": 0
},
"idx": 2
},
"fillRef": {
"ColorProp": {
"schemeClr": {
"val": 4
},
"colorFillType": 0
},
"idx": 1
},
"effectRef": {
"ColorProp": {
"schemeClr": {
"val": 4
}
},
"idx": 0
},
"fontRef": {
"TextCharacterProperties": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 14.666666666666666,
"solidFill": {
"schemeClr": {
"val": 0
}
}
},
"idx": 1
}
},
"txBody": {
"bodyPr": {
"wrap": 1,
"rtlCol": false,
"anchor": 1,
"horzOverflow": 1,
"vertOverflow": 2
},
"lstStyle": {
"defPPr": {
"defRPr": { }
},
"lvl1pPr": {
"marL": 0,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 0
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl2pPr": {
"marL": 457200,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl3pPr": {
"marL": 914400,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl4pPr": {
"marL": 1371600,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl5pPr": {
"marL": 1828800,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl6pPr": {
"marL": 2286000,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl7pPr": {
"marL": 2743200,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl8pPr": {
"marL": 3200400,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl9pPr": {
"marL": 3657600,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
}
},
"p": [
{
"pPr": {
"algn": 1,
"defRPr": {
"sz": 16,
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"cs": {
"pitchFamily": "34",
"charset": "0",
"typeface": "Segoe UI Semibold",
"panose": "020B0702040204020203"
},
"kern": 1200,
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"solidFill": {
"schemeClr": {
"val": 0
}
}
}
},
"elements": [
{
"elementType": 0,
"rPr": {
"sz": 16,
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"cs": {
"pitchFamily": "34",
"charset": "0",
"typeface": "Segoe UI Semibold",
"panose": "020B0702040204020203"
},
"kern": 1200,
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"solidFill": {
"schemeClr": {
"val": 0
}
}
},
"t": "3"
}
]
}
]
},
"isLocked": true,
"canPrint": true,
"dynamicMove": true,
"dynamicSize": true,
"allowResize": true,
"allowRotate": true,
"allowMove": true,
"showHandle": true
},
{
"shapeType": 5,
"macro": "",
"textlink": "",
"nvSpPr": {
"cNvPr": {
"id": 25,
"name": "1",
"descr": "1",
"extLst": {
"ext": [
{
"creationId": [
{
"name": "http://schemas.microsoft.com/office/drawing/2014/main",
"id": "{3B13886B-E2EF-412B-BA95-8F3F57E6D578}"
}
],
"uri": "{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}",
"hiddenExtensionType": 4
}
]
},
"hidden": false
},
"cNvSpPr": {
"txBox": false
}
},
"spPr": {
"xfrm": {
"flipH": false,
"flipV": false,
"rot": 0,
"off": {
"x": 95.000105,
"y": 310
},
"ext": {
"cx": 38.000000000000014,
"cy": 38
}
},
"prstGeom": {
"prst": 34,
"avLst": { }
},
"ln": {
"w": 1.33,
"cap": 2,
"cmpd": 0,
"algn": 0,
"prstDash": 0,
"noFill": true,
"miter": {
"lim": 800000
}
},
"extLst": {
"ext": [ ]
},
"solidFill": {
"srgbClr": {
"val": [
33,
115,
70
]
}
}
},
"style": {
"lnRef": {
"ColorProp": {
"schemeClr": {
"val": 4,
"shade": [
50000
]
},
"colorFillType": 0
},
"idx": 2
},
"fillRef": {
"ColorProp": {
"schemeClr": {
"val": 4
},
"colorFillType": 0
},
"idx": 1
},
"effectRef": {
"ColorProp": {
"schemeClr": {
"val": 4
}
},
"idx": 0
},
"fontRef": {
"TextCharacterProperties": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 14.666666666666666,
"solidFill": {
"schemeClr": {
"val": 0
}
}
},
"idx": 1
}
},
"txBody": {
"bodyPr": {
"wrap": 1,
"rtlCol": false,
"anchor": 1,
"horzOverflow": 1,
"vertOverflow": 2
},
"lstStyle": {
"defPPr": {
"defRPr": { }
},
"lvl1pPr": {
"marL": 0,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 0
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl2pPr": {
"marL": 457200,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl3pPr": {
"marL": 914400,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl4pPr": {
"marL": 1371600,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl5pPr": {
"marL": 1828800,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl6pPr": {
"marL": 2286000,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl7pPr": {
"marL": 2743200,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl8pPr": {
"marL": 3200400,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl9pPr": {
"marL": 3657600,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
}
},
"p": [
{
"pPr": {
"algn": 1,
"defRPr": {
"sz": 16,
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"cs": {
"pitchFamily": "34",
"charset": "0",
"typeface": "Segoe UI Semibold",
"panose": "020B0702040204020203"
},
"kern": 1200,
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"solidFill": {
"schemeClr": {
"val": 0
}
}
}
},
"elements": [
{
"elementType": 0,
"rPr": {
"sz": 16,
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"cs": {
"pitchFamily": "34",
"charset": "0",
"typeface": "Segoe UI Semibold",
"panose": "020B0702040204020203"
},
"kern": 1200,
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"solidFill": {
"schemeClr": {
"val": 0
}
}
},
"t": "4"
}
]
}
]
},
"isLocked": true,
"canPrint": true,
"dynamicMove": true,
"dynamicSize": true,
"allowResize": true,
"allowRotate": true,
"allowMove": true,
"showHandle": true
}
],
"nvGrpSpPr": {
"cNvPr": {
"id": 2,
"name": "Group 1",
"extLst": {
"ext": [
{
"creationId": [
{
"name": "http://schemas.microsoft.com/office/drawing/2014/main",
"id": "{83276A69-4CF6-46A2-96AC-2AE64C21145A}"
}
],
"uri": "{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}",
"hiddenExtensionType": 4
}
]
},
"hidden": false
},
"cNvGrpSpPr": { }
},
"grpSpPr": {
"xfrm": {
"rot": 0,
"off": {
"x": 65,
"y": 21
},
"ext": {
"cx": 691,
"cy": 445
},
"chOff": {
"x": 65,
"y": 21
},
"chExt": {
"cx": 691,
"cy": 445
},
"flipH": false,
"flipV": false
},
"solidFill": { }
}
},
"clientData": {
"fLocksWithSheet": true,
"fPrintsWithSheet": true
}
},
"name": "Group 1",
"shapeType": 3
}
],
"shapeCollectionOption": {
"snapMode": 0
},
"index": 0
},
shape_hyperlink_data_sheet2 : {
"name": "Sheet Location",
"isSelected": false,
"rowCount": 36,
"columnCount": 18,
"activeRow": 35,
"activeCol": 17,
"frozenTrailingRowStickToEdge": true,
"frozenTrailingColumnStickToEdge": true,
"theme": {
"name": "Office",
"themeColor": {
"name": "Office",
"background1": {
"a": 255,
"r": 255,
"g": 255,
"b": 255
},
"background2": {
"a": 255,
"r": 231,
"g": 230,
"b": 230
},
"text1": {
"a": 255,
"r": 0,
"g": 0,
"b": 0
},
"text2": {
"a": 255,
"r": 68,
"g": 84,
"b": 106
},
"accent1": {
"a": 255,
"r": 68,
"g": 114,
"b": 196
},
"accent2": {
"a": 255,
"r": 237,
"g": 125,
"b": 49
},
"accent3": {
"a": 255,
"r": 165,
"g": 165,
"b": 165
},
"accent4": {
"a": 255,
"r": 255,
"g": 192,
"b": 0
},
"accent5": {
"a": 255,
"r": 91,
"g": 155,
"b": 213
},
"accent6": {
"a": 255,
"r": 112,
"g": 173,
"b": 71
},
"hyperlink": {
"a": 255,
"r": 5,
"g": 99,
"b": 193
},
"followedHyperlink": {
"a": 255,
"r": 149,
"g": 79,
"b": 114
}
},
"headingFont": "Calibri Light",
"bodyFont": "Calibri"
},
"data": {
"defaultDataNode": {
"style": {
"backColor": null,
"foreColor": "Text 1 0",
"vAlign": 2,
"font": "normal normal 14.7px Calibri",
"themeFont": "Body",
"borderLeft": null,
"borderTop": null,
"borderRight": null,
"borderBottom": null,
"locked": true,
"textIndent": 0,
"wordWrap": false,
"diagonalDown": null,
"diagonalUp": null
}
},
"dataTable": { }
},
"rowHeaderData": { },
"colHeaderData": { },
"leftCellIndex": 0,
"topCellIndex": 0,
"selections": {
"0": {
"row": 35,
"rowCount": 1,
"col": 17,
"colCount": 1
},
"length": 1
},
"defaults": {
"colHeaderRowHeight": 20,
"colWidth": 64,
"rowHeaderColWidth": 40,
"rowHeight": 20,
"_isExcelDefaultColumnWidth": true
},
"rowOutlines": {
"items": [ ]
},
"columnOutlines": {
"items": [ ]
},
"cellStates": { },
"states": { },
"outlineColumnOptions": { },
"autoMergeRangeInfos": [ ],
"printInfo": {
"margin": {
"top": 72,
"bottom": 72,
"left": 67,
"right": 67,
"header": 29,
"footer": 29
},
"pageOrder": 1,
"paperSize": {
"width": 850,
"height": 1100,
"kind": 1
}
},
"shapes": [
{
"isLocked": true,
"canPrint": true,
"dynamicMove": true,
"dynamicSize": true,
"allowResize": true,
"allowRotate": true,
"allowMove": true,
"showHandle": true,
"alt": "",
"childrenData": [
{ },
{ },
{ },
{ },
{ }
],
"shapeData": {
"anchorType": 0,
"startPoint": {
"row": 1,
"col": 1,
"rowOffset": 1,
"colOffset": 1
},
"endPoint": {
"row": 23,
"col": 11,
"rowOffset": 6,
"colOffset": 52
},
"grpSp": {
"shapeType": 3,
"sp": [
{
"shapeType": 5,
"macro": "",
"textlink": "",
"nvSpPr": {
"cNvPr": {
"id": 10,
"name": "Background",
"descr": "Background",
"extLst": {
"ext": [
{
"creationId": [
{
"name": "http://schemas.microsoft.com/office/drawing/2014/main",
"id": "{0E6E21BA-36E3-44C3-A367-EA3F5E60F599}"
}
],
"uri": "{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}",
"hiddenExtensionType": 4
}
]
},
"hidden": false
},
"cNvSpPr": {
"txBox": false
}
},
"spPr": {
"xfrm": {
"flipH": false,
"flipV": false,
"rot": 0,
"off": {
"x": 65,
"y": 21
},
"ext": {
"cx": 691,
"cy": 445
}
},
"prstGeom": {
"prst": 4,
"avLst": { }
},
"ln": {
"w": 1.33,
"cap": 2,
"cmpd": 0,
"algn": 0,
"prstDash": 0,
"noFill": true,
"miter": {
"lim": 800000
}
},
"extLst": {
"ext": [ ]
},
"solidFill": {
"srgbClr": {
"val": [
245,
245,
245
]
}
}
},
"style": {
"lnRef": {
"ColorProp": {
"schemeClr": {
"val": 4,
"shade": [
50000
]
},
"colorFillType": 0
},
"idx": 2
},
"fillRef": {
"ColorProp": {
"schemeClr": {
"val": 4
},
"colorFillType": 0
},
"idx": 1
},
"effectRef": {
"ColorProp": {
"schemeClr": {
"val": 4
}
},
"idx": 0
},
"fontRef": {
"TextCharacterProperties": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 14.666666666666666,
"solidFill": {
"schemeClr": {
"val": 0
}
}
},
"idx": 1
}
},
"txBody": {
"bodyPr": {
"wrap": 1,
"rtlCol": false,
"anchor": 0,
"horzOverflow": 1,
"vertOverflow": 2
},
"lstStyle": {
"defPPr": {
"defRPr": { }
},
"lvl1pPr": {
"marL": 0,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
},
"solidFill": {
"schemeClr": {
"val": 0
}
}
}
},
"lvl2pPr": {
"marL": 457200,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl3pPr": {
"marL": 914400,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl4pPr": {
"marL": 1371600,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl5pPr": {
"marL": 1828800,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl6pPr": {
"marL": 2286000,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl7pPr": {
"marL": 2743200,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl8pPr": {
"marL": 3200400,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl9pPr": {
"marL": 3657600,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
}
},
"p": [
{
"pPr": {
"algn": 0,
"defRPr": {
"sz": 24,
"kern": 1200,
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
},
"solidFill": {
"schemeClr": {
"val": 0
}
}
}
},
"endParaRPr": {
"sz": 14.67,
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
}
},
"elements": [ ]
}
]
},
"isLocked": true,
"canPrint": true,
"dynamicMove": true,
"dynamicSize": true,
"allowResize": true,
"allowRotate": true,
"allowMove": true,
"showHandle": true
},
{
"shapeType": 5,
"macro": "",
"textlink": "",
"nvSpPr": {
"cNvPr": {
"id": 20,
"name": "Rectangle 19",
"extLst": {
"ext": [
{
"creationId": [
{
"name": "http://schemas.microsoft.com/office/drawing/2014/main",
"id": "{0B76B5A4-7B46-4CA6-B9C0-02E4CC591535}"
}
],
"uri": "{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}",
"hiddenExtensionType": 4
}
]
},
"hidden": false
},
"cNvSpPr": {
"txBox": false
}
},
"spPr": {
"xfrm": {
"flipH": false,
"flipV": false,
"rot": 0,
"off": {
"x": 98,
"y": 128
},
"ext": {
"cx": 411.99999999999994,
"cy": 38
}
},
"prstGeom": {
"prst": 4,
"avLst": { }
},
"ln": {
"w": 1.33,
"cap": 2,
"cmpd": 0,
"algn": 0,
"prstDash": 0,
"noFill": true,
"miter": {
"lim": 800000
}
},
"extLst": {
"ext": [ ]
},
"noFill": true
},
"style": {
"lnRef": {
"ColorProp": {
"schemeClr": {
"val": 4,
"shade": [
50000
]
},
"colorFillType": 0
},
"idx": 2
},
"fillRef": {
"ColorProp": {
"schemeClr": {
"val": 4
},
"colorFillType": 0
},
"idx": 1
},
"effectRef": {
"ColorProp": {
"schemeClr": {
"val": 4
}
},
"idx": 0
},
"fontRef": {
"TextCharacterProperties": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 14.666666666666666,
"solidFill": {
"schemeClr": {
"val": 0
}
}
},
"idx": 1
}
},
"txBody": {
"bodyPr": {
"vertOverflow": 2,
"horzOverflow": 1,
"rtlCol": false,
"anchor": 0
},
"lstStyle": { },
"p": [
{
"pPr": {
"algn": 0,
"defRPr": {
"sz": 14.67,
"latin": {
"typeface": "+mn-lt"
},
"solidFill": {
"schemeClr": {
"val": 1
}
}
}
},
"elements": [
{
"elementType": 0,
"rPr": {
"sz": 14.67,
"latin": {
"typeface": "+mn-lt"
},
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"t": "Click below button to go back to front page."
}
]
}
]
},
"isLocked": true,
"canPrint": true,
"dynamicMove": true,
"dynamicSize": true,
"allowResize": true,
"allowRotate": true,
"allowMove": true,
"showHandle": true
},
{
"shapeType": 5,
"macro": "",
"textlink": "",
"nvSpPr": {
"cNvPr": {
"id": 11,
"name": "Step",
"descr": "Add numbers like a champ",
"extLst": {
"ext": [
{
"creationId": [
{
"name": "http://schemas.microsoft.com/office/drawing/2014/main",
"id": "{87A48E7F-F8EF-4523-8956-41E104AAAF72}"
}
],
"uri": "{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}",
"hiddenExtensionType": 4
}
]
},
"hidden": false
},
"cNvSpPr": {
"txBox": true
}
},
"spPr": {
"xfrm": {
"flipH": false,
"flipV": false,
"rot": 0,
"off": {
"x": 89.330604,
"y": 52.33333300000001
},
"ext": {
"cx": 547.669396,
"cy": 51.007034000000004
}
},
"prstGeom": {
"prst": 4,
"avLst": { }
},
"ln": {
"w": 1,
"cmpd": 0,
"noFill": true
},
"extLst": {
"ext": [ ]
},
"noFill": true
},
"style": {
"lnRef": {
"ColorProp": {
"colorFillType": 0,
"scrgbClr": {
"r": 0,
"g": 0,
"b": 0,
"invGammaField": [ ],
"gammaField": [ ],
"blueOffField": [ ],
"blueModField": [ ],
"blueField": [ ],
"greenOffField": [ ],
"greenModField": [ ],
"greenField": [ ],
"redOffField": [ ],
"redModField": [ ],
"redField": [ ],
"lumOffField": [ ],
"lumModField": [ ],
"lumField": [ ],
"satOffField": [ ],
"satModField": [ ],
"satField": [ ],
"hueOffField": [ ],
"hueModField": [ ],
"hueField": [ ],
"alphaOffField": [ ],
"alphaModField": [ ],
"alphaField": [ ],
"grayField": [ ],
"invField": [ ],
"compField": [ ],
"shadeField": [ ],
"tintField": [ ]
}
},
"idx": 0
},
"fillRef": {
"ColorProp": {
"colorFillType": 0,
"scrgbClr": {
"r": 0,
"g": 0,
"b": 0,
"invGammaField": [ ],
"gammaField": [ ],
"blueOffField": [ ],
"blueModField": [ ],
"blueField": [ ],
"greenOffField": [ ],
"greenModField": [ ],
"greenField": [ ],
"redOffField": [ ],
"redModField": [ ],
"redField": [ ],
"lumOffField": [ ],
"lumModField": [ ],
"lumField": [ ],
"satOffField": [ ],
"satModField": [ ],
"satField": [ ],
"hueOffField": [ ],
"hueModField": [ ],
"hueField": [ ],
"alphaOffField": [ ],
"alphaModField": [ ],
"alphaField": [ ],
"grayField": [ ],
"invField": [ ],
"compField": [ ],
"shadeField": [ ],
"tintField": [ ]
}
},
"idx": 0
},
"effectRef": {
"ColorProp": {
"scrgbClr": {
"r": 0,
"g": 0,
"b": 0
}
},
"idx": 0
},
"fontRef": {
"TextCharacterProperties": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 14.666666666666666,
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"idx": 1
}
},
"txBody": {
"bodyPr": {
"wrap": 1,
"lIns": 0,
"rIns": 0,
"rtlCol": false,
"anchor": 0,
"horzOverflow": 1,
"vertOverflow": 2
},
"lstStyle": {
"defPPr": {
"defRPr": { }
},
"lvl1pPr": {
"marL": 0,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 1
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl2pPr": {
"marL": 457200,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 13
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl3pPr": {
"marL": 914400,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 13
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl4pPr": {
"marL": 1371600,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 13
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl5pPr": {
"marL": 1828800,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 13
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl6pPr": {
"marL": 2286000,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 13
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl7pPr": {
"marL": 2743200,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 13
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl8pPr": {
"marL": 3200400,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 13
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl9pPr": {
"marL": 3657600,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 13
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
}
},
"p": [
{
"pPr": {
"marL": 0,
"marR": 0,
"lvl": 0,
"indent": 0,
"defTabSz": 914400,
"eaLnBrk": true,
"fontAlgn": 0,
"latinLnBrk": false,
"hangingPunct": true,
"lnSpc": {
"spcPct": 100000
},
"spcBef": {
"spcPts": 0
},
"spcAft": {
"spcPts": 0
},
"buClrTx": { },
"buSzTx": { },
"buFontTx": { },
"buNone": { },
"tabLst": {
"tab": [ ]
},
"defRPr": {
"sz": 24,
"kern": 1200,
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
},
"b": false,
"i": false,
"strike": 0,
"u": 0,
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"algn": 0
},
"elements": [
{
"elementType": 0,
"rPr": {
"kumimoji": false,
"sz": 29.33,
"b": false,
"i": false,
"u": 0,
"strike": 0,
"kern": 0,
"cap": 0,
"spc": 0,
"normalizeH": false,
"ln": {
"noFill": true
},
"effectLst": { },
"uLnTx": { },
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": "34",
"charset": "0",
"typeface": "Segoe UI"
},
"cs": {
"pitchFamily": "34",
"charset": "0",
"typeface": "Segoe UI Light",
"panose": "020B0502040204020203"
},
"solidFill": {
"srgbClr": {
"val": [
59,
56,
56
]
}
}
},
"t": "Shape Hyperlink"
}
]
}
]
},
"isLocked": true,
"canPrint": true,
"dynamicMove": true,
"dynamicSize": true,
"allowResize": true,
"allowRotate": true,
"allowMove": true,
"showHandle": true
},
{
"shapeType": 4,
"macro": "",
"nvCxnSpPr": {
"cNvPr": {
"id": 12,
"name": "Bottom line",
"descr": "Decorative line",
"extLst": {
"ext": [
{
"creationId": [
{
"name": "http://schemas.microsoft.com/office/drawing/2014/main",
"id": "{27716932-9828-412E-A955-309611BE7A80}"
}
],
"uri": "{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}",
"hiddenExtensionType": 4
}
]
},
"hidden": false,
"title": ""
},
"cNvCxnSpPr": { }
},
"spPr": {
"xfrm": {
"flipH": false,
"flipV": false,
"rot": 0,
"off": {
"x": 90.664042,
"y": 387.12367500000005
},
"ext": {
"cx": 618.336063,
"cy": 0.8763250000000085
}
},
"prstGeom": {
"prst": 95,
"avLst": { }
},
"ln": {
"w": 2.67,
"cap": 2,
"cmpd": 0,
"algn": 0,
"prstDash": 0,
"solidFill": {
"srgbClr": {
"val": [
33,
115,
70
]
}
},
"miter": {
"lim": 800000
}
},
"extLst": {
"ext": [ ]
},
"noFill": true
},
"style": {
"lnRef": {
"ColorProp": {
"schemeClr": {
"val": 4
},
"colorFillType": 0
},
"idx": 1
},
"fillRef": {
"ColorProp": {
"colorFillType": 0,
"scrgbClr": {
"r": 0,
"g": 0,
"b": 0,
"invGammaField": [ ],
"gammaField": [ ],
"blueOffField": [ ],
"blueModField": [ ],
"blueField": [ ],
"greenOffField": [ ],
"greenModField": [ ],
"greenField": [ ],
"redOffField": [ ],
"redModField": [ ],
"redField": [ ],
"lumOffField": [ ],
"lumModField": [ ],
"lumField": [ ],
"satOffField": [ ],
"satModField": [ ],
"satField": [ ],
"hueOffField": [ ],
"hueModField": [ ],
"hueField": [ ],
"alphaOffField": [ ],
"alphaModField": [ ],
"alphaField": [ ],
"grayField": [ ],
"invField": [ ],
"compField": [ ],
"shadeField": [ ],
"tintField": [ ]
}
},
"idx": 0
},
"effectRef": {
"ColorProp": {
"schemeClr": {
"val": 4
}
},
"idx": 0
},
"fontRef": {
"TextCharacterProperties": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 14.666666666666666,
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"idx": 1
}
},
"isLocked": true,
"canPrint": true,
"dynamicMove": true,
"dynamicSize": true,
"allowResize": true,
"allowRotate": true,
"allowMove": true,
"showHandle": true
},
{
"shapeType": 4,
"macro": "",
"nvCxnSpPr": {
"cNvPr": {
"id": 13,
"name": "Top line",
"descr": "Decorative line",
"extLst": {
"ext": [
{
"creationId": [
{
"name": "http://schemas.microsoft.com/office/drawing/2014/main",
"id": "{5AA7D217-2CBC-433C-A29A-42A54440B5BC}"
}
],
"uri": "{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}",
"hiddenExtensionType": 4
}
]
},
"hidden": false,
"title": ""
},
"cNvCxnSpPr": { }
},
"spPr": {
"xfrm": {
"flipH": false,
"flipV": true,
"rot": 0,
"off": {
"x": 89.664042,
"y": 105.00010500000002
},
"ext": {
"cx": 608.336063,
"cy": 0.05585299999999904
}
},
"prstGeom": {
"prst": 95,
"avLst": { }
},
"ln": {
"w": 2.67,
"cap": 2,
"cmpd": 0,
"algn": 0,
"prstDash": 0,
"solidFill": {
"srgbClr": {
"val": [
33,
115,
70
]
}
},
"miter": {
"lim": 800000
}
},
"extLst": {
"ext": [ ]
},
"noFill": true
},
"style": {
"lnRef": {
"ColorProp": {
"schemeClr": {
"val": 4
},
"colorFillType": 0
},
"idx": 1
},
"fillRef": {
"ColorProp": {
"colorFillType": 0,
"scrgbClr": {
"r": 0,
"g": 0,
"b": 0,
"invGammaField": [ ],
"gammaField": [ ],
"blueOffField": [ ],
"blueModField": [ ],
"blueField": [ ],
"greenOffField": [ ],
"greenModField": [ ],
"greenField": [ ],
"redOffField": [ ],
"redModField": [ ],
"redField": [ ],
"lumOffField": [ ],
"lumModField": [ ],
"lumField": [ ],
"satOffField": [ ],
"satModField": [ ],
"satField": [ ],
"hueOffField": [ ],
"hueModField": [ ],
"hueField": [ ],
"alphaOffField": [ ],
"alphaModField": [ ],
"alphaField": [ ],
"grayField": [ ],
"invField": [ ],
"compField": [ ],
"shadeField": [ ],
"tintField": [ ]
}
},
"idx": 0
},
"effectRef": {
"ColorProp": {
"schemeClr": {
"val": 4
}
},
"idx": 0
},
"fontRef": {
"TextCharacterProperties": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 14.666666666666666,
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"idx": 1
}
},
"isLocked": true,
"canPrint": true,
"dynamicMove": true,
"dynamicSize": true,
"allowResize": true,
"allowRotate": true,
"allowMove": true,
"showHandle": true
}
],
"nvGrpSpPr": {
"cNvPr": {
"id": 2,
"name": "Group 1",
"extLst": {
"ext": [
{
"creationId": [
{
"name": "http://schemas.microsoft.com/office/drawing/2014/main",
"id": "{7D73545D-F4A8-4719-8851-3C1C0558F063}"
}
],
"uri": "{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}",
"hiddenExtensionType": 4
}
]
},
"hidden": false
},
"cNvGrpSpPr": { }
},
"grpSpPr": {
"xfrm": {
"rot": 0,
"off": {
"x": 65,
"y": 21
},
"ext": {
"cx": 691,
"cy": 445
},
"chOff": {
"x": 65,
"y": 21
},
"chExt": {
"cx": 691,
"cy": 445
},
"flipH": false,
"flipV": false
},
"solidFill": { }
}
},
"clientData": {
"fLocksWithSheet": true,
"fPrintsWithSheet": true
}
},
"name": "Group 1",
"shapeType": 3
}
],
"shapeCollectionOption": {
"snapMode": 0
},
"index": 1
},
shape_hyperlink_data_sheet3 : {
"name": "Email Address",
"isSelected": false,
"rowCount": 36,
"columnCount": 18,
"activeRow": 35,
"activeCol": 17,
"frozenTrailingRowStickToEdge": true,
"frozenTrailingColumnStickToEdge": true,
"theme": {
"name": "Office",
"themeColor": {
"name": "Office",
"background1": {
"a": 255,
"r": 255,
"g": 255,
"b": 255
},
"background2": {
"a": 255,
"r": 231,
"g": 230,
"b": 230
},
"text1": {
"a": 255,
"r": 0,
"g": 0,
"b": 0
},
"text2": {
"a": 255,
"r": 68,
"g": 84,
"b": 106
},
"accent1": {
"a": 255,
"r": 68,
"g": 114,
"b": 196
},
"accent2": {
"a": 255,
"r": 237,
"g": 125,
"b": 49
},
"accent3": {
"a": 255,
"r": 165,
"g": 165,
"b": 165
},
"accent4": {
"a": 255,
"r": 255,
"g": 192,
"b": 0
},
"accent5": {
"a": 255,
"r": 91,
"g": 155,
"b": 213
},
"accent6": {
"a": 255,
"r": 112,
"g": 173,
"b": 71
},
"hyperlink": {
"a": 255,
"r": 5,
"g": 99,
"b": 193
},
"followedHyperlink": {
"a": 255,
"r": 149,
"g": 79,
"b": 114
}
},
"headingFont": "Calibri Light",
"bodyFont": "Calibri"
},
"data": {
"defaultDataNode": {
"style": {
"backColor": null,
"foreColor": "Text 1 0",
"vAlign": 2,
"font": "normal normal 14.7px Calibri",
"themeFont": "Body",
"borderLeft": null,
"borderTop": null,
"borderRight": null,
"borderBottom": null,
"locked": true,
"textIndent": 0,
"wordWrap": false,
"diagonalDown": null,
"diagonalUp": null
}
},
"dataTable": { }
},
"rowHeaderData": { },
"colHeaderData": { },
"leftCellIndex": 0,
"topCellIndex": 0,
"selections": {
"0": {
"row": 35,
"rowCount": 1,
"col": 17,
"colCount": 1
},
"length": 1
},
"defaults": {
"colHeaderRowHeight": 20,
"colWidth": 64,
"rowHeaderColWidth": 40,
"rowHeight": 20,
"_isExcelDefaultColumnWidth": true
},
"rowOutlines": {
"items": [ ]
},
"columnOutlines": {
"items": [ ]
},
"cellStates": { },
"states": { },
"outlineColumnOptions": { },
"autoMergeRangeInfos": [ ],
"printInfo": {
"margin": {
"top": 72,
"bottom": 72,
"left": 67,
"right": 67,
"header": 29,
"footer": 29
},
"pageOrder": 1,
"paperSize": {
"width": 850,
"height": 1100,
"kind": 1
}
},
"shapes": [
{
"isLocked": true,
"canPrint": true,
"dynamicMove": true,
"dynamicSize": true,
"allowResize": true,
"allowRotate": true,
"allowMove": true,
"showHandle": true,
"alt": "",
"childrenData": [
{
"childrenData": [
{ },
{ },
{ },
{ }
]
},
{ },
{ },
{ }
],
"shapeData": {
"anchorType": 0,
"startPoint": {
"row": 1,
"col": 1,
"rowOffset": 1,
"colOffset": 1
},
"endPoint": {
"row": 23,
"col": 11,
"rowOffset": 6,
"colOffset": 52
},
"grpSp": {
"shapeType": 3,
"sp": [
{
"shapeType": 3,
"sp": [
{
"shapeType": 5,
"macro": "",
"textlink": "",
"nvSpPr": {
"cNvPr": {
"id": 7,
"name": "Background",
"descr": "Background",
"extLst": {
"ext": [
{
"creationId": [
{
"name": "http://schemas.microsoft.com/office/drawing/2014/main",
"id": "{A69135FC-6D78-4BE7-A48D-D5D9FFB8903B}"
}
],
"uri": "{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}",
"hiddenExtensionType": 4
}
]
},
"hidden": false
},
"cNvSpPr": {
"txBox": false
}
},
"spPr": {
"xfrm": {
"flipH": false,
"flipV": false,
"rot": 0,
"off": {
"x": 65,
"y": 21
},
"ext": {
"cx": 691,
"cy": 445
}
},
"prstGeom": {
"prst": 4,
"avLst": { }
},
"ln": {
"noFill": true,
"cmpd": 0
},
"extLst": {
"ext": [ ]
},
"solidFill": {
"srgbClr": {
"val": [
245,
245,
245
]
}
}
},
"style": {
"lnRef": {
"ColorProp": {
"schemeClr": {
"val": 4,
"shade": [
50000
]
},
"colorFillType": 0
},
"idx": 2
},
"fillRef": {
"ColorProp": {
"schemeClr": {
"val": 4
},
"colorFillType": 0
},
"idx": 1
},
"effectRef": {
"ColorProp": {
"schemeClr": {
"val": 4
}
},
"idx": 0
},
"fontRef": {
"TextCharacterProperties": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 14.666666666666666,
"solidFill": {
"schemeClr": {
"val": 0
}
}
},
"idx": 1
}
},
"txBody": {
"bodyPr": {
"wrap": 1,
"rtlCol": false,
"anchor": 0,
"horzOverflow": 1,
"vertOverflow": 2
},
"lstStyle": {
"defPPr": {
"defRPr": { }
},
"lvl1pPr": {
"marL": 0,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
},
"solidFill": {
"schemeClr": {
"val": 0
}
}
}
},
"lvl2pPr": {
"marL": 457200,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl3pPr": {
"marL": 914400,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl4pPr": {
"marL": 1371600,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl5pPr": {
"marL": 1828800,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl6pPr": {
"marL": 2286000,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl7pPr": {
"marL": 2743200,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl8pPr": {
"marL": 3200400,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl9pPr": {
"marL": 3657600,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
}
},
"p": [
{
"pPr": {
"algn": 0,
"defRPr": {
"sz": 24,
"kern": 1200,
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
},
"solidFill": {
"schemeClr": {
"val": 0
}
}
}
},
"endParaRPr": {
"sz": 14.67,
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
}
},
"elements": [ ]
}
]
},
"isLocked": true,
"canPrint": true,
"dynamicMove": true,
"dynamicSize": true,
"allowResize": true,
"allowRotate": true,
"allowMove": true,
"showHandle": true
},
{
"shapeType": 5,
"macro": "",
"textlink": "",
"nvSpPr": {
"cNvPr": {
"id": 8,
"name": "Step",
"descr": "Add numbers like a champ",
"extLst": {
"ext": [
{
"creationId": [
{
"name": "http://schemas.microsoft.com/office/drawing/2014/main",
"id": "{CA9390FB-9D13-4831-B100-4A7A21D6371E}"
}
],
"uri": "{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}",
"hiddenExtensionType": 4
}
]
},
"hidden": false
},
"cNvSpPr": {
"txBox": true
}
},
"spPr": {
"xfrm": {
"flipH": false,
"flipV": false,
"rot": 0,
"off": {
"x": 89.330604,
"y": 52.333332999999996
},
"ext": {
"cx": 547.669396,
"cy": 51.00703399999999
}
},
"prstGeom": {
"prst": 4,
"avLst": { }
},
"ln": {
"w": 1,
"cmpd": 0,
"noFill": true
},
"extLst": {
"ext": [ ]
},
"noFill": true
},
"style": {
"lnRef": {
"ColorProp": {
"colorFillType": 0,
"scrgbClr": {
"r": 0,
"g": 0,
"b": 0,
"invGammaField": [ ],
"gammaField": [ ],
"blueOffField": [ ],
"blueModField": [ ],
"blueField": [ ],
"greenOffField": [ ],
"greenModField": [ ],
"greenField": [ ],
"redOffField": [ ],
"redModField": [ ],
"redField": [ ],
"lumOffField": [ ],
"lumModField": [ ],
"lumField": [ ],
"satOffField": [ ],
"satModField": [ ],
"satField": [ ],
"hueOffField": [ ],
"hueModField": [ ],
"hueField": [ ],
"alphaOffField": [ ],
"alphaModField": [ ],
"alphaField": [ ],
"grayField": [ ],
"invField": [ ],
"compField": [ ],
"shadeField": [ ],
"tintField": [ ]
}
},
"idx": 0
},
"fillRef": {
"ColorProp": {
"colorFillType": 0,
"scrgbClr": {
"r": 0,
"g": 0,
"b": 0,
"invGammaField": [ ],
"gammaField": [ ],
"blueOffField": [ ],
"blueModField": [ ],
"blueField": [ ],
"greenOffField": [ ],
"greenModField": [ ],
"greenField": [ ],
"redOffField": [ ],
"redModField": [ ],
"redField": [ ],
"lumOffField": [ ],
"lumModField": [ ],
"lumField": [ ],
"satOffField": [ ],
"satModField": [ ],
"satField": [ ],
"hueOffField": [ ],
"hueModField": [ ],
"hueField": [ ],
"alphaOffField": [ ],
"alphaModField": [ ],
"alphaField": [ ],
"grayField": [ ],
"invField": [ ],
"compField": [ ],
"shadeField": [ ],
"tintField": [ ]
}
},
"idx": 0
},
"effectRef": {
"ColorProp": {
"scrgbClr": {
"r": 0,
"g": 0,
"b": 0
}
},
"idx": 0
},
"fontRef": {
"TextCharacterProperties": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 14.666666666666666,
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"idx": 1
}
},
"txBody": {
"bodyPr": {
"wrap": 1,
"lIns": 0,
"rIns": 0,
"rtlCol": false,
"anchor": 0,
"horzOverflow": 1,
"vertOverflow": 2
},
"lstStyle": {
"defPPr": {
"defRPr": { }
},
"lvl1pPr": {
"marL": 0,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 1
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl2pPr": {
"marL": 457200,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 13
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl3pPr": {
"marL": 914400,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 13
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl4pPr": {
"marL": 1371600,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 13
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl5pPr": {
"marL": 1828800,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 13
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl6pPr": {
"marL": 2286000,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 13
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl7pPr": {
"marL": 2743200,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 13
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl8pPr": {
"marL": 3200400,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 13
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl9pPr": {
"marL": 3657600,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 13
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
}
},
"p": [
{
"pPr": {
"marL": 0,
"marR": 0,
"lvl": 0,
"indent": 0,
"defTabSz": 914400,
"eaLnBrk": true,
"fontAlgn": 0,
"latinLnBrk": false,
"hangingPunct": true,
"lnSpc": {
"spcPct": 100000
},
"spcBef": {
"spcPts": 0
},
"spcAft": {
"spcPts": 0
},
"buClrTx": { },
"buSzTx": { },
"buFontTx": { },
"buNone": { },
"tabLst": {
"tab": [ ]
},
"defRPr": {
"sz": 24,
"kern": 1200,
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
},
"b": false,
"i": false,
"strike": 0,
"u": 0,
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"algn": 0
},
"elements": [
{
"elementType": 0,
"rPr": {
"kumimoji": false,
"sz": 29.33,
"b": false,
"i": false,
"u": 0,
"strike": 0,
"kern": 0,
"cap": 0,
"spc": 0,
"normalizeH": false,
"ln": {
"noFill": true
},
"effectLst": { },
"uLnTx": { },
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": "34",
"charset": "0",
"typeface": "Segoe UI"
},
"cs": {
"pitchFamily": "34",
"charset": "0",
"typeface": "Segoe UI Light",
"panose": "020B0502040204020203"
},
"solidFill": {
"srgbClr": {
"val": [
59,
56,
56
]
}
}
},
"t": "Name Card"
}
]
}
]
},
"isLocked": true,
"canPrint": true,
"dynamicMove": true,
"dynamicSize": true,
"allowResize": true,
"allowRotate": true,
"allowMove": true,
"showHandle": true
},
{
"shapeType": 4,
"macro": "",
"nvCxnSpPr": {
"cNvPr": {
"id": 9,
"name": "Bottom line",
"descr": "Decorative line",
"extLst": {
"ext": [
{
"creationId": [
{
"name": "http://schemas.microsoft.com/office/drawing/2014/main",
"id": "{09122326-0A1F-4519-BB26-74A146DBE4B0}"
}
],
"uri": "{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}",
"hiddenExtensionType": 4
}
]
},
"hidden": false,
"title": ""
},
"cNvCxnSpPr": { }
},
"spPr": {
"xfrm": {
"flipH": false,
"flipV": false,
"rot": 0,
"off": {
"x": 90.664042,
"y": 387.123675
},
"ext": {
"cx": 618.336063,
"cy": 0.8763250000000085
}
},
"prstGeom": {
"prst": 95,
"avLst": { }
},
"ln": {
"w": 2.67,
"solidFill": {
"srgbClr": {
"val": [
33,
115,
70
]
}
},
"cmpd": 0
},
"extLst": {
"ext": [ ]
},
"noFill": true
},
"style": {
"lnRef": {
"ColorProp": {
"schemeClr": {
"val": 4
},
"colorFillType": 0
},
"idx": 1
},
"fillRef": {
"ColorProp": {
"colorFillType": 0,
"scrgbClr": {
"r": 0,
"g": 0,
"b": 0,
"invGammaField": [ ],
"gammaField": [ ],
"blueOffField": [ ],
"blueModField": [ ],
"blueField": [ ],
"greenOffField": [ ],
"greenModField": [ ],
"greenField": [ ],
"redOffField": [ ],
"redModField": [ ],
"redField": [ ],
"lumOffField": [ ],
"lumModField": [ ],
"lumField": [ ],
"satOffField": [ ],
"satModField": [ ],
"satField": [ ],
"hueOffField": [ ],
"hueModField": [ ],
"hueField": [ ],
"alphaOffField": [ ],
"alphaModField": [ ],
"alphaField": [ ],
"grayField": [ ],
"invField": [ ],
"compField": [ ],
"shadeField": [ ],
"tintField": [ ]
}
},
"idx": 0
},
"effectRef": {
"ColorProp": {
"schemeClr": {
"val": 4
}
},
"idx": 0
},
"fontRef": {
"TextCharacterProperties": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 14.666666666666666,
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"idx": 1
}
},
"isLocked": true,
"canPrint": true,
"dynamicMove": true,
"dynamicSize": true,
"allowResize": true,
"allowRotate": true,
"allowMove": true,
"showHandle": true
},
{
"shapeType": 4,
"macro": "",
"nvCxnSpPr": {
"cNvPr": {
"id": 10,
"name": "Top line",
"descr": "Decorative line",
"extLst": {
"ext": [
{
"creationId": [
{
"name": "http://schemas.microsoft.com/office/drawing/2014/main",
"id": "{EAE05E89-93D4-485C-9DAD-9A9F48345E03}"
}
],
"uri": "{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}",
"hiddenExtensionType": 4
}
]
},
"hidden": false,
"title": ""
},
"cNvCxnSpPr": { }
},
"spPr": {
"xfrm": {
"flipH": false,
"flipV": true,
"rot": 0,
"off": {
"x": 89.664042,
"y": 105.00010499999999
},
"ext": {
"cx": 608.336063,
"cy": 0.05585299999999904
}
},
"prstGeom": {
"prst": 95,
"avLst": { }
},
"ln": {
"w": 2.67,
"solidFill": {
"srgbClr": {
"val": [
33,
115,
70
]
}
},
"cmpd": 0
},
"extLst": {
"ext": [ ]
},
"noFill": true
},
"style": {
"lnRef": {
"ColorProp": {
"schemeClr": {
"val": 4
},
"colorFillType": 0
},
"idx": 1
},
"fillRef": {
"ColorProp": {
"colorFillType": 0,
"scrgbClr": {
"r": 0,
"g": 0,
"b": 0,
"invGammaField": [ ],
"gammaField": [ ],
"blueOffField": [ ],
"blueModField": [ ],
"blueField": [ ],
"greenOffField": [ ],
"greenModField": [ ],
"greenField": [ ],
"redOffField": [ ],
"redModField": [ ],
"redField": [ ],
"lumOffField": [ ],
"lumModField": [ ],
"lumField": [ ],
"satOffField": [ ],
"satModField": [ ],
"satField": [ ],
"hueOffField": [ ],
"hueModField": [ ],
"hueField": [ ],
"alphaOffField": [ ],
"alphaModField": [ ],
"alphaField": [ ],
"grayField": [ ],
"invField": [ ],
"compField": [ ],
"shadeField": [ ],
"tintField": [ ]
}
},
"idx": 0
},
"effectRef": {
"ColorProp": {
"schemeClr": {
"val": 4
}
},
"idx": 0
},
"fontRef": {
"TextCharacterProperties": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 14.666666666666666,
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"idx": 1
}
},
"isLocked": true,
"canPrint": true,
"dynamicMove": true,
"dynamicSize": true,
"allowResize": true,
"allowRotate": true,
"allowMove": true,
"showHandle": true
}
],
"nvGrpSpPr": {
"cNvPr": {
"id": 6,
"name": "Group 5",
"extLst": {
"ext": [
{
"creationId": [
{
"name": "http://schemas.microsoft.com/office/drawing/2014/main",
"id": "{EB106C0A-BEE3-4E6A-9DAF-A9E7ADCE1ADD}"
}
],
"uri": "{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}",
"hiddenExtensionType": 4
}
]
},
"hidden": false
},
"cNvGrpSpPr": { }
},
"grpSpPr": {
"xfrm": {
"rot": 0,
"off": {
"x": 65,
"y": 21
},
"ext": {
"cx": 691,
"cy": 445
},
"chOff": {
"x": 65,
"y": 21
},
"chExt": {
"cx": 691,
"cy": 445
},
"flipH": false,
"flipV": false
},
"solidFill": { }
},
"name": "Group 5",
"isLocked": true,
"canPrint": true,
"dynamicMove": true,
"dynamicSize": true,
"allowResize": true,
"allowRotate": true,
"allowMove": true,
"showHandle": true
},
{
"shapeType": 5,
"macro": "",
"textlink": "",
"nvSpPr": {
"cNvPr": {
"id": 11,
"name": "Smiley Face 10",
"extLst": {
"ext": [
{
"creationId": [
{
"name": "http://schemas.microsoft.com/office/drawing/2014/main",
"id": "{D0451807-BEFF-44E1-BD14-D85290F73E17}"
}
],
"uri": "{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}",
"hiddenExtensionType": 4
}
]
},
"hidden": false
},
"cNvSpPr": {
"txBox": false
}
},
"spPr": {
"xfrm": {
"flipH": false,
"flipV": false,
"rot": 0,
"off": {
"x": 103,
"y": 139
},
"ext": {
"cx": 120,
"cy": 100
}
},
"prstGeom": {
"prst": 78,
"avLst": { }
},
"ln": {
"w": 1.33,
"cap": 2,
"cmpd": 0,
"algn": 0,
"prstDash": 0,
"solidFill": {
"srgbClr": {
"val": [
33,
115,
70
]
}
},
"miter": {
"lim": 800000
}
},
"extLst": {
"ext": [ ]
},
"solidFill": {
"schemeClr": {
"val": 0
}
}
},
"style": {
"lnRef": {
"ColorProp": {
"schemeClr": {
"val": 9
},
"colorFillType": 0
},
"idx": 2
},
"fillRef": {
"ColorProp": {
"schemeClr": {
"val": 0
},
"colorFillType": 0
},
"idx": 1
},
"effectRef": {
"ColorProp": {
"schemeClr": {
"val": 9
}
},
"idx": 0
},
"fontRef": {
"TextCharacterProperties": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 14.666666666666666,
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"idx": 1
}
},
"txBody": {
"bodyPr": {
"vertOverflow": 2,
"horzOverflow": 1,
"rtlCol": false,
"anchor": 0
},
"lstStyle": { },
"p": [
{
"pPr": {
"algn": 0,
"defRPr": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 14.67,
"solidFill": {
"schemeClr": {
"val": 1
}
}
}
},
"endParaRPr": {
"sz": 14.67
},
"elements": [ ]
}
]
},
"isLocked": true,
"canPrint": true,
"dynamicMove": true,
"dynamicSize": true,
"allowResize": true,
"allowRotate": true,
"allowMove": true,
"showHandle": true
},
{
"shapeType": 5,
"macro": "",
"textlink": "",
"nvSpPr": {
"cNvPr": {
"id": 12,
"name": "Rectangle 11",
"extLst": {
"ext": [
{
"creationId": [
{
"name": "http://schemas.microsoft.com/office/drawing/2014/main",
"id": "{41504D0F-E5C4-4982-9DC9-EF3339E2ED49}"
}
],
"uri": "{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}",
"hiddenExtensionType": 4
}
]
},
"hidden": false
},
"cNvSpPr": {
"txBox": false
}
},
"spPr": {
"xfrm": {
"flipH": false,
"flipV": false,
"rot": 0,
"off": {
"x": 242.99989499999998,
"y": 117
},
"ext": {
"cx": 340.99999999999994,
"cy": 200
}
},
"prstGeom": {
"prst": 4,
"avLst": { }
},
"ln": {
"w": 1.33,
"cap": 2,
"cmpd": 0,
"algn": 0,
"prstDash": 0,
"noFill": true,
"miter": {
"lim": 800000
}
},
"extLst": {
"ext": [ ]
},
"noFill": true
},
"style": {
"lnRef": {
"ColorProp": {
"schemeClr": {
"val": 4,
"shade": [
50000
]
},
"colorFillType": 0
},
"idx": 2
},
"fillRef": {
"ColorProp": {
"schemeClr": {
"val": 4
},
"colorFillType": 0
},
"idx": 1
},
"effectRef": {
"ColorProp": {
"schemeClr": {
"val": 4
}
},
"idx": 0
},
"fontRef": {
"TextCharacterProperties": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 14.666666666666666,
"solidFill": {
"schemeClr": {
"val": 0
}
}
},
"idx": 1
}
},
"txBody": {
"bodyPr": {
"vertOverflow": 2,
"horzOverflow": 1,
"rtlCol": false,
"anchor": 0
},
"lstStyle": { },
"p": [
{
"pPr": {
"algn": 0,
"defRPr": {
"sz": 21.33,
"latin": {
"typeface": "+mn-lt"
},
"solidFill": {
"schemeClr": {
"val": 1
}
}
}
},
"elements": [
{
"elementType": 0,
"rPr": {
"sz": 21.33,
"latin": {
"typeface": "+mn-lt"
},
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"t": "Name:"
},
{
"elementType": 0,
"rPr": {
"sz": 21.33,
"latin": {
"typeface": "+mn-lt"
},
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"t": " "
},
{
"elementType": 0,
"rPr": {
"sz": 21.33,
"latin": {
"typeface": "+mn-lt"
},
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"t": "Jone Barkley"
}
]
},
{
"pPr": {
"algn": 0,
"defRPr": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 21.33,
"solidFill": {
"schemeClr": {
"val": 1
}
}
}
},
"endParaRPr": {
"sz": 21.33,
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"elements": [ ]
},
{
"pPr": {
"algn": 0,
"defRPr": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 21.33,
"solidFill": {
"schemeClr": {
"val": 1
}
}
}
},
"elements": [
{
"elementType": 0,
"rPr": {
"sz": 21.33,
"latin": {
"typeface": "+mn-lt"
},
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"t": "Gender:"
},
{
"elementType": 0,
"rPr": {
"sz": 21.33,
"latin": {
"typeface": "+mn-lt"
},
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"t": " Male"
}
]
},
{
"pPr": {
"algn": 0,
"defRPr": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 21.33,
"solidFill": {
"schemeClr": {
"val": 1
}
}
}
},
"endParaRPr": {
"sz": 21.33,
"baseline": 0,
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"elements": [ ]
},
{
"pPr": {
"algn": 0,
"defRPr": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 21.33,
"solidFill": {
"schemeClr": {
"val": 1
}
}
}
},
"elements": [
{
"elementType": 0,
"rPr": {
"sz": 21.33,
"latin": {
"typeface": "+mn-lt"
},
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"t": "Age: 33"
}
]
},
{
"pPr": {
"algn": 0,
"defRPr": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 21.33,
"solidFill": {
"schemeClr": {
"val": 1
}
}
}
},
"endParaRPr": {
"sz": 21.33,
"baseline": 0,
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"elements": [ ]
},
{
"pPr": {
"algn": 0,
"defRPr": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 21.33,
"solidFill": {
"schemeClr": {
"val": 1
}
}
}
},
"elements": [
{
"elementType": 0,
"rPr": {
"sz": 21.33,
"latin": {
"typeface": "+mn-lt"
},
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"t": "Phone: (397) 983 1298"
}
]
},
{
"pPr": {
"algn": 0,
"defRPr": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 21.33,
"solidFill": {
"schemeClr": {
"val": 1
}
}
}
},
"endParaRPr": {
"sz": 21.33,
"baseline": 0,
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"elements": [ ]
},
{
"pPr": {
"algn": 0,
"defRPr": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 21.33,
"solidFill": {
"schemeClr": {
"val": 1
}
}
}
},
"endParaRPr": {
"sz": 21.33,
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"elements": [ ]
}
]
},
"isLocked": true,
"canPrint": true,
"dynamicMove": true,
"dynamicSize": true,
"allowResize": true,
"allowRotate": true,
"allowMove": true,
"showHandle": true
},
{
"shapeType": 5,
"macro": "",
"textlink": "",
"nvSpPr": {
"cNvPr": {
"id": 13,
"name": "Rectangle 12",
"extLst": {
"ext": [
{
"creationId": [
{
"name": "http://schemas.microsoft.com/office/drawing/2014/main",
"id": "{7D0634A9-B7AF-428A-91A4-B868270E18F3}"
}
],
"uri": "{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}",
"hiddenExtensionType": 4
}
]
},
"hidden": false
},
"cNvSpPr": {
"txBox": false
}
},
"spPr": {
"xfrm": {
"flipH": false,
"flipV": false,
"rot": 0,
"off": {
"x": 107,
"y": 325
},
"ext": {
"cx": 83.99989499999998,
"cy": 37
}
},
"prstGeom": {
"prst": 4,
"avLst": { }
},
"ln": {
"w": 1.33,
"cap": 2,
"cmpd": 0,
"algn": 0,
"prstDash": 0,
"noFill": true,
"miter": {
"lim": 800000
}
},
"extLst": {
"ext": [ ]
},
"noFill": true
},
"style": {
"lnRef": {
"ColorProp": {
"schemeClr": {
"val": 4,
"shade": [
50000
]
},
"colorFillType": 0
},
"idx": 2
},
"fillRef": {
"ColorProp": {
"schemeClr": {
"val": 4
},
"colorFillType": 0
},
"idx": 1
},
"effectRef": {
"ColorProp": {
"schemeClr": {
"val": 4
}
},
"idx": 0
},
"fontRef": {
"TextCharacterProperties": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 14.666666666666666,
"solidFill": {
"schemeClr": {
"val": 0
}
}
},
"idx": 1
}
},
"txBody": {
"bodyPr": {
"vertOverflow": 2,
"horzOverflow": 1,
"rtlCol": false,
"anchor": 0
},
"lstStyle": { },
"p": [
{
"pPr": {
"algn": 0,
"defRPr": {
"sz": 21.33,
"latin": {
"typeface": "+mn-lt"
},
"solidFill": {
"schemeClr": {
"val": 1
}
}
}
},
"elements": [
{
"elementType": 0,
"rPr": {
"sz": 21.33,
"latin": {
"typeface": "+mn-lt"
},
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"t": "Email:"
}
]
}
]
},
"isLocked": true,
"canPrint": true,
"dynamicMove": true,
"dynamicSize": true,
"allowResize": true,
"allowRotate": true,
"allowMove": true,
"showHandle": true
}
],
"nvGrpSpPr": {
"cNvPr": {
"id": 15,
"name": "Group 14",
"extLst": {
"ext": [
{
"creationId": [
{
"name": "http://schemas.microsoft.com/office/drawing/2014/main",
"id": "{BE472D4B-75F6-460E-BD1B-AB236939BE91}"
}
],
"uri": "{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}",
"hiddenExtensionType": 4
}
]
},
"hidden": false
},
"cNvGrpSpPr": { }
},
"grpSpPr": {
"xfrm": {
"rot": 0,
"off": {
"x": 65,
"y": 21
},
"ext": {
"cx": 691,
"cy": 445
},
"chOff": {
"x": 65,
"y": 21
},
"chExt": {
"cx": 691,
"cy": 445
},
"flipH": false,
"flipV": false
},
"solidFill": { }
}
},
"clientData": {
"fLocksWithSheet": true,
"fPrintsWithSheet": true
}
},
"name": "Group 14",
"shapeType": 3
}
],
"shapeCollectionOption": {
"snapMode": 0
},
"index": 2
},
shape_hyperlink_data_sheet4 : {
"name": "Access URL",
"isSelected": false,
"rowCount": 36,
"columnCount": 18,
"activeRow": 35,
"activeCol": 17,
"frozenTrailingRowStickToEdge": true,
"frozenTrailingColumnStickToEdge": true,
"theme": {
"name": "Office",
"themeColor": {
"name": "Office",
"background1": {
"a": 255,
"r": 255,
"g": 255,
"b": 255
},
"background2": {
"a": 255,
"r": 231,
"g": 230,
"b": 230
},
"text1": {
"a": 255,
"r": 0,
"g": 0,
"b": 0
},
"text2": {
"a": 255,
"r": 68,
"g": 84,
"b": 106
},
"accent1": {
"a": 255,
"r": 68,
"g": 114,
"b": 196
},
"accent2": {
"a": 255,
"r": 237,
"g": 125,
"b": 49
},
"accent3": {
"a": 255,
"r": 165,
"g": 165,
"b": 165
},
"accent4": {
"a": 255,
"r": 255,
"g": 192,
"b": 0
},
"accent5": {
"a": 255,
"r": 91,
"g": 155,
"b": 213
},
"accent6": {
"a": 255,
"r": 112,
"g": 173,
"b": 71
},
"hyperlink": {
"a": 255,
"r": 5,
"g": 99,
"b": 193
},
"followedHyperlink": {
"a": 255,
"r": 149,
"g": 79,
"b": 114
}
},
"headingFont": "Calibri Light",
"bodyFont": "Calibri"
},
"data": {
"defaultDataNode": {
"style": {
"backColor": null,
"foreColor": "Text 1 0",
"vAlign": 2,
"font": "normal normal 14.7px Calibri",
"themeFont": "Body",
"borderLeft": null,
"borderTop": null,
"borderRight": null,
"borderBottom": null,
"locked": true,
"textIndent": 0,
"wordWrap": false,
"diagonalDown": null,
"diagonalUp": null
}
},
"dataTable": { }
},
"rowHeaderData": { },
"colHeaderData": { },
"leftCellIndex": 0,
"topCellIndex": 0,
"selections": {
"0": {
"row": 35,
"rowCount": 1,
"col": 17,
"colCount": 1
},
"length": 1
},
"defaults": {
"colHeaderRowHeight": 20,
"colWidth": 64,
"rowHeaderColWidth": 40,
"rowHeight": 20,
"_isExcelDefaultColumnWidth": true
},
"rowOutlines": {
"items": [ ]
},
"columnOutlines": {
"items": [ ]
},
"cellStates": { },
"states": { },
"outlineColumnOptions": { },
"autoMergeRangeInfos": [ ],
"printInfo": {
"margin": {
"top": 72,
"bottom": 72,
"left": 67,
"right": 67,
"header": 29,
"footer": 29
},
"pageOrder": 1,
"paperSize": {
"width": 850,
"height": 1100,
"kind": 1
}
},
"shapes": [
{
"isLocked": true,
"canPrint": true,
"dynamicMove": true,
"dynamicSize": true,
"allowResize": true,
"allowRotate": true,
"allowMove": true,
"showHandle": true,
"alt": "",
"childrenData": [
{
"childrenData": [
{ },
{ },
{ },
{ }
]
},
{ },
{ },
{ }
],
"shapeData": {
"anchorType": 0,
"startPoint": {
"row": 1,
"col": 1,
"rowOffset": 1,
"colOffset": 1
},
"endPoint": {
"row": 23,
"col": 11,
"rowOffset": 6,
"colOffset": 52
},
"grpSp": {
"shapeType": 3,
"sp": [
{
"shapeType": 3,
"sp": [
{
"shapeType": 5,
"macro": "",
"textlink": "",
"nvSpPr": {
"cNvPr": {
"id": 8,
"name": "Background",
"descr": "Background",
"extLst": {
"ext": [
{
"creationId": [
{
"name": "http://schemas.microsoft.com/office/drawing/2014/main",
"id": "{9A53E801-F2FF-4978-853E-B2EBC66FF03D}"
}
],
"uri": "{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}",
"hiddenExtensionType": 4
}
]
},
"hidden": false
},
"cNvSpPr": {
"txBox": false
}
},
"spPr": {
"xfrm": {
"flipH": false,
"flipV": false,
"rot": 0,
"off": {
"x": 65,
"y": 21
},
"ext": {
"cx": 691,
"cy": 445
}
},
"prstGeom": {
"prst": 4,
"avLst": { }
},
"ln": {
"noFill": true,
"cmpd": 0
},
"extLst": {
"ext": [ ]
},
"solidFill": {
"srgbClr": {
"val": [
245,
245,
245
]
}
}
},
"style": {
"lnRef": {
"ColorProp": {
"schemeClr": {
"val": 4,
"shade": [
50000
]
},
"colorFillType": 0
},
"idx": 2
},
"fillRef": {
"ColorProp": {
"schemeClr": {
"val": 4
},
"colorFillType": 0
},
"idx": 1
},
"effectRef": {
"ColorProp": {
"schemeClr": {
"val": 4
}
},
"idx": 0
},
"fontRef": {
"TextCharacterProperties": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 14.666666666666666,
"solidFill": {
"schemeClr": {
"val": 0
}
}
},
"idx": 1
}
},
"txBody": {
"bodyPr": {
"wrap": 1,
"rtlCol": false,
"anchor": 0,
"horzOverflow": 1,
"vertOverflow": 2
},
"lstStyle": {
"defPPr": {
"defRPr": { }
},
"lvl1pPr": {
"marL": 0,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
},
"solidFill": {
"schemeClr": {
"val": 0
}
}
}
},
"lvl2pPr": {
"marL": 457200,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl3pPr": {
"marL": 914400,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl4pPr": {
"marL": 1371600,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl5pPr": {
"marL": 1828800,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl6pPr": {
"marL": 2286000,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl7pPr": {
"marL": 2743200,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl8pPr": {
"marL": 3200400,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl9pPr": {
"marL": 3657600,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
}
},
"p": [
{
"pPr": {
"algn": 0,
"defRPr": {
"sz": 24,
"kern": 1200,
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
},
"solidFill": {
"schemeClr": {
"val": 0
}
}
}
},
"endParaRPr": {
"sz": 14.67,
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
}
},
"elements": [ ]
}
]
},
"isLocked": true,
"canPrint": true,
"dynamicMove": true,
"dynamicSize": true,
"allowResize": true,
"allowRotate": true,
"allowMove": true,
"showHandle": true
},
{
"shapeType": 5,
"macro": "",
"textlink": "",
"nvSpPr": {
"cNvPr": {
"id": 9,
"name": "Step",
"descr": "Add numbers like a champ",
"extLst": {
"ext": [
{
"creationId": [
{
"name": "http://schemas.microsoft.com/office/drawing/2014/main",
"id": "{FBF75172-EC5D-45B7-BF6A-84EAC6A809CC}"
}
],
"uri": "{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}",
"hiddenExtensionType": 4
}
]
},
"hidden": false
},
"cNvSpPr": {
"txBox": true
}
},
"spPr": {
"xfrm": {
"flipH": false,
"flipV": false,
"rot": 0,
"off": {
"x": 89.330604,
"y": 52.333332999999996
},
"ext": {
"cx": 547.669396,
"cy": 51.00703399999999
}
},
"prstGeom": {
"prst": 4,
"avLst": { }
},
"ln": {
"w": 1,
"cmpd": 0,
"noFill": true
},
"extLst": {
"ext": [ ]
},
"noFill": true
},
"style": {
"lnRef": {
"ColorProp": {
"colorFillType": 0,
"scrgbClr": {
"r": 0,
"g": 0,
"b": 0,
"invGammaField": [ ],
"gammaField": [ ],
"blueOffField": [ ],
"blueModField": [ ],
"blueField": [ ],
"greenOffField": [ ],
"greenModField": [ ],
"greenField": [ ],
"redOffField": [ ],
"redModField": [ ],
"redField": [ ],
"lumOffField": [ ],
"lumModField": [ ],
"lumField": [ ],
"satOffField": [ ],
"satModField": [ ],
"satField": [ ],
"hueOffField": [ ],
"hueModField": [ ],
"hueField": [ ],
"alphaOffField": [ ],
"alphaModField": [ ],
"alphaField": [ ],
"grayField": [ ],
"invField": [ ],
"compField": [ ],
"shadeField": [ ],
"tintField": [ ]
}
},
"idx": 0
},
"fillRef": {
"ColorProp": {
"colorFillType": 0,
"scrgbClr": {
"r": 0,
"g": 0,
"b": 0,
"invGammaField": [ ],
"gammaField": [ ],
"blueOffField": [ ],
"blueModField": [ ],
"blueField": [ ],
"greenOffField": [ ],
"greenModField": [ ],
"greenField": [ ],
"redOffField": [ ],
"redModField": [ ],
"redField": [ ],
"lumOffField": [ ],
"lumModField": [ ],
"lumField": [ ],
"satOffField": [ ],
"satModField": [ ],
"satField": [ ],
"hueOffField": [ ],
"hueModField": [ ],
"hueField": [ ],
"alphaOffField": [ ],
"alphaModField": [ ],
"alphaField": [ ],
"grayField": [ ],
"invField": [ ],
"compField": [ ],
"shadeField": [ ],
"tintField": [ ]
}
},
"idx": 0
},
"effectRef": {
"ColorProp": {
"scrgbClr": {
"r": 0,
"g": 0,
"b": 0
}
},
"idx": 0
},
"fontRef": {
"TextCharacterProperties": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 14.666666666666666,
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"idx": 1
}
},
"txBody": {
"bodyPr": {
"wrap": 1,
"lIns": 0,
"rIns": 0,
"rtlCol": false,
"anchor": 0,
"horzOverflow": 1,
"vertOverflow": 2
},
"lstStyle": {
"defPPr": {
"defRPr": { }
},
"lvl1pPr": {
"marL": 0,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 1
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl2pPr": {
"marL": 457200,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 13
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl3pPr": {
"marL": 914400,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 13
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl4pPr": {
"marL": 1371600,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 13
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl5pPr": {
"marL": 1828800,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 13
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl6pPr": {
"marL": 2286000,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 13
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl7pPr": {
"marL": 2743200,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 13
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl8pPr": {
"marL": 3200400,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 13
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl9pPr": {
"marL": 3657600,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 13
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
}
},
"p": [
{
"pPr": {
"marL": 0,
"marR": 0,
"lvl": 0,
"indent": 0,
"defTabSz": 914400,
"eaLnBrk": true,
"fontAlgn": 0,
"latinLnBrk": false,
"hangingPunct": true,
"lnSpc": {
"spcPct": 100000
},
"spcBef": {
"spcPts": 0
},
"spcAft": {
"spcPts": 0
},
"buClrTx": { },
"buSzTx": { },
"buFontTx": { },
"buNone": { },
"tabLst": {
"tab": [ ]
},
"defRPr": {
"sz": 24,
"kern": 1200,
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
},
"b": false,
"i": false,
"strike": 0,
"u": 0,
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"algn": 0
},
"elements": [
{
"elementType": 0,
"rPr": {
"kumimoji": false,
"sz": 29.33,
"b": false,
"i": false,
"u": 0,
"strike": 0,
"kern": 0,
"cap": 0,
"spc": 0,
"normalizeH": false,
"ln": {
"noFill": true
},
"effectLst": { },
"uLnTx": { },
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": "34",
"charset": "0",
"typeface": "Segoe UI"
},
"cs": {
"pitchFamily": "34",
"charset": "0",
"typeface": "Segoe UI Light",
"panose": "020B0502040204020203"
},
"solidFill": {
"srgbClr": {
"val": [
59,
56,
56
]
}
}
},
"t": "Name Card"
}
]
}
]
},
"isLocked": true,
"canPrint": true,
"dynamicMove": true,
"dynamicSize": true,
"allowResize": true,
"allowRotate": true,
"allowMove": true,
"showHandle": true
},
{
"shapeType": 4,
"macro": "",
"nvCxnSpPr": {
"cNvPr": {
"id": 10,
"name": "Bottom line",
"descr": "Decorative line",
"extLst": {
"ext": [
{
"creationId": [
{
"name": "http://schemas.microsoft.com/office/drawing/2014/main",
"id": "{9589AE2E-7F2D-48B9-8754-535E15C181BA}"
}
],
"uri": "{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}",
"hiddenExtensionType": 4
}
]
},
"hidden": false,
"title": ""
},
"cNvCxnSpPr": { }
},
"spPr": {
"xfrm": {
"flipH": false,
"flipV": false,
"rot": 0,
"off": {
"x": 90.664042,
"y": 387.123675
},
"ext": {
"cx": 618.336063,
"cy": 0.8763250000000085
}
},
"prstGeom": {
"prst": 95,
"avLst": { }
},
"ln": {
"w": 2.67,
"solidFill": {
"srgbClr": {
"val": [
33,
115,
70
]
}
},
"cmpd": 0
},
"extLst": {
"ext": [ ]
},
"noFill": true
},
"style": {
"lnRef": {
"ColorProp": {
"schemeClr": {
"val": 4
},
"colorFillType": 0
},
"idx": 1
},
"fillRef": {
"ColorProp": {
"colorFillType": 0,
"scrgbClr": {
"r": 0,
"g": 0,
"b": 0,
"invGammaField": [ ],
"gammaField": [ ],
"blueOffField": [ ],
"blueModField": [ ],
"blueField": [ ],
"greenOffField": [ ],
"greenModField": [ ],
"greenField": [ ],
"redOffField": [ ],
"redModField": [ ],
"redField": [ ],
"lumOffField": [ ],
"lumModField": [ ],
"lumField": [ ],
"satOffField": [ ],
"satModField": [ ],
"satField": [ ],
"hueOffField": [ ],
"hueModField": [ ],
"hueField": [ ],
"alphaOffField": [ ],
"alphaModField": [ ],
"alphaField": [ ],
"grayField": [ ],
"invField": [ ],
"compField": [ ],
"shadeField": [ ],
"tintField": [ ]
}
},
"idx": 0
},
"effectRef": {
"ColorProp": {
"schemeClr": {
"val": 4
}
},
"idx": 0
},
"fontRef": {
"TextCharacterProperties": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 14.666666666666666,
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"idx": 1
}
},
"isLocked": true,
"canPrint": true,
"dynamicMove": true,
"dynamicSize": true,
"allowResize": true,
"allowRotate": true,
"allowMove": true,
"showHandle": true
},
{
"shapeType": 4,
"macro": "",
"nvCxnSpPr": {
"cNvPr": {
"id": 11,
"name": "Top line",
"descr": "Decorative line",
"extLst": {
"ext": [
{
"creationId": [
{
"name": "http://schemas.microsoft.com/office/drawing/2014/main",
"id": "{AADA0411-9851-4AA5-947C-F924EFC20414}"
}
],
"uri": "{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}",
"hiddenExtensionType": 4
}
]
},
"hidden": false,
"title": ""
},
"cNvCxnSpPr": { }
},
"spPr": {
"xfrm": {
"flipH": false,
"flipV": true,
"rot": 0,
"off": {
"x": 89.664042,
"y": 105.00010499999999
},
"ext": {
"cx": 608.336063,
"cy": 0.05585299999999904
}
},
"prstGeom": {
"prst": 95,
"avLst": { }
},
"ln": {
"w": 2.67,
"solidFill": {
"srgbClr": {
"val": [
33,
115,
70
]
}
},
"cmpd": 0
},
"extLst": {
"ext": [ ]
},
"noFill": true
},
"style": {
"lnRef": {
"ColorProp": {
"schemeClr": {
"val": 4
},
"colorFillType": 0
},
"idx": 1
},
"fillRef": {
"ColorProp": {
"colorFillType": 0,
"scrgbClr": {
"r": 0,
"g": 0,
"b": 0,
"invGammaField": [ ],
"gammaField": [ ],
"blueOffField": [ ],
"blueModField": [ ],
"blueField": [ ],
"greenOffField": [ ],
"greenModField": [ ],
"greenField": [ ],
"redOffField": [ ],
"redModField": [ ],
"redField": [ ],
"lumOffField": [ ],
"lumModField": [ ],
"lumField": [ ],
"satOffField": [ ],
"satModField": [ ],
"satField": [ ],
"hueOffField": [ ],
"hueModField": [ ],
"hueField": [ ],
"alphaOffField": [ ],
"alphaModField": [ ],
"alphaField": [ ],
"grayField": [ ],
"invField": [ ],
"compField": [ ],
"shadeField": [ ],
"tintField": [ ]
}
},
"idx": 0
},
"effectRef": {
"ColorProp": {
"schemeClr": {
"val": 4
}
},
"idx": 0
},
"fontRef": {
"TextCharacterProperties": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 14.666666666666666,
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"idx": 1
}
},
"isLocked": true,
"canPrint": true,
"dynamicMove": true,
"dynamicSize": true,
"allowResize": true,
"allowRotate": true,
"allowMove": true,
"showHandle": true
}
],
"nvGrpSpPr": {
"cNvPr": {
"id": 3,
"name": "Group 2",
"extLst": {
"ext": [
{
"creationId": [
{
"name": "http://schemas.microsoft.com/office/drawing/2014/main",
"id": "{03D96D6A-B4F0-4E08-BE5E-1532F88CD203}"
}
],
"uri": "{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}",
"hiddenExtensionType": 4
}
]
},
"hidden": false
},
"cNvGrpSpPr": { }
},
"grpSpPr": {
"xfrm": {
"rot": 0,
"off": {
"x": 65,
"y": 21
},
"ext": {
"cx": 691,
"cy": 445
},
"chOff": {
"x": 65,
"y": 21
},
"chExt": {
"cx": 691,
"cy": 445
},
"flipH": false,
"flipV": false
},
"solidFill": { }
},
"name": "Group 2",
"isLocked": true,
"canPrint": true,
"dynamicMove": true,
"dynamicSize": true,
"allowResize": true,
"allowRotate": true,
"allowMove": true,
"showHandle": true
},
{
"shapeType": 5,
"macro": "",
"textlink": "",
"nvSpPr": {
"cNvPr": {
"id": 4,
"name": "Smiley Face 3",
"extLst": {
"ext": [
{
"creationId": [
{
"name": "http://schemas.microsoft.com/office/drawing/2014/main",
"id": "{61C98003-C2D2-4B38-9FB0-4BD778819483}"
}
],
"uri": "{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}",
"hiddenExtensionType": 4
}
]
},
"hidden": false
},
"cNvSpPr": {
"txBox": false
}
},
"spPr": {
"xfrm": {
"flipH": false,
"flipV": false,
"rot": 0,
"off": {
"x": 103,
"y": 139
},
"ext": {
"cx": 120,
"cy": 100
}
},
"prstGeom": {
"prst": 78,
"avLst": { }
},
"ln": {
"w": 1.33,
"cap": 2,
"cmpd": 0,
"algn": 0,
"prstDash": 0,
"solidFill": {
"srgbClr": {
"val": [
33,
115,
70
]
}
},
"miter": {
"lim": 800000
}
},
"extLst": {
"ext": [ ]
},
"solidFill": {
"schemeClr": {
"val": 0
}
}
},
"style": {
"lnRef": {
"ColorProp": {
"schemeClr": {
"val": 9
},
"colorFillType": 0
},
"idx": 2
},
"fillRef": {
"ColorProp": {
"schemeClr": {
"val": 0
},
"colorFillType": 0
},
"idx": 1
},
"effectRef": {
"ColorProp": {
"schemeClr": {
"val": 9
}
},
"idx": 0
},
"fontRef": {
"TextCharacterProperties": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 14.666666666666666,
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"idx": 1
}
},
"txBody": {
"bodyPr": {
"vertOverflow": 2,
"horzOverflow": 1,
"rtlCol": false,
"anchor": 0
},
"lstStyle": { },
"p": [
{
"pPr": {
"algn": 0,
"defRPr": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 14.67,
"solidFill": {
"schemeClr": {
"val": 1
}
}
}
},
"endParaRPr": {
"sz": 14.67
},
"elements": [ ]
}
]
},
"isLocked": true,
"canPrint": true,
"dynamicMove": true,
"dynamicSize": true,
"allowResize": true,
"allowRotate": true,
"allowMove": true,
"showHandle": true
},
{
"shapeType": 5,
"macro": "",
"textlink": "",
"nvSpPr": {
"cNvPr": {
"id": 5,
"name": "Rectangle 4",
"extLst": {
"ext": [
{
"creationId": [
{
"name": "http://schemas.microsoft.com/office/drawing/2014/main",
"id": "{D523761E-DA01-41F3-A04C-E6C216829CC0}"
}
],
"uri": "{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}",
"hiddenExtensionType": 4
}
]
},
"hidden": false
},
"cNvSpPr": {
"txBox": false
}
},
"spPr": {
"xfrm": {
"flipH": false,
"flipV": false,
"rot": 0,
"off": {
"x": 242.99989499999998,
"y": 117
},
"ext": {
"cx": 340.99999999999994,
"cy": 200
}
},
"prstGeom": {
"prst": 4,
"avLst": { }
},
"ln": {
"w": 1.33,
"cap": 2,
"cmpd": 0,
"algn": 0,
"prstDash": 0,
"noFill": true,
"miter": {
"lim": 800000
}
},
"extLst": {
"ext": [ ]
},
"noFill": true
},
"style": {
"lnRef": {
"ColorProp": {
"schemeClr": {
"val": 4,
"shade": [
50000
]
},
"colorFillType": 0
},
"idx": 2
},
"fillRef": {
"ColorProp": {
"schemeClr": {
"val": 4
},
"colorFillType": 0
},
"idx": 1
},
"effectRef": {
"ColorProp": {
"schemeClr": {
"val": 4
}
},
"idx": 0
},
"fontRef": {
"TextCharacterProperties": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 14.666666666666666,
"solidFill": {
"schemeClr": {
"val": 0
}
}
},
"idx": 1
}
},
"txBody": {
"bodyPr": {
"vertOverflow": 2,
"horzOverflow": 1,
"rtlCol": false,
"anchor": 0
},
"lstStyle": { },
"p": [
{
"pPr": {
"algn": 0,
"defRPr": {
"sz": 21.33,
"latin": {
"typeface": "+mn-lt"
},
"solidFill": {
"schemeClr": {
"val": 1
}
}
}
},
"elements": [
{
"elementType": 0,
"rPr": {
"sz": 21.33,
"latin": {
"typeface": "+mn-lt"
},
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"t": "Name:"
},
{
"elementType": 0,
"rPr": {
"sz": 21.33,
"latin": {
"typeface": "+mn-lt"
},
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"t": " "
},
{
"elementType": 0,
"rPr": {
"sz": 21.33,
"latin": {
"typeface": "+mn-lt"
},
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"t": "Jone Barkley"
}
]
},
{
"pPr": {
"algn": 0,
"defRPr": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 21.33,
"solidFill": {
"schemeClr": {
"val": 1
}
}
}
},
"endParaRPr": {
"sz": 21.33,
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"elements": [ ]
},
{
"pPr": {
"algn": 0,
"defRPr": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 21.33,
"solidFill": {
"schemeClr": {
"val": 1
}
}
}
},
"elements": [
{
"elementType": 0,
"rPr": {
"sz": 21.33,
"latin": {
"typeface": "+mn-lt"
},
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"t": "Gender:"
},
{
"elementType": 0,
"rPr": {
"sz": 21.33,
"latin": {
"typeface": "+mn-lt"
},
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"t": " Male"
}
]
},
{
"pPr": {
"algn": 0,
"defRPr": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 21.33,
"solidFill": {
"schemeClr": {
"val": 1
}
}
}
},
"endParaRPr": {
"sz": 21.33,
"baseline": 0,
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"elements": [ ]
},
{
"pPr": {
"algn": 0,
"defRPr": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 21.33,
"solidFill": {
"schemeClr": {
"val": 1
}
}
}
},
"elements": [
{
"elementType": 0,
"rPr": {
"sz": 21.33,
"latin": {
"typeface": "+mn-lt"
},
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"t": "Age: 33"
}
]
},
{
"pPr": {
"algn": 0,
"defRPr": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 21.33,
"solidFill": {
"schemeClr": {
"val": 1
}
}
}
},
"endParaRPr": {
"sz": 21.33,
"baseline": 0,
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"elements": [ ]
},
{
"pPr": {
"algn": 0,
"defRPr": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 21.33,
"solidFill": {
"schemeClr": {
"val": 1
}
}
}
},
"elements": [
{
"elementType": 0,
"rPr": {
"sz": 21.33,
"latin": {
"typeface": "+mn-lt"
},
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"t": "Phone: (397) 983 1298"
}
]
},
{
"pPr": {
"algn": 0,
"defRPr": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 21.33,
"solidFill": {
"schemeClr": {
"val": 1
}
}
}
},
"endParaRPr": {
"sz": 21.33,
"baseline": 0,
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"elements": [ ]
},
{
"pPr": {
"algn": 0,
"defRPr": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 21.33,
"solidFill": {
"schemeClr": {
"val": 1
}
}
}
},
"endParaRPr": {
"sz": 21.33,
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"elements": [ ]
}
]
},
"isLocked": true,
"canPrint": true,
"dynamicMove": true,
"dynamicSize": true,
"allowResize": true,
"allowRotate": true,
"allowMove": true,
"showHandle": true
},
{
"shapeType": 5,
"macro": "",
"textlink": "",
"nvSpPr": {
"cNvPr": {
"id": 6,
"name": "Rectangle 5",
"extLst": {
"ext": [
{
"creationId": [
{
"name": "http://schemas.microsoft.com/office/drawing/2014/main",
"id": "{635BFD73-F26C-4442-806D-F4B86CEC5DC1}"
}
],
"uri": "{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}",
"hiddenExtensionType": 4
}
]
},
"hidden": false
},
"cNvSpPr": {
"txBox": false
}
},
"spPr": {
"xfrm": {
"flipH": false,
"flipV": false,
"rot": 0,
"off": {
"x": 107,
"y": 325
},
"ext": {
"cx": 116,
"cy": 37
}
},
"prstGeom": {
"prst": 4,
"avLst": { }
},
"ln": {
"w": 1.33,
"cap": 2,
"cmpd": 0,
"algn": 0,
"prstDash": 0,
"noFill": true,
"miter": {
"lim": 800000
}
},
"extLst": {
"ext": [ ]
},
"noFill": true
},
"style": {
"lnRef": {
"ColorProp": {
"schemeClr": {
"val": 4,
"shade": [
50000
]
},
"colorFillType": 0
},
"idx": 2
},
"fillRef": {
"ColorProp": {
"schemeClr": {
"val": 4
},
"colorFillType": 0
},
"idx": 1
},
"effectRef": {
"ColorProp": {
"schemeClr": {
"val": 4
}
},
"idx": 0
},
"fontRef": {
"TextCharacterProperties": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 14.666666666666666,
"solidFill": {
"schemeClr": {
"val": 0
}
}
},
"idx": 1
}
},
"txBody": {
"bodyPr": {
"vertOverflow": 2,
"horzOverflow": 1,
"rtlCol": false,
"anchor": 0
},
"lstStyle": { },
"p": [
{
"pPr": {
"algn": 0,
"defRPr": {
"sz": 21.33,
"latin": {
"typeface": "+mn-lt"
},
"solidFill": {
"schemeClr": {
"val": 1
}
}
}
},
"elements": [
{
"elementType": 0,
"rPr": {
"sz": 21.33,
"latin": {
"typeface": "+mn-lt"
},
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"t": "Company:"
}
]
}
]
},
"isLocked": true,
"canPrint": true,
"dynamicMove": true,
"dynamicSize": true,
"allowResize": true,
"allowRotate": true,
"allowMove": true,
"showHandle": true
}
],
"nvGrpSpPr": {
"cNvPr": {
"id": 2,
"name": "Group 1",
"extLst": {
"ext": [
{
"creationId": [
{
"name": "http://schemas.microsoft.com/office/drawing/2014/main",
"id": "{F4160A4E-9FD7-4D9A-93F1-7CD5E31BAF35}"
}
],
"uri": "{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}",
"hiddenExtensionType": 4
}
]
},
"hidden": false
},
"cNvGrpSpPr": { }
},
"grpSpPr": {
"xfrm": {
"rot": 0,
"off": {
"x": 65,
"y": 21
},
"ext": {
"cx": 691,
"cy": 445
},
"chOff": {
"x": 65,
"y": 21
},
"chExt": {
"cx": 691,
"cy": 445
},
"flipH": false,
"flipV": false
},
"solidFill": { }
}
},
"clientData": {
"fLocksWithSheet": true,
"fPrintsWithSheet": true
}
},
"name": "Group 1",
"shapeType": 3
}
],
"shapeCollectionOption": {
"snapMode": 0
},
"index": 3
},
shape_hyperlink_data_sheet5 : {
"name": "Custom Command",
"isSelected": false,
"rowCount": 36,
"columnCount": 18,
"activeRow": 35,
"activeCol": 17,
"frozenTrailingRowStickToEdge": true,
"frozenTrailingColumnStickToEdge": true,
"theme": {
"name": "Office",
"themeColor": {
"name": "Office",
"background1": {
"a": 255,
"r": 255,
"g": 255,
"b": 255
},
"background2": {
"a": 255,
"r": 231,
"g": 230,
"b": 230
},
"text1": {
"a": 255,
"r": 0,
"g": 0,
"b": 0
},
"text2": {
"a": 255,
"r": 68,
"g": 84,
"b": 106
},
"accent1": {
"a": 255,
"r": 68,
"g": 114,
"b": 196
},
"accent2": {
"a": 255,
"r": 237,
"g": 125,
"b": 49
},
"accent3": {
"a": 255,
"r": 165,
"g": 165,
"b": 165
},
"accent4": {
"a": 255,
"r": 255,
"g": 192,
"b": 0
},
"accent5": {
"a": 255,
"r": 91,
"g": 155,
"b": 213
},
"accent6": {
"a": 255,
"r": 112,
"g": 173,
"b": 71
},
"hyperlink": {
"a": 255,
"r": 5,
"g": 99,
"b": 193
},
"followedHyperlink": {
"a": 255,
"r": 149,
"g": 79,
"b": 114
}
},
"headingFont": "Calibri Light",
"bodyFont": "Calibri"
},
"data": {
"defaultDataNode": {
"style": {
"backColor": null,
"foreColor": "Text 1 0",
"vAlign": 2,
"font": "normal normal 14.7px Calibri",
"themeFont": "Body",
"borderLeft": null,
"borderTop": null,
"borderRight": null,
"borderBottom": null,
"locked": true,
"textIndent": 0,
"wordWrap": false,
"diagonalDown": null,
"diagonalUp": null
}
},
"dataTable": { }
},
"rowHeaderData": { },
"colHeaderData": { },
"leftCellIndex": 0,
"topCellIndex": 0,
"selections": {
"0": {
"row": 35,
"rowCount": 1,
"col": 17,
"colCount": 1
},
"length": 1
},
"defaults": {
"colHeaderRowHeight": 20,
"colWidth": 64,
"rowHeaderColWidth": 40,
"rowHeight": 20,
"_isExcelDefaultColumnWidth": true
},
"rowOutlines": {
"items": [ ]
},
"columnOutlines": {
"items": [ ]
},
"cellStates": { },
"states": { },
"outlineColumnOptions": { },
"autoMergeRangeInfos": [ ],
"printInfo": {
"margin": {
"top": 72,
"bottom": 72,
"left": 67,
"right": 67,
"header": 29,
"footer": 29
},
"pageOrder": 1,
"paperSize": {
"width": 850,
"height": 1100,
"kind": 1
}
},
"shapes": [
{
"isLocked": true,
"canPrint": true,
"dynamicMove": true,
"dynamicSize": true,
"allowResize": true,
"allowRotate": true,
"allowMove": true,
"showHandle": true,
"alt": "",
"childrenData": [
{ },
{ },
{ },
{ },
{ }
],
"shapeData": {
"anchorType": 0,
"startPoint": {
"row": 1,
"col": 1,
"rowOffset": 1,
"colOffset": 1
},
"endPoint": {
"row": 23,
"col": 11,
"rowOffset": 6,
"colOffset": 52
},
"grpSp": {
"shapeType": 3,
"sp": [
{
"shapeType": 5,
"macro": "",
"textlink": "",
"nvSpPr": {
"cNvPr": {
"id": 3,
"name": "Background",
"descr": "Background",
"extLst": {
"ext": [
{
"creationId": [
{
"name": "http://schemas.microsoft.com/office/drawing/2014/main",
"id": "{225DA7A0-00AE-4D86-AB5F-CA2081263A90}"
}
],
"uri": "{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}",
"hiddenExtensionType": 4
}
]
},
"hidden": false
},
"cNvSpPr": {
"txBox": false
}
},
"spPr": {
"xfrm": {
"flipH": false,
"flipV": false,
"rot": 0,
"off": {
"x": 65,
"y": 21
},
"ext": {
"cx": 691,
"cy": 445
}
},
"prstGeom": {
"prst": 4,
"avLst": { }
},
"ln": {
"w": 1.33,
"cap": 2,
"cmpd": 0,
"algn": 0,
"prstDash": 0,
"noFill": true,
"miter": {
"lim": 800000
}
},
"extLst": {
"ext": [ ]
},
"solidFill": {
"srgbClr": {
"val": [
245,
245,
245
]
}
}
},
"style": {
"lnRef": {
"ColorProp": {
"schemeClr": {
"val": 4,
"shade": [
50000
]
},
"colorFillType": 0
},
"idx": 2
},
"fillRef": {
"ColorProp": {
"schemeClr": {
"val": 4
},
"colorFillType": 0
},
"idx": 1
},
"effectRef": {
"ColorProp": {
"schemeClr": {
"val": 4
}
},
"idx": 0
},
"fontRef": {
"TextCharacterProperties": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 14.666666666666666,
"solidFill": {
"schemeClr": {
"val": 0
}
}
},
"idx": 1
}
},
"txBody": {
"bodyPr": {
"wrap": 1,
"rtlCol": false,
"anchor": 0,
"horzOverflow": 1,
"vertOverflow": 2
},
"lstStyle": {
"defPPr": {
"defRPr": { }
},
"lvl1pPr": {
"marL": 0,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
},
"solidFill": {
"schemeClr": {
"val": 0
}
}
}
},
"lvl2pPr": {
"marL": 457200,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl3pPr": {
"marL": 914400,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl4pPr": {
"marL": 1371600,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl5pPr": {
"marL": 1828800,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl6pPr": {
"marL": 2286000,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl7pPr": {
"marL": 2743200,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl8pPr": {
"marL": 3200400,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl9pPr": {
"marL": 3657600,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 14
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
}
},
"p": [
{
"pPr": {
"algn": 0,
"defRPr": {
"sz": 24,
"kern": 1200,
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
},
"solidFill": {
"schemeClr": {
"val": 0
}
}
}
},
"endParaRPr": {
"sz": 14.67,
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
}
},
"elements": [ ]
}
]
},
"isLocked": true,
"canPrint": true,
"dynamicMove": true,
"dynamicSize": true,
"allowResize": true,
"allowRotate": true,
"allowMove": true,
"showHandle": true
},
{
"shapeType": 5,
"macro": "",
"textlink": "",
"nvSpPr": {
"cNvPr": {
"id": 4,
"name": "Rectangle 3",
"extLst": {
"ext": [
{
"creationId": [
{
"name": "http://schemas.microsoft.com/office/drawing/2014/main",
"id": "{67FC4297-A5A8-4E42-986E-2F5287504BAD}"
}
],
"uri": "{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}",
"hiddenExtensionType": 4
}
]
},
"hidden": false
},
"cNvSpPr": {
"txBox": false
}
},
"spPr": {
"xfrm": {
"flipH": false,
"flipV": false,
"rot": 0,
"off": {
"x": 97.99989500000001,
"y": 128
},
"ext": {
"cx": 468.00010499999996,
"cy": 38
}
},
"prstGeom": {
"prst": 4,
"avLst": { }
},
"ln": {
"w": 1.33,
"cap": 2,
"cmpd": 0,
"algn": 0,
"prstDash": 0,
"noFill": true,
"miter": {
"lim": 800000
}
},
"extLst": {
"ext": [ ]
},
"noFill": true
},
"style": {
"lnRef": {
"ColorProp": {
"schemeClr": {
"val": 4,
"shade": [
50000
]
},
"colorFillType": 0
},
"idx": 2
},
"fillRef": {
"ColorProp": {
"schemeClr": {
"val": 4
},
"colorFillType": 0
},
"idx": 1
},
"effectRef": {
"ColorProp": {
"schemeClr": {
"val": 4
}
},
"idx": 0
},
"fontRef": {
"TextCharacterProperties": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 14.666666666666666,
"solidFill": {
"schemeClr": {
"val": 0
}
}
},
"idx": 1
}
},
"txBody": {
"bodyPr": {
"vertOverflow": 2,
"horzOverflow": 1,
"rtlCol": false,
"anchor": 0
},
"lstStyle": { },
"p": [
{
"pPr": {
"algn": 0,
"defRPr": {
"sz": 14.67,
"latin": {
"typeface": "+mn-lt"
},
"solidFill": {
"schemeClr": {
"val": 1
}
}
}
},
"elements": [
{
"elementType": 0,
"rPr": {
"sz": 14.67,
"latin": {
"typeface": "+mn-lt"
},
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"t": "Click below shape"
},
{
"elementType": 0,
"rPr": {
"sz": 14.67,
"latin": {
"typeface": "+mn-lt"
},
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"t": " to start a timer, click again will pause timer"
},
{
"elementType": 0,
"rPr": {
"sz": 14.67,
"latin": {
"typeface": "+mn-lt"
},
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"t": "."
}
]
}
]
},
"isLocked": true,
"canPrint": true,
"dynamicMove": true,
"dynamicSize": true,
"allowResize": true,
"allowRotate": true,
"allowMove": true,
"showHandle": true
},
{
"shapeType": 5,
"macro": "",
"textlink": "",
"nvSpPr": {
"cNvPr": {
"id": 5,
"name": "Step",
"descr": "Add numbers like a champ",
"extLst": {
"ext": [
{
"creationId": [
{
"name": "http://schemas.microsoft.com/office/drawing/2014/main",
"id": "{37A3E3FF-E419-4D73-92D6-641E572D271A}"
}
],
"uri": "{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}",
"hiddenExtensionType": 4
}
]
},
"hidden": false
},
"cNvSpPr": {
"txBox": true
}
},
"spPr": {
"xfrm": {
"flipH": false,
"flipV": false,
"rot": 0,
"off": {
"x": 89.330604,
"y": 52.33333300000001
},
"ext": {
"cx": 547.669396,
"cy": 51.007034000000004
}
},
"prstGeom": {
"prst": 4,
"avLst": { }
},
"ln": {
"w": 1,
"cmpd": 0,
"noFill": true
},
"extLst": {
"ext": [ ]
},
"noFill": true
},
"style": {
"lnRef": {
"ColorProp": {
"colorFillType": 0,
"scrgbClr": {
"r": 0,
"g": 0,
"b": 0,
"invGammaField": [ ],
"gammaField": [ ],
"blueOffField": [ ],
"blueModField": [ ],
"blueField": [ ],
"greenOffField": [ ],
"greenModField": [ ],
"greenField": [ ],
"redOffField": [ ],
"redModField": [ ],
"redField": [ ],
"lumOffField": [ ],
"lumModField": [ ],
"lumField": [ ],
"satOffField": [ ],
"satModField": [ ],
"satField": [ ],
"hueOffField": [ ],
"hueModField": [ ],
"hueField": [ ],
"alphaOffField": [ ],
"alphaModField": [ ],
"alphaField": [ ],
"grayField": [ ],
"invField": [ ],
"compField": [ ],
"shadeField": [ ],
"tintField": [ ]
}
},
"idx": 0
},
"fillRef": {
"ColorProp": {
"colorFillType": 0,
"scrgbClr": {
"r": 0,
"g": 0,
"b": 0,
"invGammaField": [ ],
"gammaField": [ ],
"blueOffField": [ ],
"blueModField": [ ],
"blueField": [ ],
"greenOffField": [ ],
"greenModField": [ ],
"greenField": [ ],
"redOffField": [ ],
"redModField": [ ],
"redField": [ ],
"lumOffField": [ ],
"lumModField": [ ],
"lumField": [ ],
"satOffField": [ ],
"satModField": [ ],
"satField": [ ],
"hueOffField": [ ],
"hueModField": [ ],
"hueField": [ ],
"alphaOffField": [ ],
"alphaModField": [ ],
"alphaField": [ ],
"grayField": [ ],
"invField": [ ],
"compField": [ ],
"shadeField": [ ],
"tintField": [ ]
}
},
"idx": 0
},
"effectRef": {
"ColorProp": {
"scrgbClr": {
"r": 0,
"g": 0,
"b": 0
}
},
"idx": 0
},
"fontRef": {
"TextCharacterProperties": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 14.666666666666666,
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"idx": 1
}
},
"txBody": {
"bodyPr": {
"wrap": 1,
"lIns": 0,
"rIns": 0,
"rtlCol": false,
"anchor": 0,
"horzOverflow": 1,
"vertOverflow": 2
},
"lstStyle": {
"defPPr": {
"defRPr": { }
},
"lvl1pPr": {
"marL": 0,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 1
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl2pPr": {
"marL": 457200,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 13
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl3pPr": {
"marL": 914400,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 13
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl4pPr": {
"marL": 1371600,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 13
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl5pPr": {
"marL": 1828800,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 13
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl6pPr": {
"marL": 2286000,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 13
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl7pPr": {
"marL": 2743200,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 13
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl8pPr": {
"marL": 3200400,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 13
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
},
"lvl9pPr": {
"marL": 3657600,
"algn": 0,
"defTabSz": 914400,
"rtl": false,
"eaLnBrk": true,
"latinLnBrk": false,
"hangingPunct": true,
"defRPr": {
"sz": 24,
"kern": 1200,
"solidFill": {
"schemeClr": {
"val": 13
}
},
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
}
}
}
},
"p": [
{
"pPr": {
"marL": 0,
"marR": 0,
"lvl": 0,
"indent": 0,
"defTabSz": 914400,
"eaLnBrk": true,
"fontAlgn": 0,
"latinLnBrk": false,
"hangingPunct": true,
"lnSpc": {
"spcPct": 100000
},
"spcBef": {
"spcPts": 0
},
"spcAft": {
"spcPts": 0
},
"buClrTx": { },
"buSzTx": { },
"buFontTx": { },
"buNone": { },
"tabLst": {
"tab": [ ]
},
"defRPr": {
"sz": 24,
"kern": 1200,
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-ea"
},
"cs": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-cs"
},
"b": false,
"i": false,
"strike": 0,
"u": 0,
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"algn": 0
},
"elements": [
{
"elementType": 0,
"rPr": {
"kumimoji": false,
"sz": 29.33,
"b": false,
"i": false,
"u": 0,
"strike": 0,
"kern": 0,
"cap": 0,
"spc": 0,
"normalizeH": false,
"ln": {
"noFill": true
},
"effectLst": { },
"uLnTx": { },
"latin": {
"pitchFamily": 0,
"charset": 1,
"typeface": "+mn-lt"
},
"ea": {
"pitchFamily": "34",
"charset": "0",
"typeface": "Segoe UI"
},
"cs": {
"pitchFamily": "34",
"charset": "0",
"typeface": "Segoe UI Light",
"panose": "020B0502040204020203"
},
"solidFill": {
"srgbClr": {
"val": [
59,
56,
56
]
}
}
},
"t": "Shape Hyperlink"
}
]
}
]
},
"isLocked": true,
"canPrint": true,
"dynamicMove": true,
"dynamicSize": true,
"allowResize": true,
"allowRotate": true,
"allowMove": true,
"showHandle": true
},
{
"shapeType": 4,
"macro": "",
"nvCxnSpPr": {
"cNvPr": {
"id": 6,
"name": "Bottom line",
"descr": "Decorative line",
"extLst": {
"ext": [
{
"creationId": [
{
"name": "http://schemas.microsoft.com/office/drawing/2014/main",
"id": "{E4DDCBE4-2014-47DD-AD34-00EE0198EA31}"
}
],
"uri": "{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}",
"hiddenExtensionType": 4
}
]
},
"hidden": false,
"title": ""
},
"cNvCxnSpPr": { }
},
"spPr": {
"xfrm": {
"flipH": false,
"flipV": false,
"rot": 0,
"off": {
"x": 90.664042,
"y": 387.12367500000005
},
"ext": {
"cx": 618.336063,
"cy": 0.8763250000000085
}
},
"prstGeom": {
"prst": 95,
"avLst": { }
},
"ln": {
"w": 2.67,
"cap": 2,
"cmpd": 0,
"algn": 0,
"prstDash": 0,
"solidFill": {
"srgbClr": {
"val": [
33,
115,
70
]
}
},
"miter": {
"lim": 800000
}
},
"extLst": {
"ext": [ ]
},
"noFill": true
},
"style": {
"lnRef": {
"ColorProp": {
"schemeClr": {
"val": 4
},
"colorFillType": 0
},
"idx": 1
},
"fillRef": {
"ColorProp": {
"colorFillType": 0,
"scrgbClr": {
"r": 0,
"g": 0,
"b": 0,
"invGammaField": [ ],
"gammaField": [ ],
"blueOffField": [ ],
"blueModField": [ ],
"blueField": [ ],
"greenOffField": [ ],
"greenModField": [ ],
"greenField": [ ],
"redOffField": [ ],
"redModField": [ ],
"redField": [ ],
"lumOffField": [ ],
"lumModField": [ ],
"lumField": [ ],
"satOffField": [ ],
"satModField": [ ],
"satField": [ ],
"hueOffField": [ ],
"hueModField": [ ],
"hueField": [ ],
"alphaOffField": [ ],
"alphaModField": [ ],
"alphaField": [ ],
"grayField": [ ],
"invField": [ ],
"compField": [ ],
"shadeField": [ ],
"tintField": [ ]
}
},
"idx": 0
},
"effectRef": {
"ColorProp": {
"schemeClr": {
"val": 4
}
},
"idx": 0
},
"fontRef": {
"TextCharacterProperties": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 14.666666666666666,
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"idx": 1
}
},
"isLocked": true,
"canPrint": true,
"dynamicMove": true,
"dynamicSize": true,
"allowResize": true,
"allowRotate": true,
"allowMove": true,
"showHandle": true
},
{
"shapeType": 4,
"macro": "",
"nvCxnSpPr": {
"cNvPr": {
"id": 7,
"name": "Top line",
"descr": "Decorative line",
"extLst": {
"ext": [
{
"creationId": [
{
"name": "http://schemas.microsoft.com/office/drawing/2014/main",
"id": "{AFBE63DC-C55C-43A9-8A0A-4FEFC7A9DEC1}"
}
],
"uri": "{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}",
"hiddenExtensionType": 4
}
]
},
"hidden": false,
"title": ""
},
"cNvCxnSpPr": { }
},
"spPr": {
"xfrm": {
"flipH": false,
"flipV": true,
"rot": 0,
"off": {
"x": 89.664042,
"y": 105.00010500000002
},
"ext": {
"cx": 608.336063,
"cy": 0.05585299999999904
}
},
"prstGeom": {
"prst": 95,
"avLst": { }
},
"ln": {
"w": 2.67,
"cap": 2,
"cmpd": 0,
"algn": 0,
"prstDash": 0,
"solidFill": {
"srgbClr": {
"val": [
33,
115,
70
]
}
},
"miter": {
"lim": 800000
}
},
"extLst": {
"ext": [ ]
},
"noFill": true
},
"style": {
"lnRef": {
"ColorProp": {
"schemeClr": {
"val": 4
},
"colorFillType": 0
},
"idx": 1
},
"fillRef": {
"ColorProp": {
"colorFillType": 0,
"scrgbClr": {
"r": 0,
"g": 0,
"b": 0,
"invGammaField": [ ],
"gammaField": [ ],
"blueOffField": [ ],
"blueModField": [ ],
"blueField": [ ],
"greenOffField": [ ],
"greenModField": [ ],
"greenField": [ ],
"redOffField": [ ],
"redModField": [ ],
"redField": [ ],
"lumOffField": [ ],
"lumModField": [ ],
"lumField": [ ],
"satOffField": [ ],
"satModField": [ ],
"satField": [ ],
"hueOffField": [ ],
"hueModField": [ ],
"hueField": [ ],
"alphaOffField": [ ],
"alphaModField": [ ],
"alphaField": [ ],
"grayField": [ ],
"invField": [ ],
"compField": [ ],
"shadeField": [ ],
"tintField": [ ]
}
},
"idx": 0
},
"effectRef": {
"ColorProp": {
"schemeClr": {
"val": 4
}
},
"idx": 0
},
"fontRef": {
"TextCharacterProperties": {
"latin": {
"typeface": "+mn-lt"
},
"sz": 14.666666666666666,
"solidFill": {
"schemeClr": {
"val": 1
}
}
},
"idx": 1
}
},
"isLocked": true,
"canPrint": true,
"dynamicMove": true,
"dynamicSize": true,
"allowResize": true,
"allowRotate": true,
"allowMove": true,
"showHandle": true
}
],
"nvGrpSpPr": {
"cNvPr": {
"id": 2,
"name": "Group 1",
"extLst": {
"ext": [
{
"creationId": [
{
"name": "http://schemas.microsoft.com/office/drawing/2014/main",
"id": "{EE33B4FE-3AC9-4DA5-A585-520CCBA1C2F1}"
}
],
"uri": "{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}",
"hiddenExtensionType": 4
}
]
},
"hidden": false
},
"cNvGrpSpPr": { }
},
"grpSpPr": {
"xfrm": {
"rot": 0,
"off": {
"x": 65,
"y": 21
},
"ext": {
"cx": 691,
"cy": 445
},
"chOff": {
"x": 65,
"y": 21
},
"chExt": {
"cx": 691,
"cy": 445
},
"flipH": false,
"flipV": false
},
"solidFill": { }
}
},
"clientData": {
"fLocksWithSheet": true,
"fPrintsWithSheet": true
}
},
"name": "Group 1",
"shapeType": 3
}
],
"shapeCollectionOption": {
"snapMode": 0
},
"index": 4
}
}
}
.sample-tutorial {
position: relative;
width: 100%;
height: 100%;
overflow: hidden;
}
body {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
(function (global) {
System.config({
transpiler: 'ts',
typescriptOptions: {
tsconfig: true
},
meta: {
'typescript': {
"exports": "ts"
},
'*.css': { loader: 'css' }
},
paths: {
// paths serve as alias
'npm:': 'node_modules/'
},
// map tells the System loader where to look for things
map: {
'core-js': 'npm:core-js/client/shim.min.js',
'zone': 'npm:zone.js/fesm2015/zone.min.js',
'rxjs': 'npm:rxjs/dist/bundles/rxjs.umd.min.js',
'@angular/core': 'npm:@angular/core/fesm2022',
'@angular/common': 'npm:@angular/common/fesm2022/common.mjs',
'@angular/compiler': 'npm:@angular/compiler/fesm2022/compiler.mjs',
'@angular/platform-browser': 'npm:@angular/platform-browser/fesm2022/platform-browser.mjs',
'@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/fesm2022/platform-browser-dynamic.mjs',
'@angular/common/http': 'npm:@angular/common/fesm2022/http.mjs',
'@angular/router': 'npm:@angular/router/fesm2022/router.mjs',
'@angular/forms': 'npm:@angular/forms/fesm2022/forms.mjs',
'jszip': 'npm:jszip/dist/jszip.min.js',
'typescript': 'npm:typescript/lib/typescript.js',
'ts': './plugin.js',
'tslib':'npm:tslib/tslib.js',
'css': 'npm:systemjs-plugin-css/css.js',
'plugin-babel': 'npm:systemjs-plugin-babel/plugin-babel.js',
'systemjs-babel-build':'npm:systemjs-plugin-babel/systemjs-babel-browser.js',
'@mescius/spread-sheets': 'npm:@mescius/spread-sheets/index.js',
'@mescius/spread-sheets-shapes': 'npm:@mescius/spread-sheets-shapes/index.js',
'@mescius/spread-sheets-angular': 'npm:@mescius/spread-sheets-angular/fesm2020/mescius-spread-sheets-angular.mjs',
'@grapecity/jsob-test-dependency-package/react-components': 'npm:@grapecity/jsob-test-dependency-package/react-components/index.js'
},
// packages tells the System loader how to load when no filename and/or no extension
packages: {
src: {
defaultExtension: 'ts'
},
rxjs: {
defaultExtension: 'js'
},
"node_modules": {
defaultExtension: 'js'
},
"node_modules/@angular": {
defaultExtension: 'mjs'
},
"@mescius/spread-sheets-angular": {
defaultExtension: 'mjs'
},
'@angular/core': {
defaultExtension: 'mjs',
main: 'core.mjs'
}
}
});
})(this);