Skip to content

Google Slide Add-on to templatize the slide, replacing ${} variables with values from a sidebar form.

Notifications You must be signed in to change notification settings

bhood4/SlideTemplate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SlideTemplate

Google Slide Add-on to templatize the slide, replacing ${} variables with values from a sidebar form.

Quickstart: Translate add-on for Google Slides Complete the steps described in the rest of this page, and in about five minutes you'll have created a Google Slides add-on that translates text in your presentation.

Set it up Create a new Google Presentation. From within your new presentation, select the menu item Tools > Script editor. If you are presented with a welcome screen, click Blank Project. Delete any code in the script editor and rename Code.gs to translate.gs. Create a new file by selecting the menu item File > New > HTML file. Name this file sidebar (Apps Script adds the .html extension automatically). Replace any code in these two files with the following content, respectively: translate.gs sidebar.html slides/translate/translate.gsView on GitHub /**

  • @OnlyCurrentDoc Limits the script to only accessing the current presentation. */

/**

  • Create a open translate menu item.
  • @param {Event} event The open event. */ function onOpen(event) { SlidesApp.getUi().createAddonMenu() .addItem('Open Translate', 'showSidebar') .addToUi(); }

/**

  • Open the Add-on upon install.
  • @param {Event} event The install event. */ function onInstall(event) { onOpen(event); }

/**

  • Opens a sidebar in the document containing the add-on's user interface. */ function showSidebar() { var ui = HtmlService .createHtmlOutputFromFile('sidebar') .setTitle('Translate'); SlidesApp.getUi().showSidebar(ui); }

/**

  • Recursively gets child text elements a list of elements.
  • @param {PageElement[]} elements The elements to get text from.
  • @return {Text[]} An array of text elements. */ function getElementTexts(elements) { var texts = []; elements.forEach(function(element) { switch (element.getPageElementType()) { case SlidesApp.PageElementType.GROUP: element.asGroup().getChildren().forEach(function(child) { texts = texts.concat(getElementTexts(child)); }); break; case SlidesApp.PageElementType.TABLE: var table = element.asTable(); for (var y = 0; y < table.getNumColumns(); ++y) { for (var x = 0; x < table.getNumRows(); ++x) { texts.push(table.getCell(x, y).getText()); } } break; case SlidesApp.PageElementType.SHAPE: texts.push(element.asShape().getText()); break; } }); return texts; }

/**

  • Translates selected slide elements to the target language using Apps Script's Language service.
  • @param {string} targetLanguage The two-letter short form for the target language. (ISO 639-1)
  • @return {number} The number of elements translated. */ function translateSelectedElements(targetLanguage) { // Get selected elements. var selection = SlidesApp.getActivePresentation().getSelection(); var selectionType = selection.getSelectionType(); var texts = []; switch (selectionType) { case SlidesApp.SelectionType.PAGE: var pages = selection.getPageRange().getPages().forEach(function(page) { texts = texts.concat(getElementTexts(page.getPageElements())); }); break; case SlidesApp.SelectionType.PAGE_ELEMENT: var pageElements = selection.getPageElementRange().getPageElements(); texts = texts.concat(getElementTexts(pageElements)); break; case SlidesApp.SelectionType.TABLE_CELL: var cells = selection.getTableCellRange().getTableCells().forEach(function(cell) { texts.push(cell.getText()); }); break; case SlidesApp.SelectionType.TEXT: var elements = selection.getPageElementRange().getPageElements().forEach(function(element) { texts.push(element.asShape().getText()); }); break; }

// Translate all elements in-place. texts.forEach(function(text) { text.setText(LanguageApp.translate(text.asRenderedString(), '', targetLanguage)); });

return texts.length; }

Select the menu item File > Save all. Name your new script "Translate Quickstart" and click OK. The script's name is shown to end users in several places, including the authorization dialog. Try it out Switch back to your presentation and reload the page. After a few seconds, a Translate Quickstart sub-menu appears under the Add-ons menu. Click Add-ons > Translate Quickstart > Start. A dialog box indicates that the script requires authorization. Click Continue. A second dialog box requests authorization for specific Google services. Click Allow. A sidebar appears. To test it, type some text into your presentation, then select it, and click the blue Translate button. To replace the text in the presentation, click Insert. Publish Since this is an example add-on, our tutorial ends here. If you were developing a real add-on, the last step would be to publish it for other people to find and install.

Learn more To continue learning about how to extend Google Slides with Apps Script, take a look at the following resources:

Add-on documentation Extending Google Slides with Apps Script

Quickstarts: Template Add-ons for Google Slides

based on Translate

This add-on templatizes a Slides presentation, replaceing all ${} variables with supplied values.

Cleanroom implementatino of http://docvariables.com/

https://docs.google.com/presentation/d/1R2JlzC2YPJEyN5KgFhCFuGkc5azNixe7yvErGS7F6SU/edit#slide=id.g5e5b0c9b58_0_9

https://docs.google.com/presentation/d/1bb_Dw5Hyvb8POGhNyoLSxw9dIwKMgKsv7CUBFJarf8s/edit#slide=id.g5e5b0c9b58_0_1

https://developers.google.com/gsuite/add-ons/editors/slides

https://codelabs.developers.google.com/codelabs/apps-script-intro/#6

https://groups.google.com/forum/?utm_medium=email&utm_source=footer#!forum/doc-variables----support-and-requests

https://developers.google.com/gsuite/add-ons/editors/slides/quickstart/translate

https://zapier.com/apps/google-sheets/integrations/miro

https://developers.google.com/gsuite/add-ons/editors/slides/quickstart/translate

https://github.com/gsuitedevs/apps-script-samples

<script nonce="o2DFZIgoIAWlmfGcqlPOPg">var DOCS_timing={}; DOCS_timing['pls']=new Date().getTime();</script><title>TemplateTest - Google Slides</title><script nonce="o2DFZIgoIAWlmfGcqlPOPg">_docs_webfonts_fontFaces = null; _docs_webfonts_iframe_fontFaces = null;(function() {_docs_webfonts_createFontFaces = function(doc) {if (doc && doc.fonts) {var win = window; var fontFaceObject = {}; var docs_fontFaces_data = {"Roboto-300-normal":{"fontFamily":"docs-Roboto","sourceString":"local(\u0027Roboto Light\u0027), local(\u0027Roboto-Light\u0027), url(filesystem:https://docs.google.com/persistent/docs/fonts/KFOlCnqEu92Fr1MmSU5vBh0_IsE.woff2), url(//fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5vBh0_IsE.woff2)","weight":"300","style":"normal","subset":"*"},"Roboto-300-italic":{"fontFamily":"docs-Roboto","sourceString":"local(\u0027Roboto Light Italic\u0027), local(\u0027Roboto-LightItalic\u0027), url(filesystem:https://docs.google.com/persistent/docs/fonts/KFOjCnqEu92Fr1Mu51TjARc4AMP6lQ.woff2), url(//fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51TjARc4AMP6lQ.woff2)","weight":"300","style":"italic","subset":"*"},"Roboto-400-normal":{"fontFamily":"docs-Roboto","sourceString":"local(\u0027Roboto\u0027), local(\u0027Roboto-Regular\u0027), url(filesystem:https://docs.google.com/persistent/docs/fonts/KFOmCnqEu92Fr1Me4GZNCzc.woff2), url(//fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Me4GZNCzc.woff2)","weight":"400","style":"normal","subset":"*"},"Roboto-400-italic":{"fontFamily":"docs-Roboto","sourceString":"local(\u0027Roboto Italic\u0027), local(\u0027Roboto-Italic\u0027), url(filesystem:https://docs.google.com/persistent/docs/fonts/KFOkCnqEu92Fr1Mu52xKKTU1Kg.woff2), url(//fonts.gstatic.com/s/roboto/v20/KFOkCnqEu92Fr1Mu52xKKTU1Kg.woff2)","weight":"400","style":"italic","subset":"*"},"Roboto-500-normal":{"fontFamily":"docs-Roboto","sourceString":"local(\u0027Roboto Medium\u0027), local(\u0027Roboto-Medium\u0027), url(filesystem:https://docs.google.com/persistent/docs/fonts/KFOlCnqEu92Fr1MmEU9vBh0_IsE.woff2), url(//fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9vBh0_IsE.woff2)","weight":"500","style":"normal","subset":"*"},"Roboto-500-italic":{"fontFamily":"docs-Roboto","sourceString":"local(\u0027Roboto Medium Italic\u0027), local(\u0027Roboto-MediumItalic\u0027), url(filesystem:https://docs.google.com/persistent/docs/fonts/KFOjCnqEu92Fr1Mu51S7ABc4AMP6lQ.woff2), url(//fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51S7ABc4AMP6lQ.woff2)","weight":"500","style":"italic","subset":"*"},"Roboto-700-normal":{"fontFamily":"docs-Roboto","sourceString":"local(\u0027Roboto Bold\u0027), local(\u0027Roboto-Bold\u0027), url(filesystem:https://docs.google.com/persistent/docs/fonts/KFOlCnqEu92Fr1MmWUlvBh0_IsE.woff2), url(//fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlvBh0_IsE.woff2)","weight":"700","style":"normal","subset":"*"},"Roboto-700-italic":{"fontFamily":"docs-Roboto","sourceString":"local(\u0027Roboto Bold Italic\u0027), local(\u0027Roboto-BoldItalic\u0027), url(filesystem:https://docs.google.com/persistent/docs/fonts/KFOjCnqEu92Fr1Mu51TzBhc4AMP6lQ.woff2), url(//fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51TzBhc4AMP6lQ.woff2)","weight":"700","style":"italic","subset":"*"},"Roboto Condensed-300-normal":{"fontFamily":"docs-Roboto Condensed","sourceString":"local(\u0027Roboto Condensed Light\u0027), local(\u0027RobotoCondensed-Light\u0027), url(filesystem:https://docs.google.com/persistent/docs/fonts/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZKCYSaPtc.woff2), url(//fonts.gstatic.com/s/robotocondensed/v18/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZKCYSaPtc.woff2)","weight":"300","style":"normal","subset":"*"},"Roboto Condensed-300-italic":{"fontFamily":"docs-Roboto Condensed","sourceString":"local(\u0027Roboto Condensed Light Italic\u0027), local(\u0027RobotoCondensed-LightItalic\u0027), url(filesystem:https://docs.google.com/persistent/docs/fonts/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDpCEYb9lecyU.woff2), url(//fonts.gstatic.com/s/robotocondensed/v18/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDpCEYb9lecyU.woff2)","weight":"300","style":"italic","subset":"*"},"Roboto Condensed-400-normal":{"fontFamily":"docs-Roboto Condensed","sourceString":"local(\u0027Roboto Condensed\u0027), local(\u0027RobotoCondensed-Regular\u0027), url(filesystem:https://docs.google.com/persistent/docs/fonts/ieVl2ZhZI2eCN5jzbjEETS9weq8-59CxCis4.woff2), url(//fonts.gstatic.com/s/robotocondensed/v18/ieVl2ZhZI2eCN5jzbjEETS9weq8-59CxCis4.woff2)","weight":"400","style":"normal","subset":"*"},"Roboto Condensed-400-italic":{"fontFamily":"docs-Roboto Condensed","sourceString":"local(\u0027Roboto Condensed Italic\u0027), local(\u0027RobotoCondensed-Italic\u0027), url(filesystem:https://docs.google.com/persistent/docs/fonts/ieVj2ZhZI2eCN5jzbjEETS9weq8-19e7DQk6YvM.woff2), url(//fonts.gstatic.com/s/robotocondensed/v18/ieVj2ZhZI2eCN5jzbjEETS9weq8-19e7DQk6YvM.woff2)","weight":"400","style":"italic","subset":"*"},"Roboto Condensed-700-normal":{"fontFamily":"docs-Roboto Condensed","sourceString":"local(\u0027Roboto Condensed Bold\u0027), local(\u0027RobotoCondensed-Bold\u0027), url(filesystem:https://docs.google.com/persistent/docs/fonts/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meKCYSaPtc.woff2), url(//fonts.gstatic.com/s/robotocondensed/v18/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meKCYSaPtc.woff2)","weight":"700","style":"normal","subset":"*"},"Roboto Condensed-700-italic":{"fontFamily":"docs-Roboto Condensed","sourceString":"local(\u0027Roboto Condensed Bold Italic\u0027), local(\u0027RobotoCondensed-BoldItalic\u0027), url(filesystem:https://docs.google.com/persistent/docs/fonts/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDtCYYb9lecyU.woff2), url(//fonts.gstatic.com/s/robotocondensed/v18/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDtCYYb9lecyU.woff2)","weight":"700","style":"italic","subset":"*"},"Helvetica Neue-300-normal":{"fontFamily":"docs-Helvetica Neue","sourceString":"local(\u0027Helvetica Neue Light\u0027), local(\u0027HelveticaNeue-Light\u0027), url(filesystem:https://docs.google.com/persistent/docs/fonts/jAncgHBgCsv4eNLTaMECf8DQsNwQWTWRVGormA.woff2), url(//fonts.gstatic.com/l/font?kit\u003djAncgHBgCsv4eNLTaMECf8DQsNwQWTWRVGormA\u0026skey\u003d94b5a6be98cdd9eb\u0026v\u003dv9)","weight":"300","style":"normal","subset":"*"},"Helvetica Neue-300-italic":{"fontFamily":"docs-Helvetica Neue","sourceString":"local(\u0027Helvetica Neue Light Italic\u0027), local(\u0027HelveticaNeue-LightItalic\u0027), url(filesystem:https://docs.google.com/persistent/docs/fonts/jAnagHBgCsv4eNLTaMECf8DQsNS-Q7mWXm0Jmmw5.woff2), url(//fonts.gstatic.com/l/font?kit\u003djAnagHBgCsv4eNLTaMECf8DQsNS-Q7mWXm0Jmmw5\u0026skey\u003dbd84fd227f786e23\u0026v\u003dv9)","weight":"300","style":"italic","subset":"*"},"Helvetica Neue-400-normal":{"fontFamily":"docs-Helvetica Neue","sourceString":"local(\u0027Helvetica Neue\u0027), local(\u0027HelveticaNeue\u0027), url(filesystem:https://docs.google.com/persistent/docs/fonts/jAnfgHBgCsv4eNLTaMECf8DQsOS5cRecfg.woff2), url(//fonts.gstatic.com/l/font?kit\u003djAnfgHBgCsv4eNLTaMECf8DQsOS5cRecfg\u0026skey\u003d4ad46dd97873f7d7\u0026v\u003dv9)","weight":"400","style":"normal","subset":"*"},"Helvetica Neue-400-italic":{"fontFamily":"docs-Helvetica Neue","sourceString":"local(\u0027Helvetica Neue Italic\u0027), local(\u0027HelveticaNeue-Italic\u0027), url(filesystem:https://docs.google.com/persistent/docs/fonts/jAndgHBgCsv4eNLTaMECf8DQsNS-exC-fGAj.woff2), url(//fonts.gstatic.com/l/font?kit\u003djAndgHBgCsv4eNLTaMECf8DQsNS-exC-fGAj\u0026skey\u003db6fcfb44a0513c\u0026v\u003dv9)","weight":"400","style":"italic","subset":"*"},"Helvetica Neue-700-normal":{"fontFamily":"docs-Helvetica Neue","sourceString":"local(\u0027Helvetica Neue Bold\u0027), local(\u0027HelveticaNeue-Bold\u0027), url(filesystem:https://docs.google.com/persistent/docs/fonts/jAncgHBgCsv4eNLTaMECf8DQsNwAXjWRVGormA.woff2), url(//fonts.gstatic.com/l/font?kit\u003djAncgHBgCsv4eNLTaMECf8DQsNwAXjWRVGormA\u0026skey\u003dba59c4fdb0ab3b35\u0026v\u003dv9)","weight":"700","style":"normal","subset":"*"},"Helvetica Neue-700-italic":{"fontFamily":"docs-Helvetica Neue","sourceString":"local(\u0027Helvetica Neue Bold Italic\u0027), local(\u0027HelveticaNeue-BoldItalic\u0027), url(filesystem:https://docs.google.com/persistent/docs/fonts/jAnagHBgCsv4eNLTaMECf8DQsNS-Q6mRXm0Jmmw5.woff2), url(//fonts.gstatic.com/l/font?kit\u003djAnagHBgCsv4eNLTaMECf8DQsNS-Q6mRXm0Jmmw5\u0026skey\u003d91381930180d3fa1\u0026v\u003dv9)","weight":"700","style":"italic","subset":"*"}}; for (var identifierString in docs_fontFaces_data) {var fontFace = new win.FontFace( docs_fontFaces_data[identifierString]['fontFamily'], docs_fontFaces_data[identifierString]['sourceString'],{'style': docs_fontFaces_data[identifierString]['style'], 'weight': docs_fontFaces_data[identifierString]['weight']}); fontFace.load().then(function(loadedFontFace) {doc.fonts.add(loadedFontFace);}); fontFaceObject[identifierString] = fontFace;}return fontFaceObject;}return null;}; _docs_webfonts_fontFaces = _docs_webfonts_createFontFaces(document);})();DOCS_timing['wpid']=new Date().getTime();</script><style nonce="o2DFZIgoIAWlmfGcqlPOPg">.gb_Za:not(.gb_Ld){font:13px/27px Roboto,RobotoDraft,Arial,sans-serif;z-index:986}@-webkit-keyframes gb__a{0%{opacity:0}50%{opacity:1}}@keyframes gb__a{0%{opacity:0}50%{opacity:1}}a.gb_0{border:none;color:#4285f4;cursor:default;font-weight:bold;outline:none;position:relative;text-align:center;text-decoration:none;text-transform:uppercase;white-space:nowrap;-webkit-user-select:none}a.gb_0:hover:after,a.gb_0:focus:after{background-color:rgba(0,0,0,.12);content:'';height:100%;left:0;position:absolute;top:0;width:100%}a.gb_0:hover,a.gb_0:focus{text-decoration:none}a.gb_0:active{background-color:rgba(153,153,153,.4);text-decoration:none}a.gb_1{background-color:#4285f4;color:#fff}a.gb_1:active{background-color:#0043b2}.gb_2{-webkit-box-shadow:0 1px 1px rgba(0,0,0,.16);box-shadow:0 1px 1px rgba(0,0,0,.16)}.gb_0,.gb_1,.gb_3,.gb_4{display:inline-block;line-height:28px;padding:0 12px;-webkit-border-radius:2px;border-radius:2px}.gb_3{background:#f8f8f8;border:1px solid #c6c6c6}.gb_4{background:#f8f8f8}.gb_3,#gb a.gb_3.gb_3,.gb_4{color:#666;cursor:default;text-decoration:none}#gb a.gb_4.gb_4{cursor:default;text-decoration:none}.gb_4{border:1px solid #4285f4;font-weight:bold;outline:none;background:#4285f4;background:-webkit-linear-gradient(top,#4387fd,#4683ea);background:linear-gradient(top,#4387fd,#4683ea);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#4387fd,endColorstr=#4683ea,GradientType=0)}#gb a.gb_4.gb_4{color:#fff}.gb_4:hover{-webkit-box-shadow:0 1px 0 rgba(0,0,0,.15);box-shadow:0 1px 0 rgba(0,0,0,.15)}.gb_4:active{-webkit-box-shadow:inset 0 2px 0 rgba(0,0,0,.15);box-shadow:inset 0 2px 0 rgba(0,0,0,.15);background:#3c78dc;background:-webkit-linear-gradient(top,#3c7ae4,#3f76d3);background:linear-gradient(top,#3c7ae4,#3f76d3);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#3c7ae4,endColorstr=#3f76d3,GradientType=0)}.gb_Fa{display:none!important}.gb_Ha{visibility:hidden}.gb_ed{display:inline-block;vertical-align:middle}.gb_Kf{position:relative}.gb_D{display:inline-block;outline:none;vertical-align:middle;-webkit-border-radius:2px;border-radius:2px;-webkit-box-sizing:border-box;box-sizing:border-box;height:40px;width:40px;color:#000;cursor:pointer;text-decoration:none}#gb#gb a.gb_D{color:#000;cursor:pointer;text-decoration:none}.gb_1a{border-color:transparent;border-bottom-color:#fff;border-style:dashed dashed solid;border-width:0 8.5px 8.5px;display:none;position:absolute;left:11.5px;top:43px;z-index:1;height:0;width:0;-webkit-animation:gb__a .2s;animation:gb__a .2s}.gb_2a{border-color:transparent;border-style:dashed dashed solid;border-width:0 8.5px 8.5px;display:none;position:absolute;left:11.5px;z-index:1;height:0;width:0;-webkit-animation:gb__a .2s;animation:gb__a .2s;border-bottom-color:#ccc;border-bottom-color:rgba(0,0,0,.2);top:42px}x:-o-prefocus,div.gb_2a{border-bottom-color:#ccc}.gb_F{background:#fff;border:1px solid #ccc;border-color:rgba(0,0,0,.2);color:#000;-webkit-box-shadow:0 2px 10px rgba(0,0,0,.2);box-shadow:0 2px 10px rgba(0,0,0,.2);display:none;outline:none;overflow:hidden;position:absolute;right:8px;top:62px;-webkit-animation:gb__a .2s;animation:gb__a .2s;-webkit-border-radius:2px;border-radius:2px;-webkit-user-select:text}.gb_ed.gb_na .gb_1a,.gb_ed.gb_na .gb_2a,.gb_ed.gb_na .gb_F,.gb_na.gb_F{display:block}.gb_ed.gb_na.gb_Lf .gb_1a,.gb_ed.gb_na.gb_Lf .gb_2a{display:none}.gb_Mf{position:absolute;right:8px;top:62px;z-index:-1}.gb_La .gb_1a,.gb_La .gb_2a,.gb_La .gb_F{margin-top:-10px}.gb_ed:first-child,#gbsfw:first-child+.gb_ed{padding-left:4px}.gb_sa.gb_Te .gb_ed:first-child{padding-left:0}.gb_Uc{position:relative}.gb_Jc .gb_Uc,.gb_3d .gb_Uc{float:right}.gb_D{padding:8px;cursor:pointer}.gb_sa .gb_Wc:not(.gb_0):focus img{background-color:rgba(0,0,0,0.20);outline:none;-webkit-border-radius:50%;border-radius:50%}.gb_Ue button:focus svg,.gb_Ue button:hover svg,.gb_Ue button:active svg,.gb_D:focus,.gb_D:hover,.gb_D:active,.gb_D[aria-expanded=true]{outline:none;-webkit-border-radius:50%;border-radius:50%}.gb_sc .gb_Ue.gb_Ve button:focus svg,.gb_sc .gb_Ue.gb_Ve button:focus:hover svg,.gb_Ue button:focus svg,.gb_Ue button:focus:hover svg,.gb_D:focus,.gb_D:focus:hover{background-color:rgba(60,64,67,0.1)}.gb_sc .gb_Ue.gb_Ve button:active svg,.gb_Ue button:active svg,.gb_D:active{background-color:rgba(60,64,67,0.12)}.gb_sc .gb_Ue.gb_Ve button:hover svg,.gb_Ue button:hover svg,.gb_D:hover{background-color:rgba(60,64,67,0.08)}.gb_ia .gb_D.gb_Oa:hover{background-color:transparent}.gb_D[aria-expanded=true],.gb_D:hover[aria-expanded=true]{background-color:rgba(95,99,104,0.24)}.gb_D[aria-expanded=true] .gb_We,.gb_D[aria-expanded=true] .gb_Xe{fill:#5f6368;opacity:1}.gb_sc .gb_Ue button:hover svg,.gb_sc .gb_D:hover{background-color:rgba(232,234,237,0.08)}.gb_sc .gb_Ue button:focus svg,.gb_sc .gb_Ue button:focus:hover svg,.gb_sc .gb_D:focus,.gb_sc .gb_D:focus:hover{background-color:rgba(232,234,237,0.10)}.gb_sc .gb_Ue button:active svg,.gb_sc .gb_D:active{background-color:rgba(232,234,237,0.12)}.gb_sc .gb_D[aria-expanded=true],.gb_sc .gb_D:hover[aria-expanded=true]{background-color:rgba(255,255,255,0.12)}.gb_sc .gb_D[aria-expanded=true] .gb_We,.gb_sc .gb_D[aria-expanded=true] .gb_Xe{fill:#ffffff;opacity:1}.gb_ed{padding:4px}.gb_sa.gb_Te .gb_ed{padding:4px 2px}.gb_sa.gb_Te .gb_Pa.gb_ed{padding-left:6px}.gb_F{z-index:991;line-height:normal}.gb_F.gb_Ze{left:8px;right:auto}@media (max-width:350px){.gb_F.gb_Ze{left:0}}.gb_0e .gb_F{top:56px}.gb_C .gb_D,.gb_E .gb_C .gb_D{background-position:-64px -29px}.gb_j .gb_C .gb_D{background-position:-29px -29px;opacity:1}.gb_C .gb_D,.gb_C .gb_D:hover,.gb_C .gb_D:focus{opacity:1}.gb_Md{display:none}.gb_Xc{font-family:Google Sans,Roboto,RobotoDraft,Helvetica,Arial,sans-serif;font-size:20px;font-weight:400;letter-spacing:.25px;line-height:48px;margin-bottom:2px;opacity:1;overflow:hidden;padding-left:16px;position:relative;text-overflow:ellipsis;vertical-align:middle;top:2px;white-space:nowrap;-webkit-flex:1 1 auto;flex:1 1 auto}.gb_Xc.gb_Zc{color:#3c4043}.gb_sa.gb_ta .gb_Xc{margin-bottom:0}.gb_0c.gb_1c .gb_Xc{padding-left:4px}.gb_sa.gb_ta .gb_2c{position:relative;top:-2px}.gb_sa{color:black;min-width:320px;position:relative;-webkit-transition:box-shadow 250ms;transition:box-shadow 250ms}.gb_sa.gb_Ac{min-width:240px}.gb_sa.gb_Nd .gb_Sc{display:none}.gb_sa.gb_Nd .gb_Od{height:56px}header.gb_sa{display:block}.gb_sa svg{fill:currentColor}.gb_Pd{position:fixed;top:0;width:100%}.gb_Qd{-webkit-box-shadow:0 4px 5px 0 rgba(0,0,0,0.14),0 1px 10px 0 rgba(0,0,0,0.12),0 2px 4px -1px rgba(0,0,0,0.2);box-shadow:0 4px 5px 0 rgba(0,0,0,0.14),0 1px 10px 0 rgba(0,0,0,0.12),0 2px 4px -1px rgba(0,0,0,0.2)}.gb_Rd{height:64px}.gb_sa:not(.gb_Dc) .gb_4c.gb_5c:not(.gb_Sd):not(.gb_Td),.gb_sa:not(.gb_Dc) .gb_Id:not(.gb_Sd):not(.gb_Td),.gb_sa.gb_Ud .gb_4c.gb_5c.gb_Sd,.gb_sa.gb_Ud .gb_Id.gb_Sd,.gb_sa.gb_Ud .gb_4c.gb_5c.gb_Td,.gb_sa.gb_Ud .gb_Id.gb_Td{display:none!important}.gb_Od{-webkit-box-sizing:border-box;box-sizing:border-box;position:relative;width:100%;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:space-between;-webkit-justify-content:space-between;justify-content:space-between;min-width:-webkit-min-content;min-width:min-content}.gb_sa:not(.gb_ta) .gb_Od{padding:8px}.gb_sa.gb_Vd .gb_Od{-webkit-flex:1 0 auto;flex:1 0 auto}.gb_sa .gb_Od.gb_Wd.gb_Xd{min-width:0}.gb_sa.gb_ta .gb_Od{padding:4px;padding-left:8px;min-width:0}.gb_Sc{height:48px;vertical-align:middle;white-space:nowrap;-webkit-box-align:center;-webkit-align-items:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-user-select:none}.gb_0d>.gb_Sc{display:table-cell;width:100%}.gb_0c{padding-right:30px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-flex:1 0 auto;flex:1 0 auto}.gb_sa.gb_ta .gb_0c{padding-right:14px}.gb_1d{-webkit-flex:1 1 100%;flex:1 1 100%}.gb_1d>:only-child{display:inline-block}.gb_Tc.gb_Kc{padding-left:4px}.gb_Tc.gb_2d,.gb_sa.gb_Vd .gb_Tc,.gb_sa.gb_ta:not(.gb_3d) .gb_Tc{padding-left:0}.gb_sa.gb_ta .gb_Tc.gb_2d{padding-right:0}.gb_sa.gb_ta .gb_Tc.gb_2d .gb_ia{margin-left:10px}.gb_Kc{display:inline}.gb_sa.gb_Dc .gb_Tc.gb_4d{padding-left:2px}.gb_Xc{display:inline-block}.gb_Tc{-webkit-box-sizing:border-box;box-sizing:border-box;height:48px;line-height:normal;padding:0 4px;padding-left:30px;-webkit-flex:0 0 auto;flex:0 0 auto;-webkit-box-pack:flex-end;-webkit-justify-content:flex-end;justify-content:flex-end}.gb_3d{height:48px}.gb_sa.gb_3d{min-width:initial;min-width:auto}.gb_3d .gb_Tc{float:right;padding-left:32px}.gb_3d .gb_Tc.gb_5d{padding-left:0}.gb_6d{font-size:14px;max-width:200px;overflow:hidden;padding:0 12px;text-overflow:ellipsis;white-space:nowrap;-webkit-user-select:text}.gb_7d{-webkit-transition:background-color .4s;transition:background-color .4s}.gb_8d{color:black}.gb_sc{color:white}.gb_sa a,.gb_xc a{color:inherit}.gb_t{color:rgba(0,0,0,0.87)}.gb_sa svg,.gb_xc svg,.gb_0c .gb_9d,.gb_Jc .gb_9d{color:#5f6368;opacity:1}.gb_sc svg,.gb_xc.gb_Bc svg,.gb_sc .gb_0c .gb_9d,.gb_sc .gb_0c .gb_rc,.gb_sc .gb_0c .gb_2c,.gb_xc.gb_Bc .gb_9d{color:rgba(255,255,255,.87)}.gb_sc .gb_0c .gb_ua:not(.gb_ae){opacity:.87}.gb_Zc{color:inherit;opacity:1;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased}.gb_sc .gb_Zc,.gb_8d .gb_Zc{opacity:1}.gb_be{position:relative}.gb_ce{line-height:normal;padding-right:15px}a.gb_g,span.gb_g{color:rgba(0,0,0,0.87);text-decoration:none}.gb_sc a.gb_g,.gb_sc span.gb_g{color:white}a.gb_g:hover,a.gb_g:focus{opacity:.85;text-decoration:underline}.gb_h{display:inline-block;padding-left:15px}.gb_h .gb_g{display:inline-block;line-height:24px;outline:none;vertical-align:middle}.gb_de{font-family:Google Sans,Roboto,RobotoDraft,Helvetica,Arial,sans-serif;font-weight:500;font-size:14px;letter-spacing:.25px;line-height:16px;margin-left:10px;margin-right:8px;min-width:96px;padding:9px 23px;text-align:center;vertical-align:middle;-webkit-border-radius:4px;border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box}.gb_sa.gb_3d .gb_de{margin-left:8px}#gb a.gb_4.gb_4.gb_de,#gb a.gb_3.gb_3.gb_de{cursor:pointer}.gb_4.gb_de:hover{background:#2b7de9;-webkit-box-shadow:0 1px 2px 0 rgba(66,133,244,0.3),0 1px 3px 1px rgba(66,133,244,0.15);box-shadow:0 1px 2px 0 rgba(66,133,244,0.3),0 1px 3px 1px rgba(66,133,244,0.15)}.gb_4.gb_de:focus,.gb_4.gb_de:hover:focus{background:#5094ed;-webkit-box-shadow:0 1px 2px 0 rgba(66,133,244,0.3),0 1px 3px 1px rgba(66,133,244,0.15);box-shadow:0 1px 2px 0 rgba(66,133,244,0.3),0 1px 3px 1px rgba(66,133,244,0.15)}.gb_4.gb_de:active{background:#63a0ef;-webkit-box-shadow:0 1px 2px 0 rgba(66,133,244,0.3),0 1px 3px 1px rgba(66,133,244,0.15);box-shadow:0 1px 2px 0 rgba(66,133,244,0.3),0 1px 3px 1px rgba(66,133,244,0.15)}.gb_de:not(.gb_3){background:#1a73e8;border:1px solid transparent}.gb_sa.gb_ta .gb_de{padding:9px 15px;min-width:80px}#gb a.gb_4.gb_ja.gb_de,#gb a.gb_de.gb_3{background:#ffffff;border-color:#dadce0;-webkit-box-shadow:none;box-shadow:none;color:#1a73e8}#gb a.gb_4.gb_ja.gb_de:hover,#gb a.gb_de.gb_3:hover{background:#f8fbff;border-color:#cce0fc}#gb a.gb_4.gb_ja.gb_de:focus,#gb a.gb_4.gb_ja.gb_de:focus:hover,#gb a.gb_de.gb_3:focus,#gb a.gb_de.gb_3:focus:hover{background:#f4f8ff;border-color:#c9ddfc}#gb a.gb_4.gb_ja.gb_de:active,#gb a.gb_de.gb_3:active{background:#ecf3fe}#gb a.gb_4.gb_ja.gb_de:active{-webkit-box-shadow:0 1px 2px 0 rgba(0,0,0,0.3),0 2px 6px 2px rgba(0,0,0,0.15);box-shadow:0 1px 2px 0 rgba(0,0,0,0.3),0 2px 6px 2px rgba(0,0,0,0.15)}#gb a.gb_de.gb_3:not(.gb_ja):active{-webkit-box-shadow:0 1px 2px 0 rgba(60,64,67,0.3),0 2px 6px 2px rgba(60,64,67,0.15);box-shadow:0 1px 2px 0 rgba(60,64,67,0.3),0 2px 6px 2px rgba(60,64,67,0.15)}.gb_ia{background-color:rgba(255,255,255,0.88);border:1px solid #dadce0;-webkit-box-sizing:border-box;box-sizing:border-box;cursor:pointer;display:inline-block;max-height:48px;overflow:hidden;outline:none;padding:0;vertical-align:middle;width:134px;-webkit-border-radius:8px;border-radius:8px}.gb_ia.gb_ja{background-color:transparent;border:1px solid #5f6368}.gb_ka{width:115px}.gb_la{display:inherit}.gb_la.gb_ja{background:#ffffff;-webkit-border-radius:4px;border-radius:4px;display:inline-block;left:8px;margin-right:5px;position:relative;padding:3px;top:-1px}.gb_la.gb_ma.gb_ja{left:6px;margin-right:2px}.gb_ia:hover{border:1px solid #d2e3fc;background-color:rgba(248,250,255,0.88)}.gb_ia.gb_ja:hover{border:1px solid #5f6368;background-color:rgba(232,234,237,0.08)}.gb_ia:focus{border:1px solid #fff;background-color:rgba(255,255,255);-webkit-box-shadow:0 1px 2px 0 rgba(60,64,67,0.3),0 1px 3px 1px rgba(60,64,67,0.15);box-shadow:0 1px 2px 0 rgba(60,64,67,0.3),0 1px 3px 1px rgba(60,64,67,0.15)}.gb_ia.gb_ja:focus{border:1px solid #e8eaed;background-color:#38383b}.gb_ia.gb_ja:active,.gb_ia.gb_na.gb_ja:focus{border:1px solid #5f6368;background-color:#333438}.gb_oa{display:inline-block;padding-left:7px;padding-bottom:2px;text-align:center;vertical-align:middle;line-height:32px;width:78px}.gb_oa.gb_ja{line-height:26px;width:72px}.gb_oa.gb_pa.gb_ja{line-height:30px;width:57px}.gb_oa.gb_pa{line-height:40px;width:59px}.gb_oa.gb_ja{padding-left:0;padding-bottom:0}.gb_oa.gb_qa{background-color:#f1f3f4;-webkit-border-radius:4px;border-radius:4px;margin-left:8px;padding-left:0}.gb_oa.gb_qa .gb_ra{vertical-align:middle}.gb_sa:not(.gb_ta) .gb_ia{margin-left:10px;margin-right:4px}.gb_ia .gb_ra.gb_ua{min-width:0}.gb_va{max-height:32px;width:78px}.gb_pa>.gb_va{max-height:40px;width:96px}.gb_va.gb_ja{max-height:26px;width:72px}.gb_pa>.gb_va.gb_ja{max-height:30px;width:88px}.gb_Ia{-webkit-background-size:32px 32px;background-size:32px 32px;-webkit-border-radius:50%;border-radius:50%;display:block;margin:0;overflow:hidden;position:relative;height:32px;width:32px;z-index:0}@media (min-resolution:1.25dppx),(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-device-pixel-ratio:1.25){.gb_Ia::before{display:inline-block;-webkit-transform:scale(.5);transform:scale(.5);-webkit-transform-origin:left 0;transform-origin:left 0}.gb_Ja::before{display:inline-block;-webkit-transform:scale(.5);transform:scale(.5);-webkit-transform-origin:left 0;transform-origin:left 0}.gb_l .gb_Ja::before{-webkit-transform:scale(0.416666667);transform:scale(0.416666667)}}.gb_Ia:hover,.gb_Ia:focus{-webkit-box-shadow:0 1px 0 rgba(0,0,0,.15);box-shadow:0 1px 0 rgba(0,0,0,.15)}.gb_Ia:active{-webkit-box-shadow:inset 0 2px 0 rgba(0,0,0,.15);box-shadow:inset 0 2px 0 rgba(0,0,0,.15)}.gb_Ia:active::after{background:rgba(0,0,0,.1);-webkit-border-radius:50%;border-radius:50%;content:'';display:block;height:100%}.gb_Ka{cursor:pointer;line-height:40px;min-width:30px;opacity:.75;overflow:hidden;vertical-align:middle;text-overflow:ellipsis}.gb_D.gb_Ka{width:auto}.gb_Ka:hover,.gb_Ka:focus{opacity:.85}.gb_La .gb_Ka,.gb_La .gb_Ma{line-height:26px}#gb#gb.gb_La a.gb_Ka,.gb_La .gb_Ma{font-size:11px;height:auto}.gb_Na{border-top:4px solid #000;border-left:4px dashed transparent;border-right:4px dashed transparent;display:inline-block;margin-left:6px;opacity:.75;vertical-align:middle}.gb_Oa:hover .gb_Na{opacity:.85}.gb_ia>.gb_Pa{padding:3px 3px 3px 4px}.gb_Qa.gb_Ha{color:#fff}.gb_j .gb_Ka,.gb_j .gb_Na{opacity:1}#gb#gb.gb_j.gb_j a.gb_Ka,#gb#gb .gb_j.gb_j a.gb_Ka{color:#fff}.gb_j.gb_j .gb_Na{border-top-color:#fff;opacity:1}.gb_E .gb_Ia:hover,.gb_j .gb_Ia:hover,.gb_E .gb_Ia:focus,.gb_j .gb_Ia:focus{-webkit-box-shadow:0 1px 0 rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.2);box-shadow:0 1px 0 rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.2)}.gb_Ra .gb_Pa,.gb_Sa .gb_Pa{position:absolute;right:1px}.gb_Pa.gb_i,.gb_Ta.gb_i,.gb_Oa.gb_i{-webkit-flex:0 1 auto;flex:0 1 auto;-webkit-flex:0 1 main-size;flex:0 1 main-size}.gb_Ua.gb_Va .gb_Ka{width:30px!important}.gb_Wa.gb_Ha{display:none}.gb_Xa{height:40px;position:absolute;right:-5px;top:-5px;width:40px}.gb_Za .gb_Xa,.gb_0a .gb_Xa{right:0;top:0}.gb_Pa .gb_D{padding:4px}.gb_fe{display:none}.gb_3c{display:none}.gb_3c.gb_na{display:block}.gb_4c{background-color:#fff;-webkit-box-shadow:0 1px 0 rgba(0,0,0,0.08);box-shadow:0 1px 0 rgba(0,0,0,0.08);color:#000;position:relative;z-index:986}.gb_5c{height:40px;padding:16px 24px;white-space:nowrap}.gb_6c{position:fixed;bottom:16px;padding:16px;right:16px;white-space:normal;width:328px;-webkit-transition:width .2s,bottom .2s,right .2s;transition:width .2s,bottom .2s,right .2s;-webkit-border-radius:2px;border-radius:2px;-webkit-box-shadow:0 5px 5px -3px rgba(0,0,0,0.2),0 8px 10px 1px rgba(0,0,0,0.14),0 3px 14px 2px rgba(0,0,0,0.12);box-shadow:0 5px 5px -3px rgba(0,0,0,0.2),0 8px 10px 1px rgba(0,0,0,0.14),0 3px 14px 2px rgba(0,0,0,0.12)}@media (max-width:400px){.gb_4c.gb_6c{max-width:368px;width:auto;bottom:0;right:0}}.gb_4c .gb_Wc{border:0;font-weight:500;font-size:14px;line-height:36px;min-width:32px;padding:0 16px;vertical-align:middle}.gb_4c .gb_Wc:before{content:'';height:6px;left:0;position:absolute;top:-6px;width:100%}.gb_4c .gb_Wc:after{bottom:-6px;content:'';height:6px;left:0;position:absolute;width:100%}.gb_4c .gb_Wc+.gb_Wc{margin-left:8px}.gb_7c{height:48px;padding:4px;margin:-8px 0 0 -8px}.gb_6c .gb_7c{float:left;margin:-4px}.gb_8c{font-family:Roboto,RobotoDraft,Helvetica,Arial,sans-serif;overflow:hidden;vertical-align:top}.gb_5c .gb_8c{display:inline-block;padding-left:8px;width:640px}.gb_6c .gb_8c{display:block;margin-left:56px;padding-bottom:16px}.gb_9c{background-color:inherit}.gb_5c .gb_9c{display:inline-block;position:absolute;top:18px;right:24px}.gb_6c .gb_9c{text-align:right;padding-right:24px;padding-top:6px}.gb_9c .gb_ad{height:1.5em;margin:-.25em 10px -.25em 0;vertical-align:text-top;width:1.5em}.gb_bd{line-height:20px;font-size:16px;font-weight:700;color:rgba(0,0,0,.87)}.gb_6c .gb_bd{color:rgba(0,0,0,.87);font-size:16px;line-height:20px;padding-top:8px}.gb_5c .gb_bd,.gb_5c .gb_cd{width:640px}.gb_cd .gb_dd,.gb_cd{line-height:20px;font-size:13px;font-weight:400;color:rgba(0,0,0,.54)}.gb_6c .gb_cd .gb_dd{font-size:14px}.gb_6c .gb_cd{padding-top:12px}.gb_6c .gb_cd a{color:rgba(66,133,244,1)}.gb_ed.gb_fd{padding:0}.gb_fd .gb_F{background:#ffffff;border:solid 1px transparent;-webkit-border-radius:8px;border-radius:8px;-webkit-box-sizing:border-box;box-sizing:border-box;padding:16px;right:16px;top:72px;-webkit-box-shadow:0 1px 2px 0 rgba(65,69,73,0.3),0 3px 6px 2px rgba(65,69,73,0.15);box-shadow:0 1px 2px 0 rgba(65,69,73,0.3),0 3px 6px 2px rgba(65,69,73,0.15)}a.gb_gd{color:#5f6368!important;font-size:22px;height:24px;opacity:1;padding:8px;position:absolute;right:8px;top:8px;text-decoration:none!important;width:24px}a.gb_gd:focus,a.gb_gd:active,a.gb_gd:focus:hover{background-color:#e8eaed;-webkit-border-radius:50%;border-radius:50%;outline:none}a.gb_gd:hover{background-color:#f1f3f4;-webkit-border-radius:50%;border-radius:50%;outline:none}svg.gb_hd{fill:#5f6368;opacity:1}.gb_id{padding:0;white-space:normal;display:table}.gb_jd{line-height:normal;font-family:Roboto,RobotoDraft,Helvetica,Arial,sans-serif}.gb_fd .gb_4:active{outline:none;-webkit-box-shadow:0 4px 5px rgba(0,0,0,.16);box-shadow:0 4px 5px rgba(0,0,0,.16)}.gb_0.gb_kd.gb_ld{-webkit-border-radius:4px;border-radius:4px;cursor:pointer;height:16px;color:#5f6368;font-family:Google Sans,Roboto,RobotoDraft,Helvetica,Arial,sans-serif;font-weight:500;letter-spacing:.25px;line-height:16px;padding:8px 6px;text-transform:none;-webkit-font-smoothing:antialiased}.gb_0.gb_kd:hover{background-color:#f8f9fa}.gb_0.gb_kd:focus,.gb_0.gb_kd:hover:focus{background-color:#f1f3f4;border-color:transparent}.gb_0.gb_kd:active{background-color:#f1f3f4;-webkit-box-shadow:0 1px 2px 0 rgba(60,64,67,0.3),0 1px 3px 1px rgba(60,64,67,0.15);box-shadow:0 1px 2px 0 rgba(60,64,67,0.3),0 1px 3px 1px rgba(60,64,67,0.15)}.gb_dd{color:#5f6368;font-family:Roboto,RobotoDraft,Helvetica,Arial,sans-serif;font-size:14px;letter-spacing:.25px;line-height:20px;margin:0;margin-bottom:5px}.gb_md{text-align:right;font-size:14px;padding-bottom:0;white-space:nowrap}.gb_md .gb_nd{margin-left:12px;text-transform:none}a.gb_4.gb_nd:hover{background-color:#2b7de9;border-color:transparent;-webkit-box-shadow:0 1px 2px 0 rgba(66,133,244,0.3),0 1px 3px 1px rgba(66,133,244,0.15);box-shadow:0 1px 2px 0 rgba(66,133,244,0.3),0 1px 3px 1px rgba(66,133,244,0.15)}a.gb_4.gb_nd:focus,a.gb_4.gb_nd:hover:focus{background-color:#5094ed;border-color:transparent;-webkit-box-shadow:0 1px 2px 0 rgba(66,133,244,0.3),0 1px 3px 1px rgba(66,133,244,0.15);box-shadow:0 1px 2px 0 rgba(66,133,244,0.3),0 1px 3px 1px rgba(66,133,244,0.15)}a.gb_4.gb_nd:active{background-color:#63a0ef;-webkit-box-shadow:0 1px 2px 0 rgba(66,133,244,0.3),0 1px 3px 1px rgba(66,133,244,0.15);box-shadow:0 1px 2px 0 rgba(66,133,244,0.3),0 1px 3px 1px rgba(66,133,244,0.15)}.gb_md .gb_nd.gb_od{padding-left:6px;padding-right:14px}.gb_md .gb_ld.gb_nd img{background-color:inherit;-webkit-border-radius:initial;border-radius:initial;height:18px;margin:0 8px 0 4px;vertical-align:text-top;width:18px}.gb_pd .gb_id .gb_qd .gb_ld{border:2px solid transparent}.gb_pd .gb_id .gb_qd .gb_ld:focus:after,.gb_pd .gb_id .gb_qd .gb_ld:hover:after{background-color:transparent}.gb_jd{background-color:#404040;color:#fff;padding:16px;position:absolute;top:62px;min-width:328px;max-width:650px;right:8px;-webkit-border-radius:2px;border-radius:2px;-webkit-box-shadow:4px 4px 12px rgba(0,0,0,0.4);box-shadow:4px 4px 12px rgba(0,0,0,0.4)}.gb_jd a,.gb_jd a:visited{color:#5e97f6;text-decoration:none}.gb_rd{text-transform:uppercase}.gb_sd{padding-left:50px}.gb_td{color:#3c4043;font-family:Google Sans,Roboto,RobotoDraft,Helvetica,Arial,sans-serif;font-size:16px;font-weight:500;letter-spacing:.1px;line-height:20px;margin:0;margin-bottom:12px}.gb_dd a.gb_vd{text-decoration:none;color:#5e97f6}.gb_dd a.gb_vd:visited{color:#5e97f6}.gb_dd a.gb_vd:hover,.gb_dd a.gb_vd:active{text-decoration:underline}.gb_wd{position:absolute;background:transparent;top:-999px;z-index:-1;visibility:hidden;margin-top:1px;margin-left:1px}#gb .gb_fd{margin:0}.gb_fd .gb_Wc{background:#4d90fe;border:2px solid transparent;-webkit-box-sizing:border-box;box-sizing:border-box;font-weight:500;margin-top:21px;min-width:70px;text-align:center;-webkit-font-smoothing:antialiased}.gb_fd a.gb_4{background:#1a73e8;-webkit-border-radius:4px;border-radius:4px;color:#ffffff;font-family:Google Sans,Roboto,RobotoDraft,Helvetica,Arial,sans-serif;font-size:14px;font-weight:500;letter-spacing:.25px;line-height:16px;padding:8px 22px;-webkit-font-smoothing:antialiased}.gb_fd a.gb_4.gb_xd{background:#d93025}.gb_fd a.gb_4.gb_xd:hover{background-color:#cc3127}.gb_fd a.gb_4.gb_xd:focus,.gb_fd a.gb_4.gb_xd:focus:hover{background-color:#b3332c}.gb_fd a.gb_4.gb_xd:active,.gb_fd a.gb_4.gb_xd:focus:active{background-color:#a6342e}.gb_fd:not(.gb_pd) a.gb_4{float:right}#gb .gb_fd a.gb_Wc.gb_Wc{color:#ffffff;cursor:pointer}.gb_fd .gb_Wc:hover{background:#357ae8;border-color:#2f5bb7}.gb_yd,.gb_qd{display:table-cell}.gb_yd{vertical-align:middle}.gb_yd img{height:48px;padding-left:4px;padding-right:20px;width:48px}.gb_qd{padding-left:13px;width:100%}.gb_fd .gb_qd{padding-top:4px;min-width:326px;padding-left:0;width:326px}.gb_fd.gb_zd .gb_qd{min-width:254px;width:254px}.gb_fd:not(.gb_pd) .gb_qd{padding-top:32px}.gb_Ad{display:block;display:inline-block;padding:1em 0 0 0;position:relative;width:100%}.gb_Bd{color:#ff0000;font-style:italic;margin:0;padding-left:46px}.gb_Ad .gb_Cd{float:right;margin:-20px 0;width:-webkit-calc(100% - 46px);width:calc(100% - 46px)}.gb_Dd svg{fill:grey}.gb_Dd.gb_Ed svg{fill:#4285f4}.gb_Ad .gb_Cd label:after{background-color:#4285f4}.gb_Dd{display:inline;float:right;margin-right:22px;position:relative;top:2px}.gb_Id{color:#ffffff;font-size:13px;font-weight:bold;height:25px;line-height:19px;padding-top:5px;padding-left:12px;position:relative;background-color:#4d90fe}.gb_Id .gb_Jd{color:#ffffff;cursor:default;font-size:22px;font-weight:normal;position:absolute;right:12px;top:5px}.gb_Id .gb_nd,.gb_Id .gb_kd{color:#ffffff;display:inline-block;font-size:11px;margin-left:16px;padding:0 8px;white-space:nowrap}.gb_Kd{background:none;background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,0.16)),to(rgba(0,0,0,0.2)));background-image:-webkit-linear-gradient(top,rgba(0,0,0,0.16),rgba(0,0,0,0.2));background-image:linear-gradient(top,rgba(0,0,0,0.16),rgba(0,0,0,0.2));background-image:-webkit-linear-gradient(top,rgba(0,0,0,0.16),rgba(0,0,0,0.2));border-radius:2px;border:1px solid #dcdcdc;border:1px solid rgba(0,0,0,0.1);cursor:default!important;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#160000ff,endColorstr=#220000ff);text-decoration:none!important;-webkit-border-radius:2px}.gb_Kd:hover{background:none;background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,0.14)),to(rgba(0,0,0,0.2)));background-image:-webkit-linear-gradient(top,rgba(0,0,0,0.14),rgba(0,0,0,0.2));background-image:linear-gradient(top,rgba(0,0,0,0.14),rgba(0,0,0,0.2));background-image:-webkit-linear-gradient(top,rgba(0,0,0,0.14),rgba(0,0,0,0.2));border:1px solid rgba(0,0,0,0.2);box-shadow:0 1px 1px rgba(0,0,0,0.1);-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.1);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#14000000,endColorstr=#22000000)}.gb_Kd:active{box-shadow:inset 0 1px 2px rgba(0,0,0,0.3);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.3)}.gb_sa .gb_0{color:#4285f4}.gb_sa .gb_1{color:#fff}.gb_sa .gb_Wc:not(.gb_Re):focus{outline:none}sentinel{}.gbii::before{content:url(https://lh3.googleusercontent.com/-OkHKo4fXmxc/AAAAAAAAAAI/AAAAAAAAAAA/AKF05nAe1MLL6BqtfdUJAzPj-8IjrlybqA.CMID/s32-c/photo.jpg)}.gbip::before{content:url(https://lh3.googleusercontent.com/-OkHKo4fXmxc/AAAAAAAAAAI/AAAAAAAAAAA/AKF05nAe1MLL6BqtfdUJAzPj-8IjrlybqA.CMID/s83-c/photo.jpg)}@media (min-resolution:1.25dppx),(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-device-pixel-ratio:1.25){.gbii::before{content:url(https://lh3.googleusercontent.com/-OkHKo4fXmxc/AAAAAAAAAAI/AAAAAAAAAAA/AKF05nAe1MLL6BqtfdUJAzPj-8IjrlybqA.CMID/s64-c/photo.jpg)}.gbip::before{content:url(https://lh3.googleusercontent.com/-OkHKo4fXmxc/AAAAAAAAAAI/AAAAAAAAAAA/AKF05nAe1MLL6BqtfdUJAzPj-8IjrlybqA.CMID/s192-c/photo.jpg)}}

</style><script nonce="o2DFZIgoIAWlmfGcqlPOPg">DOCS_timing['ojls']=new Date().getTime();</script><script nonce="o2DFZIgoIAWlmfGcqlPOPg">;this.gbar_={CONFIG:[[[0,"www.gstatic.com","og.qtm.en_US.5SXyqRPQj-w.O","com","en","281",0,[4,2,".40.40.40.40.40.40.","","1300102,3700337,3700572,3700697,3700738","300451932","0"],null,"mWZzXr2EDtC8zwKuwLPIBg",null,0,"og.qtm.-158jxg6vxzb8w.L.W.O","AA2YrTtcTdoq-KN1JXq69EZ5_ZaDjvktKA","AA2YrTv73CC3AAJ3l1X69OPSysbM2slqFg","",2,1,200,"USA",null,null,"281","281",1],null,[1,0.1000000014901161,2,1],[1,0.001000000047497451,1],[1,0,1,null,"0","bill.hood@contino.io","","AO2WAIL8jF1_ilANoJ8ybrUCj8K99G0XxbTlX8aAzZzmotXXF1Te2isbZqDSybv9wUA4PkNEMUyiGGa1ebL-IOvRp0-HOPyAlg"],[0,0,"",1,0,0,0,0,0,0,0,0,0,null,0,0,null,null,0,0,0,"","","","","","",null,0,0,0,0,0,null,null,null,"rgba(32,33,36,1)","rgba(255,255,255,1)",0,0,1,1],["%1$s (default)","Brand account",1,"%1$s (delegated)",1,null,83,"/presentation/d/1fqtCE8iTxzaf1ZgcICB_qb4cjEaFoOuXnj9xG6PlMH8/edit?authuser=$authuser",null,null,null,1,"https://accounts.google.com/ListAccounts?authuser=0\u0026pid=281\u0026gpsia=1\u0026source=ogb\u0026mo=1\u0026mn=1\u0026hl=en",0,"dashboard",null,null,null,null,"Profile","",1,null,"Signed out","https://accounts.google.com/AccountChooser?source=ogb\u0026continue=$continue\u0026Email=$email","https://accounts.google.com/RemoveLocalAccount?source=ogb","Remove","Sign in",0,0,1,0,1,0,0,"000770F20369E66457D20EADD25E96E687108A68D1B47E3A1F::1584621209233",null,35,"Session expired",null,0,"https://docs.google.com/picker","Visitor",null,"Default","Delegated","Sign out of all accounts",0],null,["1","gci_91f30755d6a6b787dcc2a4062e6e9824.js","googleapis.client:plusone:gapi.iframes","0","en"],null,null,null,null,["m;//scs/abc-static//js/k=gapi.gapi.en.OfYsKuVZ3qI.O/d=1/ct=zgms/rs=AHpOoo8UDq_6isr1vipw5cUlPTPPdx3_0A/m=features","https://apis.google.com","","","1","",null,1,"es_plusone_gc_20200115.0_p0","en",null,0,0],[0.009999999776482582,"com","281",[null,"","0",null,1,5184000,null,null,"",0,1,"",0,0,0,0,0,0,1,0,0,0],null,[["","","0",0,0,-1]],null,0,null,null,["5061451","google\.(com|ru|ca|by|kz|com\.mx|com\.tr)$",1]],[1,1,0,40400,281,"USA","en","300451932.0",8,0.009999999776482582,1,0,null,null,1,0,"3700738",null,null,null,"mWZzXr2EDtC8zwKuwLPIBg"],[[null,null,null,"https://www.gstatic.com/og//js/k=og.qtm.en_US.5SXyqRPQj-w.O/rt=j/m=qabr,qgl,q_d,qdid,qcwid,qmutsd,qbg,qbd,qapid/exm=qaaw,qadd,qaid,qein,qhaw,qhbr,qhch,qhga,qhid,qhin,qhpr/d=1/ed=1/rs=AA2YrTtcTdoq-KN1JXq69EZ5_ZaDjvktKA"],[null,null,null,"https://www.gstatic.com/og//ss/k=og.qtm.-158jxg6vxzb8w.L.W.O/m=qdid/excm=qaaw,qadd,qaid,qein,qhaw,qhbr,qhch,qhga,qhid,qhin,qhpr/d=1/ed=1/ct=zgms/rs=AA2YrTv73CC3AAJ3l1X69OPSysbM2slqFg"]],null,null,[""],[[[null,null,"https://ogs.google.com/u/0/widget/app?hl=en",0,468,340,57,4,1,0,0,63,64,8000,"https://www.google.com/intl/en/about/products",67,1,69,null,1,70,"Can't seem to load the app launcher right now. Try again or go to the %1$sGoogle Products%2$s page.",3,0,0,74,4000]],0,[null,null,null,"https://www.gstatic.com/og//js/k=og.qtm.en_US.5SXyqRPQj-w.O/rt=j/m=qdsh/d=1/ed=1/rs=AA2YrTtcTdoq-KN1JXq69EZ5_ZaDjvktKA"],"281","281",1,0],[300000,"/u/0","/u/0//bgogb/program/get","AO2WAIL8jF1_ilANoJ8ybrUCj8K99G0XxbTlX8aAzZzmotXXF1Te2isbZqDSybv9wUA4PkNEMUyiGGa1ebL-IOvRp0-HOPyAlg","https",0,"aa.google.com","rt=j\u0026sourceid=281","","o2DFZIgoIAWlmfGcqlPOPg","",0,0,null,1],[["mousedown","touchstart","touchmove","wheel","keydown"],300000]]],};this.gbar_=this.gbar_||{};(function(_){var window=this; try{ /*

Copyright The Closure Library Authors. SPDX-License-Identifier: Apache-2.0 / var aa,ca,da,ja,ka,la,ma,na,oa,Fa,Ga,Ia;aa=function(a){var c=0;return function(){return c<a.length?{done:!1,value:a[c++]}:{done:!0}}};.ba=function(a){var c="undefined"!=typeof Symbol&&Symbol.iterator&&a[Symbol.iterator];return c?c.call(a):{next:aa(a)}};ca="function"==typeof Object.create?Object.create:function(a){var c=function(){};c.prototype=a;return new c}; if("function"==typeof Object.setPrototypeOf)da=Object.setPrototypeOf;else{var ea;a:{var ha={Rg:!0},ia={};try{ia.proto=ha;ea=ia.Rg;break a}catch(a){}ea=!1}da=ea?function(a,c){a.proto=c;if(a.proto!==c)throw new TypeError("a"+a);return a}:null}ja=da; _.p=function(a,c){a.prototype=ca(c.prototype);a.prototype.constructor=a;if(ja)ja(a,c);else for(var d in c)if("prototype"!=d)if(Object.defineProperties){var e=Object.getOwnPropertyDescriptor(c,d);e&&Object.defineProperty(a,d,e)}else a[d]=c[d];a.K=c.prototype};ka="function"==typeof Object.defineProperties?Object.defineProperty:function(a,c,d){a!=Array.prototype&&a!=Object.prototype&&(a[c]=d.value)}; la=function(a){a=["object"==typeof window&&window,"object"==typeof self&&self,"object"==typeof global&&global,a];for(var c=0;c<a.length;++c){var d=a[c];if(d&&d.Math==Math)return d}throw Error("b");};ma=la(this);na=function(a,c){if(c){var d=ma;a=a.split(".");for(var e=0;e<a.length-1;e++){var f=a[e];f in d||(d[f]={});d=d[f]}a=a[a.length-1];e=d[a];c=c(e);c!=e&&null!=c&&ka(d,a,{configurable:!0,writable:!0,value:c})}}; oa=function(a,c,d){if(null==a)throw new TypeError("c"+d);if(c instanceof RegExp)throw new TypeError("d"+d);return a+""};na("String.prototype.startsWith",function(a){return a?a:function(c,d){var e=oa(this,c,"startsWith"),f=e.length,g=c.length;d=Math.max(0,Math.min(d|0,e.length));for(var h=0;h<g&&d<f;)if(e[d++]!=c[h++])return!1;return h>=g}});na("Number.MAX_SAFE_INTEGER",function(){return 9007199254740991}); var pa=function(){pa=function(){};ma.Symbol||(ma.Symbol=qa)},ra=function(a,c){this.b=a;ka(this,"description",{configurable:!0,writable:!0,value:c})};ra.prototype.toString=function(){return this.b}; var qa=function(){function a(d){if(this instanceof a)throw new TypeError("e");return new ra("jscomp_symbol_"+(d||"")+"_"+c++,d)}var c=0;return a}(),ta=function(){pa();var a=ma.Symbol.iterator;a||(a=ma.Symbol.iterator=ma.Symbol("Symbol.iterator"));"function"!=typeof Array.prototype[a]&&ka(Array.prototype,a,{configurable:!0,writable:!0,value:function(){return sa(aa(this))}});ta=function(){}},sa=function(a){ta();a={next:a};a[ma.Symbol.iterator]=function(){return this};return a},ua=function(a,c){ta(); a instanceof String&&(a+="");var d=0,e={next:function(){if(d<a.length){var f=d++;return{value:c(f,a[f]),done:!1}}e.next=function(){return{done:!0,value:void 0}};return e.next()}};e[Symbol.iterator]=function(){return e};return e};na("Array.prototype.keys",function(a){return a?a:function(){return ua(this,function(c){return c})}});na("Array.prototype.values",function(a){return a?a:function(){return ua(this,function(c,d){return d})}}); var va=function(a,c){return Object.prototype.hasOwnProperty.call(a,c)}; na("WeakMap",function(a){function c(){}function d(m){var n=typeof m;return"object"===n&&null!==m||"function"===n}function e(m){if(!va(m,g)){var n=new c;ka(m,g,{value:n})}}function f(m){var n=Object[m];n&&(Object[m]=function(r){if(r instanceof c)return r;e(r);return n(r)})}if(function(){if(!a||!Object.seal)return!1;try{var m=Object.seal({}),n=Object.seal({}),r=new a([[m,2],[n,3]]);if(2!=r.get(m)||3!=r.get(n))return!1;r.delete(m);r.set(n,4);return!r.has(m)&&4==r.get(n)}catch(w){return!1}}())return a; var g="$jscomp_hidden_"+Math.random();f("freeze");f("preventExtensions");f("seal");var h=0,l=function(m){this.b=(h+=Math.random()+1).toString();if(m){m=_.ba(m);for(var n;!(n=m.next()).done;)n=n.value,this.set(n[0],n[1])}};l.prototype.set=function(m,n){if(!d(m))throw Error("f");e(m);if(!va(m,g))throw Error("g"+m);m[g][this.b]=n;return this};l.prototype.get=function(m){return d(m)&&va(m,g)?m[g][this.b]:void 0};l.prototype.has=function(m){return d(m)&&va(m,g)&&va(m[g],this.b)};l.prototype.delete=function(m){return d(m)&& va(m,g)&&va(m[g],this.b)?delete m[g][this.b]:!1};return l}); na("Map",function(a){if(function(){if(!a||"function"!=typeof a||!a.prototype.entries||"function"!=typeof Object.seal)return!1;try{var l=Object.seal({x:4}),m=new a(.ba([[l,"s"]]));if("s"!=m.get(l)||1!=m.size||m.get({x:4})||m.set({x:4},"t")!=m||2!=m.size)return!1;var n=m.entries(),r=n.next();if(r.done||r.value[0]!=l||"s"!=r.value[1])return!1;r=n.next();return r.done||4!=r.value[0].x||"t"!=r.value[1]||!n.next().done?!1:!0}catch(w){return!1}}())return a;ta();var c=new WeakMap,d=function(l){this.f={}; this.b=g();this.size=0;if(l){l=.ba(l);for(var m;!(m=l.next()).done;)m=m.value,this.set(m[0],m[1])}};d.prototype.set=function(l,m){l=0===l?0:l;var n=e(this,l);n.list||(n.list=this.f[n.id]=[]);n.Za?n.Za.value=m:(n.Za={next:this.b,$b:this.b.$b,head:this.b,key:l,value:m},n.list.push(n.Za),this.b.$b.next=n.Za,this.b.$b=n.Za,this.size++);return this};d.prototype.delete=function(l){l=e(this,l);return l.Za&&l.list?(l.list.splice(l.index,1),l.list.length||delete this.f[l.id],l.Za.$b.next=l.Za.next,l.Za.next.$b= l.Za.$b,l.Za.head=null,this.size--,!0):!1};d.prototype.clear=function(){this.f={};this.b=this.b.$b=g();this.size=0};d.prototype.has=function(l){return!!e(this,l).Za};d.prototype.get=function(l){return(l=e(this,l).Za)&&l.value};d.prototype.entries=function(){return f(this,function(l){return[l.key,l.value]})};d.prototype.keys=function(){return f(this,function(l){return l.key})};d.prototype.values=function(){return f(this,function(l){return l.value})};d.prototype.forEach=function(l,m){for(var n=this.entries(), r;!(r=n.next()).done;)r=r.value,l.call(m,r[1],r[0],this)};d.prototype[Symbol.iterator]=d.prototype.entries;var e=function(l,m){var n=m&&typeof m;"object"==n||"function"==n?c.has(m)?n=c.get(m):(n=""+ ++h,c.set(m,n)):n="p"+m;var r=l.f[n];if(r&&va(l.f,n))for(l=0;l<r.length;l++){var w=r[l];if(m!==m&&w.key!==w.key||m===w.key)return{id:n,list:r,index:l,Za:w}}return{id:n,list:r,index:-1,Za:void 0}},f=function(l,m){var n=l.b;return sa(function(){if(n){for(;n.head!=l.b;)n=n.$b;for(;n.next!=n.head;)return n= n.next,{done:!1,value:m(n)};n=null}return{done:!0,value:void 0}})},g=function(){var l={};return l.$b=l.next=l.head=l},h=0;return d}); na("Set",function(a){if(function(){if(!a||"function"!=typeof a||!a.prototype.entries||"function"!=typeof Object.seal)return!1;try{var d=Object.seal({x:4}),e=new a(.ba([d]));if(!e.has(d)||1!=e.size||e.add(d)!=e||1!=e.size||e.add({x:4})!=e||2!=e.size)return!1;var f=e.entries(),g=f.next();if(g.done||g.value[0]!=d||g.value[1]!=d)return!1;g=f.next();return g.done||g.value[0]==d||4!=g.value[0].x||g.value[1]!=g.value[0]?!1:f.next().done}catch(h){return!1}}())return a;ta();var c=function(d){this.b=new Map; if(d){d=.ba(d);for(var e;!(e=d.next()).done;)this.add(e.value)}this.size=this.b.size};c.prototype.add=function(d){d=0===d?0:d;this.b.set(d,d);this.size=this.b.size;return this};c.prototype.delete=function(d){d=this.b.delete(d);this.size=this.b.size;return d};c.prototype.clear=function(){this.b.clear();this.size=0};c.prototype.has=function(d){return this.b.has(d)};c.prototype.entries=function(){return this.b.entries()};c.prototype.values=function(){return this.b.values()};c.prototype.keys=c.prototype.values; c.prototype[Symbol.iterator]=c.prototype.values;c.prototype.forEach=function(d,e){var f=this;this.b.forEach(function(g){return d.call(e,g,g,f)})};return c});na("Array.from",function(a){return a?a:function(c,d,e){d=null!=d?d:function(l){return l};var f=[],g="undefined"!=typeof Symbol&&Symbol.iterator&&c[Symbol.iterator];if("function"==typeof g){c=g.call(c);for(var h=0;!(g=c.next()).done;)f.push(d.call(e,g.value,h++))}else for(g=c.length,h=0;h<g;h++)f.push(d.call(e,c[h],h));return f}}); na("Object.is",function(a){return a?a:function(c,d){return c===d?0!==c||1/c===1/d:c!==c&&d!==d}});na("Array.prototype.includes",function(a){return a?a:function(c,d){var e=this;e instanceof String&&(e=String(e));var f=e.length;d=d||0;for(0>d&&(d=Math.max(d+f,0));d<f;d++){var g=e[d];if(g===c||Object.is(g,c))return!0}return!1}});na("String.prototype.includes",function(a){return a?a:function(c,d){return-1!==oa(this,c,"includes").indexOf(c,d||0)}}); na("Object.entries",function(a){return a?a:function(c){var d=[],e;for(e in c)va(c,e)&&d.push([e,c[e]]);return d}});.wa=.wa||{};.q=this||self;.xa=function(){};.za=function(a){a.We=void 0;a.ta=function(){return a.We?a.We:a.We=new a}}; .Aa=function(a){var c=typeof a;if("object"==c)if(a){if(a instanceof Array)return"array";if(a instanceof Object)return c;var d=Object.prototype.toString.call(a);if("[object Window]"==d)return"object";if("[object Array]"==d||"number"==typeof a.length&&"undefined"!=typeof a.splice&&"undefined"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable("splice"))return"array";if("[object Function]"==d||"undefined"!=typeof a.call&&"undefined"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable("call"))return"function"}else return"null"; else if("function"==c&&"undefined"==typeof a.call)return"object";return c};.Ba=function(a){return"array"==.Aa(a)};.Ca=function(a){return"function"==.Aa(a)};.Da=function(a){var c=typeof a;return"object"==c&&null!=a||"function"==c};.Ea="closure_uid_"+(1E9Math.random()>>>0);Fa=function(a,c,d){return a.call.apply(a.bind,arguments)}; Ga=function(a,c,d){if(!a)throw Error();if(2<arguments.length){var e=Array.prototype.slice.call(arguments,2);return function(){var f=Array.prototype.slice.call(arguments);Array.prototype.unshift.apply(f,e);return a.apply(c,f)}}return function(){return a.apply(c,arguments)}};.t=function(a,c,d){Function.prototype.bind&&-1!=Function.prototype.bind.toString().indexOf("native code")?.t=Fa:.t=Ga;return .t.apply(null,arguments)};.Ha=Date.now||function(){return+new Date}; .u=function(a,c){a=a.split(".");var d=.q;a[0]in d||"undefined"==typeof d.execScript||d.execScript("var "+a[0]);for(var e;a.length&&(e=a.shift());)a.length||void 0===c?d[e]&&d[e]!==Object.prototype[e]?d=d[e]:d=d[e]={}:d[e]=c};.v=function(a,c){function d(){}d.prototype=c.prototype;a.K=c.prototype;a.prototype=new d;a.prototype.constructor=a};Ia=function(a){return a}; .Ja=function(a){var c=null,d=.q.trustedTypes||.q.TrustedTypes;if(!d||!d.createPolicy)return c;try{c=d.createPolicy(a,{createHTML:Ia,createScript:Ia,createScriptURL:Ia,createURL:Ia})}catch(e){.q.console&&.q.console.error(e.message)}return c};.Ja("ogb-qtm#base"); .Ka=function(a){if(Error.captureStackTrace)Error.captureStackTrace(this,.Ka);else{var c=Error().stack;c&&(this.stack=c)}a&&(this.message=String(a))};.v(.Ka,Error);.Ka.prototype.name="CustomError"; .La=Array.prototype.indexOf?function(a,c){return Array.prototype.indexOf.call(a,c,void 0)}:function(a,c){if("string"===typeof a)return"string"!==typeof c||1!=c.length?-1:a.indexOf(c,0);for(var d=0;d<a.length;d++)if(d in a&&a[d]===c)return d;return-1};.Ma=Array.prototype.forEach?function(a,c,d){Array.prototype.forEach.call(a,c,d)}:function(a,c,d){for(var e=a.length,f="string"===typeof a?a.split(""):a,g=0;g<e;g++)g in f&&c.call(d,f[g],g,a)}; .Na=Array.prototype.filter?function(a,c,d){return Array.prototype.filter.call(a,c,d)}:function(a,c,d){for(var e=a.length,f=[],g=0,h="string"===typeof a?a.split(""):a,l=0;l<e;l++)if(l in h){var m=h[l];c.call(d,m,l,a)&&(f[g++]=m)}return f};.Oa=Array.prototype.map?function(a,c,d){return Array.prototype.map.call(a,c,d)}:function(a,c,d){for(var e=a.length,f=Array(e),g="string"===typeof a?a.split(""):a,h=0;h<e;h++)h in g&&(f[h]=c.call(d,g[h],h,a));return f}; .Pa=Array.prototype.some?function(a,c){return Array.prototype.some.call(a,c,void 0)}:function(a,c){for(var d=a.length,e="string"===typeof a?a.split(""):a,f=0;f<d;f++)if(f in e&&c.call(void 0,e[f],f,a))return!0;return!1};.Qa=function(a,c){return 0<=(0,.La)(a,c)}; var Sa;.Ra=function(a,c,d){for(var e in a)c.call(d,a[e],e,a)};Sa="constructor hasOwnProperty isPrototypeOf propertyIsEnumerable toLocaleString toString valueOf".split(" ");.Ta=function(a,c){for(var d,e,f=1;f<arguments.length;f++){e=arguments[f];for(d in e)a[d]=e[d];for(var g=0;g<Sa.length;g++)d=Sa[g],Object.prototype.hasOwnProperty.call(e,d)&&(a[d]=e[d])}}; var Ua=.Ja("ogb-qtm#html"); var Va;.Xa=function(a,c){this.b=a===Va&&c||"";this.f=.Wa};.Xa.prototype.Ob=!0;.Xa.prototype.Cb=function(){return this.b};.Ya=function(a){return new .Xa(Va,a)};.Wa={};Va={};.Za=.Ya(""); .ab=function(){this.b="";this.f=.$a};.ab.prototype.Ob=!0;.$a={};.ab.prototype.Cb=function(){return this.b.toString()};.bb=function(a){var c=new .ab;c.b=Ua?Ua.createScript(a):a;return c};.bb(""); var cb;.eb=function(a,c){this.f=a===cb&&c||"";this.j=.db};.eb.prototype.Ob=!0;.eb.prototype.Cb=function(){return this.f.toString()};.eb.prototype.Ue=!0;.eb.prototype.b=function(){return 1};.db={};.fb=function(a){a=Ua?Ua.createScriptURL(a):a;return new .eb(cb,a)};cb={}; var hb;.gb=String.prototype.trim?function(a){return a.trim()}:function(a){return/^[\s\xa0]([\s\S]?)[\s\xa0]$/.exec(a)[1]}; .ib=function(a,c){var d=0;a=(0,.gb)(String(a)).split(".");c=(0,_.gb)(String(c)).split(".");for(var e=Math.max(a.length,c.length),f=0;0==d&&f<e;f++){var g=a[f]||"",h=c[f]||"";do{g=/(\d)(\D*)(.)/.exec(g)||["","","",""];h=/(\d)(\D*)(.)/.exec(h)||["","","",""];if(0==g[0].length&&0==h[0].length)break;d=hb(0==g[1].length?0:parseInt(g[1],10),0==h[1].length?0:parseInt(h[1],10))||hb(0==g[2].length,0==h[2].length)||hb(g[2],h[2]);g=g[3];h=h[3]}while(0==d)}return d}; hb=function(a,c){return a<c?-1:a>c?1:0}; var nb,kb;.lb=function(a,c){this.f=a===.jb&&c||"";this.j=kb};.lb.prototype.Ob=!0;.lb.prototype.Cb=function(){return this.f.toString()};.lb.prototype.Ue=!0;.lb.prototype.b=function(){return 1};.mb=function(a){if(a instanceof .lb&&a.constructor===.lb&&a.j===kb)return a.f;.Aa(a);return"type_error:SafeUrl"};nb=/^(?:(?:https?|mailto|ftp):|[^:/?#](?:[/?#]|$))/i; .ob=function(a){if(a instanceof .lb)return a;a="object"==typeof a&&a.Ob?a.Cb():String(a);nb.test(a)||(a="about:invalid#zClosurez");return new .lb(.jb,a)};.pb=function(a){if(a instanceof .lb)return a;a="object"==typeof a&&a.Ob?a.Cb():String(a);nb.test(a)||(a="about:invalid#zClosurez");return new .lb(.jb,a)};kb={};.jb={}; .rb=function(){this.b="";this.f=.qb};.rb.prototype.Ob=!0;.qb={};.rb.prototype.Cb=function(){return this.b};.sb=function(a){var c=new .rb;c.b=a;return c};.tb=.sb(""); a:{var vb=.q.navigator;if(vb){var wb=vb.userAgent;if(wb){.ub=wb;break a}}.ub=""}.x=function(a){return-1!=.ub.indexOf(a)}; var zb;.xb=function(){return .x("Trident")||.x("MSIE")};.yb=function(){return .x("Firefox")||.x("FxiOS")};.Ab=function(){return .x("Safari")&&!(zb()||.x("Coast")||.x("Opera")||.x("Edge")||.x("Edg/")||.x("OPR")||.yb()||.x("Silk")||.x("Android"))};zb=function(){return(.x("Chrome")||.x("CriOS"))&&!.x("Edge")};.Bb=function(){return .x("Android")&&!(zb()||.yb()||.x("Opera")||.x("Silk"))}; var Cb;.Db=function(){this.f="";this.o=Cb;this.j=null};.Db.prototype.Ue=!0;.Db.prototype.b=function(){return this.j};.Db.prototype.Ob=!0;.Db.prototype.Cb=function(){return this.f.toString()};.Eb=function(a){if(a instanceof .Db&&a.constructor===.Db&&a.o===Cb)return a.f;.Aa(a);return"type_error:SafeHtml"};Cb={};.Fb=function(a,c){var d=new .Db;d.f=Ua?Ua.createHTML(a):a;d.j=c;return d};.Fb("",0);.Gb=.Fb("",0);.Hb=.Fb("
",0); .Ib=function(a){var c=!1,d;return function(){c||(d=a(),c=!0);return d}}(function(){var a=document.createElement("div"),c=document.createElement("div");c.appendChild(document.createElement("div"));a.appendChild(c);c=a.firstChild.firstChild;a.innerHTML=.Eb(
.Gb);return!c.parentElement}); var Jb;Jb=function(){return .x("iPhone")&&!.x("iPod")&&!.x("iPad")};.Kb=function(){return Jb()||.x("iPad")||.x("iPod")}; .Lb=function(a){.Lb" ";return a};.Lb[" "]=.xa;var Nb=function(a,c){var d=Mb;return Object.prototype.hasOwnProperty.call(d,a)?d[a]:d[a]=c(a)}; var ac,bc,Mb,jc;.Ob=.x("Opera");.y=.xb();.Pb=.x("Edge");.Qb=.Pb||.y;.Rb=.x("Gecko")&&!(-1!=.ub.toLowerCase().indexOf("webkit")&&!.x("Edge"))&&!(.x("Trident")||.x("MSIE"))&&!.x("Edge");.Sb=-1!=.ub.toLowerCase().indexOf("webkit")&&!.x("Edge");.Tb=.x("Macintosh");.Ub=.x("Windows");.Vb=.x("Linux")||.x("CrOS");.Wb=.x("Android");.Xb=Jb();.Yb=.x("iPad");.Zb=.x("iPod");.$b=.Kb();ac=function(){var a=.q.document;return a?a.documentMode:void 0}; a:{var cc="",dc=function(){var a=.ub;if(.Rb)return/rv:([^\);]+)()|;)/.exec(a);if(.Pb)return/Edge/([\d.]+)/.exec(a);if(.y)return/\b(?:MSIE|rv): ()|;)/.exec(a);if(.Sb)return/WebKit/(\S+)/.exec(a);if(.Ob)return/(?:Version)[ /]?(\S+)/.exec(a)}();dc&&(cc=dc?dc[1]:"");if(.y){var ec=ac();if(null!=ec&&ec>parseFloat(cc)){bc=String(ec);break a}}bc=cc}.fc=bc;Mb={};.gc=function(a){return Nb(a,function(){return 0<=.ib(.fc,a)})};.ic=function(a){return Number(hc)>=a}; if(.q.document&&.y){var kc=ac();jc=kc?kc:parseInt(.fc,10)||void 0}else jc=void 0;var hc=jc; .lc=.yb();.mc=Jb()||.x("iPod");.nc=.x("iPad");.oc=.Bb();.pc=zb();.qc=.Ab()&&!.Kb(); var rc={},sc=null; .tc=function(a){this.b=0;this.f=a};.tc.prototype.next=function(){return this.b<this.f.length?{done:!1,value:this.f[this.b++]}:{done:!0,value:void 0}};"undefined"!=typeof Symbol&&(.tc.prototype[Symbol.iterator]=function(){return this}); var Ac;.z=function(){};.uc="function"==typeof Uint8Array; .A=function(a,c,d,e,f,g){a.b=null;c||(c=d?[d]:[]);a.F=d?String(d):void 0;a.w=0===d?-1:0;a.j=c;a:{d=a.j.length;c=-1;if(d&&(c=d-1,d=a.j[c],!(null===d||"object"!=typeof d||Array.isArray(d)||.uc&&d instanceof Uint8Array))){a.A=c-a.w;a.o=d;break a}-1<e?(a.A=Math.max(e,c+1-a.w),a.o=null):a.A=Number.MAX_VALUE}a.G={};if(f)for(e=0;e<f.length;e++)c=f[e],c<a.A?(c+=a.w,a.j[c]=a.j[c]||.vc):(.wc(a),a.o[c]=a.o[c]||.vc);if(g&&g.length)for(e=0;e<g.length;e++).xc(a,g[e])};.vc=[]; .wc=function(a){var c=a.A+a.w;a.j[c]||(a.o=a.j[c]={})};.B=function(a,c){if(c<a.A){c+=a.w;var d=a.j[c];return d===.vc?a.j[c]=[]:d}if(a.o)return d=a.o[c],d===.vc?a.o[c]=[]:d};.C=function(a,c){a=.B(a,c);return null==a?a:!!a};.E=function(a,c,d){a=.B(a,c);return null==a?d:a};.yc=function(a,c,d){a=.C(a,c);return null==a?d:a};.zc=function(a,c,d){a=.B(a,c);a=null==a?a:+a;return null==a?d:a};.F=function(a,c,d){c<a.A?a.j[c+a.w]=d:(.wc(a),a.o[c]=d);return a}; .xc=function(a,c){for(var d,e,f=0;f<c.length;f++){var g=c[f],h=.B(a,g);null!=h&&(d=g,e=h,.F(a,g,void 0))}return d?(.F(a,d,e),d):0};.G=function(a,c,d){a.b||(a.b={});if(!a.b[d]){var e=.B(a,d);e&&(a.b[d]=new c(e))}return a.b[d]};.I=function(a,c,d){a.b||(a.b={});var e=d?d.tb():d;a.b[c]=d;return .F(a,c,e)};Ac=function(a){if(a.b)for(var c in a.b){var d=a.b[c];if(.Ba(d))for(var e=0;e<d.length;e++)d[e]&&d[e].tb();else d&&d.tb()}};.z.prototype.tb=function(){Ac(this);return this.j}; .z.prototype.f=.uc?function(){var a=Uint8Array.prototype.toJSON;Uint8Array.prototype.toJSON=function(){var c;void 0===c&&(c=0);if(!sc){sc={};for(var d="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789".split(""),e=["+/=","+/","-=","-.","-"],f=0;5>f;f++){var g=d.concat(e[f].split(""));rc[f]=g;for(var h=0;h<g.length;h++){var l=g[h];void 0===sc[l]&&(sc[l]=h)}}}c=rc[c];d=[];for(e=0;e<this.length;e+=3){var m=this[e],n=(f=e+1<this.length)?this[e+1]:0;l=(g=e+2<this.length)?this[e+2]:0; h=m>>2;m=(m&3)<<4|n>>4;n=(n&15)<<2|l>>6;l&=63;g||(l=64,f||(n=64));d.push(c[h],c[m],c[n]||"",c[l]||"")}return d.join("")};try{return JSON.stringify(this.j&&this.tb(),Bc)}finally{Uint8Array.prototype.toJSON=a}}:function(){return JSON.stringify(this.j&&this.tb(),Bc)};var Bc=function(a,c){return"number"!==typeof c||!isNaN(c)&&Infinity!==c&&-Infinity!==c?c:String(c)};.z.prototype.toString=function(){Ac(this);return this.j.toString()}; .J=function(){this.Ta=this.Ta;this.Mb=this.Mb};.J.prototype.Ta=!1;.J.prototype.ka=function(){this.Ta||(this.Ta=!0,this.P())};.J.prototype.P=function(){if(this.Mb)for(;this.Mb.length;)this.Mb.shift()()}; var Cc=function(a){.A(this,a,0,-1,null,null)};.v(Cc,.z); .Dc=function(a){.A(this,a,0,-1,null,null)};.v(.Dc,.z); var Ec=function(a){.A(this,a,0,-1,null,null)};.v(Ec,.z); .Fc=function(a){.A(this,a,0,-1,null,null)};.v(.Fc,.z); .Gc=function(a){.A(this,a,0,-1,null,null)};.v(.Gc,.z); var Jc=function(a){.J.call(this);this.j=a;this.b=[];this.f={}};.v(Jc,.J);Jc.prototype.Bc=function(){for(var a=this.b.length,c=this.b,d=[],e=0;e<a;++e){var f=c[e].b();a:{var g=this.j;for(var h=f.split("."),l=h.length,m=0;m<l;++m)if(g[h[m]])g=g[h[m]];else{g=null;break a}g=g instanceof Function?g:null}if(g&&g!=this.f[f])try{c[e].Bc(g)}catch(n){}else d.push(c[e])}this.b=d.concat(c.slice(a))}; var Kc=function(a){.J.call(this);this.w=a;this.j=this.b=null;this.A=0;this.o={};this.f=!1;a=window.navigator.userAgent;0<=a.indexOf("MSIE")&&0<=a.indexOf("Trident")&&(a=/\b(?:MSIE|rv): ()|;)/.exec(a))&&a[1]&&9>parseFloat(a[1])&&(this.f=!0)};.p(Kc,.J);Kc.prototype.B=function(a,c){this.b=c;this.j=a;c.preventDefault?c.preventDefault():c.returnValue=!1}; .Lc=function(a){.A(this,a,0,-1,null,null)};.v(.Lc,.z); .Mc=function(a){.A(this,a,0,-1,null,null)};.v(.Mc,.z); .K=function(a,c){return null!=a?!!a:!!c};.L=function(a,c){void 0==c&&(c="");return null!=a?a:c};.Nc=function(a,c){void 0==c&&(c=0);return null!=a?a:c}; .Oc=function(){this.data={}};.Oc.prototype.b=function(){window.console&&window.console.log&&window.console.log("Log data: ",this.data)};.Oc.prototype.f=function(a){var c=[],d;for(d in this.data)c.push(encodeURIComponent(d)+"="+encodeURIComponent(String(this.data[d])));return("atyp=i&zx="+(new Date).getTime()+"&"+c.join("&")).substr(0,a)}; var Pc=function(a,c){this.data={};var d=.G(a,Ec,8)||new Ec;window.google&&window.google.kEI&&(this.data.ei=window.google.kEI);this.data.sei=.L(.B(a,10));this.data.ogf=.L(.B(d,3));var e=window.google&&window.google.sn?/.*hp$/.test(window.google.sn)?!1:!0:.K(.C(a,7));this.data.ogrp=e?"1":"";this.data.ogv=.L(.B(d,6))+"."+.L(.B(d,7));this.data.ogd=.L(.B(a,21));this.data.ogc=.L(.B(a,20));this.data.ogl=.L(.B(a,5));c&&(this.data.oggv=c)};.v(Pc,.Oc); .Qc=function(a,c,d,e,f){Pc.call(this,a,c);.Ta(this.data,{jexpid:.L(.B(a,9)),srcpg:"prop="+.L(.B(a,6)),jsr:Math.round(1/e),emsg:d.name+":"+d.message});if(f){f.sn&&(f.sn="og."+f.sn);for(var g in f)this.data[encodeURIComponent(g)]=f[g]}};.v(.Qc,Pc); var Rc,Uc,Tc;.Sc=function(a){var c=window.google&&window.google.logUrl?"":"https://www.google.com";c+="/gen_204?";c+=a.f(2040-c.length);Rc(_.ob(c))};Rc=function(a){var c=new Image;c.onerror=c.onload=c.onabort=function(){Tc in Uc&&delete Uc[Tc]};Uc[Tc++]=c;c.src=.mb(a)};Uc=[];Tc=0; .Vc=function(a){.A(this,a,0,-1,null,null)};.v(.Vc,.z); var bd;.Wc=function(){this.b={};this.f={}};.za(.Wc);.Yc=function(a){return .Xc(.Wc.ta(),a)};.$c=function(a,c){var d=.Wc.ta();if(a in d.b){if(d.b[a]!=c)throw new Zc(a);}else{d.b[a]=c;if(c=d.f[a])for(var e=0,f=c.length;e<f;e++)c[e].b(d.b,a);delete d.f[a]}};.Xc=function(a,c){if(c in a.b)return a.b[c];throw new ad(c);};bd=function(){.Ka.call(this)};.v(bd,.Ka);var Zc=function(){.Ka.call(this)};.v(Zc,bd);var ad=function(){.Ka.call(this)};.v(ad,bd); var ed=function(){var a=cd;this.B=dd;this.o=.Nc(.zc(a,2,.001),.001);this.A=.K(.C(a,1))&&Math.random()<this.o;this.w=.Nc(.E(a,3,1),1);this.j=0;this.b=this.f=null;.yc(a,4,!0)};ed.prototype.log=function(a,c){if(this.b){var d=new Cc;.F(d,1,a.message);.F(d,2,a.stack);.F(d,3,a.lineNumber);.F(d,5,1);var e=new .Dc;.I(e,40,d);this.b.log(98,e)}try{if(this.A&&this.j<this.w){try{var f=(this.f||.Xc(.Wc.ta(),"lm")).b(a,c)}catch(g){f=new .Qc(this.B,"quantum:gapiBuildLabel",a,this.o,c)}.Sc(f);this.j++}}catch(g){}}; var fd=[1,2,3,4,5,6,9,10,11,13,14,28,29,30,34,35,37,38,39,40,42,43,48,49,50,51,52,53,62,500],id=function(a,c,d,e,f,g){Pc.call(this,a,c);.Ta(this.data,{oge:e,ogex:.L(.B(a,9)),ogp:.L(.B(a,6)),ogsr:Math.round(1/(gd(e)?.Nc(.zc(d,3,1)):.Nc(.zc(d,2,1E-4)))),ogus:f});if(g){"ogw"in g&&(this.data.ogw=g.ogw,delete g.ogw);"ved"in g&&(this.data.ved=g.ved,delete g.ved);a=[];for(var h in g)0!=a.length&&a.push(","),a.push(hd(h)),a.push("."),a.push(hd(g[h]));g=a.join("");""!=g&&(this.data.ogad=g)}}; .v(id,Pc);var hd=function(a){a=String(a);return a.replace(".","%2E").replace(",","%2C")},jd=null,gd=function(a){if(!jd){jd={};for(var c=0;c<fd.length;c++)jd[fd[c]]=!0}return!!jd[a]}; var nd=function(){var a=kd,c=ld,d=md;this.A=a;this.w=c;this.o=.Nc(.zc(a,2,1E-4),1E-4);this.f=.Nc(.zc(a,3,1),1);c=Math.random();this.j=.K(.C(a,1))&&c<this.o;this.b=.K(.C(a,1))&&c<this.f;a=0;.K(.C(d,1))&&(a|=1);.K(.C(d,2))&&(a|=2);.K(.C(d,3))&&(a|=4);this.B=a};nd.prototype.log=function(a,c){try{if(gd(a)?this.b:this.j){var d=new id(this.w,"quantum:gapiBuildLabel",this.A,a,this.B,c);.Sc(d)}}catch(e){}}; var od=function(a){.A(this,a,0,-1,null,null)};.v(od,.z); var pd=function(a){this.b=a;this.f=void 0;this.j=[]};pd.prototype.then=function(a,c,d){this.j.push(new qd(a,c,d));.rd(this)};.sd=function(a,c){if(void 0!==a.b||void 0!==a.f)throw Error("n");a.b=c;.rd(a)};.rd=function(a){if(0<a.j.length){var c=void 0!==a.b,d=void 0!==a.f;if(c||d){c=c?a.o:a.w;d=a.j;a.j=[];try{(0,.Ma)(d,c,a)}catch(e){console.error(e)}}}};pd.prototype.o=function(a){a.f&&a.f.call(a.b,this.b)};pd.prototype.w=function(a){a.j&&a.j.call(a.b,this.f)}; var qd=function(a,c,d){this.f=a;this.j=c;this.b=d}; .td=function(){this.o=new pd;this.f=new pd;this.B=new pd;this.w=new pd;this.A=new pd;this.D=new pd;this.G=new pd;this.b=new pd;this.j=new pd};.za(.td);.k=.td.prototype;.k.Ah=function(){return this.o};.k.Ih=function(){return this.f};.k.Nh=function(){return this.B};.k.Hh=function(){return this.w};.k.Lh=function(){return this.A};.k.Oh=function(){return this.D};.k.Eh=function(){return this.G};.k.Fh=function(){return this.b};.k.sh=function(){return this.j}; var ud=function(a){.A(this,a,0,-1,null,null)};.v(ud,.z);.wd=function(){return .G(.vd,.Fc,1)};.xd=function(){return .G(.vd,.Gc,5)}; var yd;window.gbar_&&window.gbar_.CONFIG?yd=window.gbar_.CONFIG[0]||{}:yd=[];.vd=new ud(yd); var cd,dd,ld,md,kd;cd=.G(.vd,.Vc,3)||new .Vc;dd=.wd()||new .Fc;.zd=new ed;ld=.wd()||new .Fc;md=.xd()||new .Gc;kd=.G(.vd,od,4)||new od;.Ad=new nd; .u("gbar.DumpException",function(a){.zd?.zd.log(a):console.error(a)}); .Bd=new Kc(.zd); .Ad.log(8,{m:"BackCompat"==document.compatMode?"q":"s"});.u("gbar.A",pd);pd.prototype.aa=pd.prototype.then;.u("gbar.B",.td);.td.prototype.ba=.td.prototype.Ih;.td.prototype.bb=.td.prototype.Nh;.td.prototype.bd=.td.prototype.Lh;.td.prototype.be=.td.prototype.Oh;.td.prototype.bf=.td.prototype.Ah;.td.prototype.bg=.td.prototype.Hh;.td.prototype.bh=.td.prototype.Eh;.td.prototype.bi=.td.prototype.Fh;.td.prototype.bj=.td.prototype.sh;.u("gbar.a",.td.ta());var Cd=new Jc(window); .$c("api",Cd);var Dd=.xd()||new .Gc,Ed=.L(.B(Dd,8));window.__PVT=Ed;.$c("eq",_.Bd);

}catch(e){.DumpException(e)} try{ var Fd=function(a){.A(this,a,0,-1,null,null)};.v(Fd,.z); var Gd=function(){.J.call(this);this.f=[];this.b=[]};.p(Gd,.J);Gd.prototype.j=function(a,c){this.f.push({Pd:a,options:c})};Gd.prototype.init=function(a,c,d){window.gapi={};var e=window.jsl={};e.h=.L(.B(a,1));null!=.B(a,12)&&(e.dpo=.K(.C(a,12)));e.ms=.L(.B(a,2));e.m=.L(.B(a,3));e.l=[];.B(c,1)&&(a=.B(c,3))&&this.b.push(a);.B(d,1)&&(d=.B(d,2))&&this.b.push(d);.u("gapi.load",(0,.t)(this.j,this));return this}; var Hd=.G(.vd,.Lc,14)||new .Lc,Id=.G(.vd,_.Mc,9)||new .Mc,Jd=new Fd,Kd=new Gd;Kd.init(Hd,Id,Jd);.$c("gs",Kd);

}catch(e){_.DumpException(e)} })(this.gbar); // Google Inc. </script><script nonce="o2DFZIgoIAWlmfGcqlPOPg">DOCS_timing['ojle']=new Date().getTime();</script><script src="chrome-extension://ghbmnnjooekpmoecnnnilnnbdlolhkhi/page_embed_script.js" nonce="o2DFZIgoIAWlmfGcqlPOPg"></script><script nonce="o2DFZIgoIAWlmfGcqlPOPg">_docs_flag_initialData={"docs-ails":"docs_warm","docs-fwds":"docs_nf","docs-crs":"docs_crs_unk","docs-shdn":1,"docs-tfh":"","info_params":{"token":"AC4w5Vjq_rvAul7AKLd6kBdmC6l6laYrmA:1584621209255","includes_info_params":1},"docosEmbedApiJs":"//docs.google.com/comments/u/0/d/AAHRpnXuTqnMJqcpBKqgoBcrB6N40ncj_cLbXfHKTyOcv42xnvHfL5c2PrDOJrrI9AbgO_N6u20wKmQbcLzE7cgALFmNmM3b7sNtDOmBxE4jIHC_PJA_ZsHY/api/js?hl\u003den\u0026token\u003dAGNctVbkmPRl9-B8vDYV9ulKYecAjQDFsA:1584621209256","docos-eddmh":0,"docs-edcsp":1,"docs-ecp":1,"docs-encp":0,"docs-eohmo":0,"uls":"{"langs":["en"],"itcs":[],"override":"","selected":"","activated":false}","scotty_upload_url":"/upload/presentation/resumable","docs-net-udmi":500000,"docs-net-udpt":40000,"docs-net-udur":"/upload/blob/presentation","docs-net-usud":1,"docs-enable_feedback_svg":1,"enable_feedback":1,"docs-fpid":713634,"docs-fbid":"ExternalUserData","domain_type":"premium","customer_type":"dasher","docs-offline-aooioec":0,"lssv":7,"ncablmu":"https://docs.google.com/support/bin/static.py?page\u003dknown_issues.cs","docs-offline-oebp":"/offline/eventbusworker.js","docs-offline-swcmcd":30000,"docs-offline-swcmcul":10,"docs-offline-nnodi":100,"sgcn":"APISID","docs-localstore-lral":500,"eooodab":0,"docs-localstore-iort":10000,"docs-offline-dck":"AIzaSyDrRZPb_oNAJLpNm167axWK5i85cuYG_HQ","docs-offline-mobile-mms":15000000,"docs-offline-dbfuac":20000,"docs-extension-id":"ghbmnnjooekpmoecnnnilnnbdlolhkhi","docs-ewtaoe":1,"docs-offline-hsu":"docs.google.com/slides","dffm":["Calibri","Cambria","Syncopate","Lobster","Corsiva","Coming Soon","Shadows Into Light","Indie Flower","Tahoma","Crafty Girls","Proxima Nova","Roboto Condensed","Average","Lato","Source Code Pro","Old Standard TT","Alfa Slab One","Playfair Display","PT Sans Narrow","Muli","Montserrat","Roboto Slab","Raleway","Open Sans","Oswald","Amatic SC","Source Sans Pro","Roboto","Economica","Reenie Beenie","Stint Ultra Expanded","Alegreya","Merriweather"],"dffd":["Calibri","Cambria","Syncopate","Lobster","Corsiva","Coming Soon","Shadows Into Light","Indie Flower","Tahoma","Crafty Girls","Proxima Nova","Roboto Condensed","Average","Lato","Source Code Pro","Old Standard TT","Alfa Slab One","Playfair Display","PT Sans Narrow","Muli","Montserrat","Roboto Slab","Raleway","Open Sans","Oswald","Amatic SC","Source Sans Pro","Roboto","Economica","Reenie Beenie","Stint Ultra Expanded","Alegreya","Merriweather"],"docs-offline-toomem":0,"kixOfflineUrl":"/document","trixOfflineUrl":"/spreadsheet","trixOfflineUrlSuffix":"/offline/view","trixOnlineUrlSuffix":"/ccc","ritzOfflineUrl":"/spreadsheets","drawingsOfflineUrl":"/drawings","punchOfflineUrl":"/presentation","docos-eos":1,"dcau":"https://chrome.google.com/webstore/detail/ghbmnnjooekpmoecnnnilnnbdlolhkhi","docs-offline-lsuid":"u311fa260ca6d6266","docs-offline-ue":"bill.hood@contino.io","udurls":1,"docs-localstore-dom":0,"olbu":"/offline","oooap":"/optout","docs-offline-uifeo":"[\"u311fa260ca6d6266\",\"bill.hood@contino.io\",\"en\",1,1,0,\"contino.io\"]\n","icso":0,"docs-obsImUrl":"https://ssl.gstatic.com/docs/common/netcheck.gif","docs-offline-copy":0,"docs-clsvn":0,"docs-rlsvn":0,"docs-offline-desktop-mms":200000000,"ooi":{"u":"u311fa260ca6d6266","pa":true},"docs-offline-mrs":1073741824,"docs-offline-uebie":1,"docs-localstore-eplam":0,"docs-emasl":0,"fatra":1,"docs-sw-ecfr":0,"docs-cibs":500,"docs-sw-dsrpfs":1,"docs-sw-ecaorwnoc":1,"docs-sw-ecsfr":0,"docs-sw-eddf":0,"docs-sw-ednff":1,"docs-sw-eerf":1,"docs-eesl":0,"docs-offline-ehicr":1,"docs-offline-elab":1,"docs-offline-oepdp":0,"docs-offline-eoep":1,"docs-offline-eofhp":1,"docs-offline-eeooip":1,"docs-offline-eorlv":0,"docs-sw-eprfcf":0,"docs-sw-eprfcm":1,"docs-localstore-eracd":1,"docs-sw-ccrdu":1,"docs-localstore-eswlm":0,"docs-offline-esdp":1,"docs-sw-esrfr":1,"docs-sw-eswhfe":0,"docs-localstore-ilat":10000,"docs-lsltms":20000,"docs-sw-nfhms":10,"docs-offline-ouil":["u311fa260ca6d6266"],"docs-offline-optm":1000,"docs-sw-psfcc":0,"docs-sw-psfsr":0,"docs-swfe":0,"docs-offline-usea":0,"docs-sw-rpl":[],"docs-sw-cache-prefix":"presentation","docs-ewwff":1,"docs-eadfso":0,"docs-estff":1,"docs-efff":1,"docs-text-ewf":1,"docs-text-ewfird":0,"docs-text-wfird":10,"docs-wfsl":["ca","da","de","en","es","fi","fr","it","nl","no","pt","sv"],"docs-efpsf":1,"docs-efpsp":1,"docs-ejsfawf":0,"docs-eksfawf":0,"docs-edfn":1,"docs-efsd":1,"docs-localstore-eidsilfm":0,"docs-esreff":0,"docs-ecfdsfj":0,"docs-eea":0,"docs-ecci":1,"docs-idfmp":1,"docs-cclt":58,"docs-esi":0,"ilcm":{"eui":"ADFN-cvqh7CqPrG_44bi8F1VUSrl6HCE0uaah71sKpQ6DckM8K4_usgy93Yl9d3yUh8Omy3tElQn","je":1,"sstu":1584621209258000,"si":"CKaToILGpugCFfPC0gQd5DsJBw","gsc":1,"ei":[5705087,5707832,5701641,5703871,5703523,5705533,5710375,5705995,5703649,5702084,5701461,5708061,5702027,5703339,5706121,5700100,5709161,5707711,5703022,5705633,5702139,5709872,5709201,5704589,5707605,5705625,5703535,5704661,5705279,5707449,5701816,5708927,5705915,5707681,5707051,5707800,5707397,5702023,5705255,5705585,5703006,5710496,5705082,5701857,5707117,5705693,5705043,5703575,5707949,5709451,5703202,5708826,5703451,5704561,5704257,5703291,5706015,5705883,5707445,5708946,5702706,5711038,5704196,5708878,5706621,5702402,5705858,5700028,5706109,5707369,5705103,5707874,5706355,5704572,5706499,5709480,5706641,5706055,5706363,5705457,5707204,5708930,5702912,5703066,5701296,5704995,5704528,5703661,5707241,5707715,5703737,5700103,5702741,5709014,5710367,5700744,5704055,5705841,5706999,5702628,5703983,5702632,5704273,5706467,5708462,5702459,5700933,5704729,5705621,5701449,5703267,5703792,5708754,5701429,5707063,5704399,5701853,5707257,5703307,5701445,5701034,5704339,5708869,5702620,5700333,5700201,5706359,5704883,5705773,5708950,5700019,5703855,5700133,5705581,5708393,5702445,5709861,5705557,5704448,5700808,5704160,5705239,5709978,5707840,5704879,5703387,5703762,5703182,5707870,5706523,5700676,5704709,5706791,5704544,5708093,5704645,5707047,5706061,5700036,5703815,5706601,5708516,5705091,5703950,5701602,5705745,5706270,5702392,5701650,5703319,5704851,5704269,5701915,5707413,5705023,5704301,5705219,5710770,5707695,5704444,5703030,5705983,5706743,5707233,5701425,5702640,5703186,5700176,5701594,5705805,5700756,5710492,5705927,5703839,5706915,5700057,5708349,5709596,5701393,5703615,5701899,5703479,5704641,5706300,5710193,5704939,5704875,5708155,5701532,5707377,5704899,5703206,5705183,5701844,5701889,5710189,5709701,5710371,5702537,5710641,5709185,5705401,5704553,5704039,5700446,5701335,5700114,5705697,5707477,5702845,5705895,5707986,5706375,5701812,5705837,5707417,5703543,5705911,5706101,5708041,5701731,5704863,5707953,5706011,5702097,5707425,5704419,5705317,5700893,5706261,5704821,5703531,5709197,5702873,5701453,5700016,5705561,5706423,5707569,5704907,5702235,5705673,5702636,5705215,5703754,5707165,5706507,5706125,5701734,5700952,5706391,5708942,5706286,5707289,5705809,5707657,5701022,5705887,5702441,5708235,5704144,5706225,5706463,5709137,5701067,5709801,5705147,5709193,5707466,5702511,5704585,5700836,5709817,5705589,5705545,5708405,5704027,5700832,5707091,5700042,5705461,5707331,5705353,5708365,5701715,5707741,5707882,5702662,5704063,5708163,5706003,5709825,5710359,5707345,5705027,5707473,5705313,5704387,5709106,5703190,5700551,5706043,5708838,5708449,5705047,5709411,5702785,5706319,5709725,5706933,5703879,5709209,5704391,5706229,5703921,5703705,5709278,5708037,5700650,5704289,5700884,5703913,5701228,5700937,5703110],"crc":1,"cvi":[3300102,3300132,3300161,3313321,3314999,3315531,3315663,3315772,3316375,3316461,3317006,3317401]},"docs-ccdil":1,"docs-eil":1,"docs-eoi":1,"docs-eopfov2":0,"docs-eopfo":1,"docs-ce":1,"docs-cei":{"i":[5705087,5707832,5701641,5703871,5703523,5705533,5710375,5705995,5703649,5702084,5701461,5708061,5702027,5703339,5706121,5700100,5709161,5707711,5703022,5705633,5702139,5709872,5709201,5704589,5707605,5705625,5703535,5704661,5705279,5707449,5701816,5708927,5705915,5707681,5707051,5707800,5707397,5702023,5705255,5705585,5703006,5710496,5705082,5701857,5707117,5705693,5705043,5703575,5707949,5709451,5703202,5708826,5703451,5704561,5704257,5703291,5706015,5705883,5707445,5708946,5702706,5711038,5704196,5708878,5706621,5702402,5705858,5700028,5706109,5707369,5705103,5707874,5706355,5704572,5706499,5709480,5706641,5706055,5706363,5705457,5707204,5708930,5702912,5703066,5701296,5704995,5704528,5703661,5707241,5707715,5703737,5700103,5702741,5709014,5710367,5700744,5704055,5705841,5706999,5702628,5703983,5702632,5704273,5706467,5708462,5702459,5700933,5704729,5705621,5701449,5703267,5703792,5708754,5701429,5707063,5704399,5701853,5707257,5703307,5701445,5701034,5704339,5708869,5702620,5700333,5700201,5706359,5704883,5705773,5708950,5700019,5703855,5700133,5705581,5708393,5702445,5709861,5705557,5704448,5700808,5704160,5705239,5709978,5707840,5704879,5703387,5703762,5703182,5707870,5706523,5700676,5704709,5706791,5704544,5708093,5704645,5707047,5706061,5700036,5703815,5706601,5708516,5705091,5703950,5701602,5705745,5706270,5702392,5701650,5703319,5704851,5704269,5701915,5707413,5705023,5704301,5705219,5710770,5707695,5704444,5703030,5705983,5706743,5707233,5701425,5702640,5703186,5700176,5701594,5705805,5700756,5710492,5705927,5703839,5706915,5700057,5708349,5709596,5701393,5703615,5701899,5703479,5704641,5706300,5710193,5704939,5704875,5708155,5701532,5707377,5704899,5703206,5705183,5701844,5701889,5710189,5709701,5710371,5702537,5710641,5709185,5705401,5704553,5704039,5700446,5701335,5700114,5705697,5707477,5702845,5705895,5707986,5706375,5701812,5705837,5707417,5703543,5705911,5706101,5708041,5701731,5704863,5707953,5706011,5702097,5707425,5704419,5705317,5700893,5706261,5704821,5703531,5709197,5702873,5701453,5700016,5705561,5706423,5707569,5704907,5702235,5705673,5702636,5705215,5703754,5707165,5706507,5706125,5701734,5700952,5706391,5708942,5706286,5707289,5705809,5707657,5701022,5705887,5702441,5708235,5704144,5706225,5706463,5709137,5701067,5709801,5705147,5709193,5707466,5702511,5704585,5700836,5709817,5705589,5705545,5708405,5704027,5700832,5707091,5700042,5705461,5707331,5705353,5708365,5701715,5707741,5707882,5702662,5704063,5708163,5706003,5709825,5710359,5707345,5705027,5707473,5705313,5704387,5709106,5703190,5700551,5706043,5708838,5708449,5705047,5709411,5702785,5706319,5709725,5706933,5703879,5709209,5704391,5706229,5703921,5703705,5709278,5708037,5700650,5704289,5700884,5703913,5701228,5700937,5703110],"cf":{"enable_homescreen_priority_docs":[100,null,null,null,1],"enable_homescreen_priority_docs_promo":[null,0],"enable_homescreen_action_items_structured_query":[100,null,null,null,1]}},"docs-hatsfl":"https://www.google.com/insights/consumersurveys/async_survey?site\u003dirae4o5j6xld3bswhwomdtr4u4\u0026ctry\u0026uilang\u003den\u0026ui\u003d1","docs-hatst":0,"docs-hatserl":1,"docs-hatsl":"","docs-enau":0,"docs-enaf":0,"docs-enafd":0,"docs-sadbu":0,"docs-aecssr":0,"docs-aicob":0,"docs-eabmo":0,"docs-ascqn":1,"docs-asfl":[],"docs-api-keys":{"cse_drive_client_key":"AIzaSyBjgF9-ZACSr8CT5RAJK4uwSUdc4BucTmo","docs_apiary_client_key":"AIzaSyBfKYKXN2w_hxv9HNOUNJjp6xZYbY_OUcY","explore_client_api_key":"AIzaSyDEvWbVxMh3WrjZWKpinHvg8-5ovq1spmE","homescreen_drive_client_key":"AIzaSyATHIAaUu3gr8gHWvOF5xmwb_ZrJEcwEIg","minpicker_drive_client_key":"AIzaSyB_GjHsZBoJ4XZ0V_iDwQGrPkK47kurP74","support_content_api_key":"AIzaSyCizDgaOY1dni2M3dFtYzslwsXj7iAGBxs"},"buildLabel":"sketchy_2020.11-Tue_RC01","docs-show_debug_info":0,"ondlburl":"//docs.google.com","drive_url":"//drive.google.com/u/0?usp\u003dslides_web","app_url":"https://docs.google.com/presentation/u/0/?authuser\u003d0\u0026usp\u003dslides_web","docs-mid":2048,"docs-eicd":0,"docs-icdmt":[],"docs-sup":"/presentation/u/0","docs-seu":"https://docs.google.com/presentation/d/1fqtCE8iTxzaf1ZgcICB_qb4cjEaFoOuXnj9xG6PlMH8/edit","docs-crp":"/presentation/d/1fqtCE8iTxzaf1ZgcICB_qb4cjEaFoOuXnj9xG6PlMH8/edit","docs-ecvca":1,"docs-uptc":["lsrp","ca","sh","fws","dods","gxids","noreplica","ths","tam","ntd","app_install_xsrf_token","ouid","sle","dl","hi","popr","sdsid","usp","urp","utm_source","utm_medium","utm_campaign","utm_term","utm_content","aaac"],"docs-doddn":"Contino","docs-dodn":"contino.io","docs-uddn":"Contino","docs-udn":"contino.io","docs-cwsd":"https://clients5.google.com","docs-gsmd":"https://gsuite.google.com","docs-epil":1,"docs-esmp":0,"docs-enpdb":0,"docs-vcurl":["/static/presentation/client/css/870409703-projector_viewer_css_ltr.css"],"docs-msoil":"docs_spanner","docs-gsoil":"docs_gsus","docs-fsd":0,"docs-pcuctarc":1,"docs-deeelmu":"https://support.google.com/drive?p\u003dsaving_errors","docs-lbefm":0,"docs-lbesty":0,"docs-tafl":1,"promo_url":"","promo_second_url":"","promo_title":"Show link details","promo_content_html":"Google Docs gives you more information about the links in your documents. You can turn this off in Preferences.","promo_more_element_text":"Preferences","promo_second_more_element_text":"","promo_element_id":"docs-link-bubble","promo_orientation":2,"promo_arrow_alignment":2,"promo_show_on_click":0,"promo_hide_arrow":0,"promo_show_on_load":0,"promo_id_for_preference":"linkPreviewsDetails","promo_mark_dismissed_on_show":1,"promo_use_global_preference":0,"promo_close_button_text":"Got it","promo_action_id":"docs-preferences","promo_impression_id":41,"promo_is_contextual":1,"docs-hpi":"","docs-thtea":0,"docs-tdc":"[{"id":"0:Basics","name":"Basics","deletedIds":[]},{"id":"0:Brochures","name":"Brochures \u0026 newsletters","deletedIds":[]},{"id":"0:Calendars","name":"Calendars \u0026 schedules","deletedIds":[]},{"id":"0:Business","name":"Contracts, onboarding, and other forms","deletedIds":[]},{"id":"0:Finance","name":"Finance \u0026 accounting","deletedIds":[]},{"id":"0:Letters","name":"Letters","deletedIds":[]},{"id":"0:Reports","name":"Reports \u0026 proposals","deletedIds":[]},{"id":"0:Planners","name":"Trackers","deletedIds":[]},{"id":"Unparented","name":"Uncategorized","deletedIds":["0:NoTemplateCategories"]}]","docs-ttt":0,"docs-tcdtc":"[]","docs-mtdl":500,"docs-ividtg":0,"docs-tdcp":0,"docs-tdvc":1,"docs-tmbp":0,"docs-hetsdd":0,"docs-hetsdiaow":1,"docs-tintd":0,"docs-eesaru":"https://enterprisesearch-pa.googleapis.com","docs-explore":1,"docs-eef":0,"docs-emodo":0,"docs-eees":1,"docs-eeris":0,"docs-eerisf":0,"docs-dens":0,"docs-erispe":0,"docs-eerisdd":0,"docs-eeriil":1,"docs-eerisiil":0,"docs-eecicv":1,"docs-eezsicv":0,"docs-eetsp":0,"docs-eecip":1,"docs-ercltis":0,"docs-eedcb":0,"docs-eevm":0,"docs-eelgsf":0,"docs-eenlqa":1,"docs-eeess":[1,2,4,5],"docs-erdeffo":0,"docs-ercad":0,"docs-elste":0,"docs-els":1,"docs-dhcp":0,"docs-dhcf":0,"docs-ebufdd":0,"docs-eplffdd":0,"docs-esffdd":0,"docs-evpfdd":0,"docs-sdoctglmu":"https://support.google.com/drive?p\u003dwork_with_files","docs-sdsnfl":0,"docs-sdttfu":"https://google.qualtrics.com/jfe/form/SV_elfeVSCAUMppmjr?Source\u003dC","docs-sdskpfl":0,"docs-sddfu":"","docs-sdun":1,"docs-isd":0,"docs-elpt":1,"docs-eodlim":0,"docs-elpm3":1,"docs-edp2":0,"docs-upatwt":1,"docs-etodlim":0,"docs-eplp":1,"docs-elpom":0,"docs-uatwt":1,"docs-iidpm":0,"docs-egms":1,"docs-egmd":1,"docs-emcp":0,"docs-emf":1,"docs-emcs":1,"docs-ema":1,"docs-eme":0,"docs-emi":1,"docs-al":[1,1,1,1,1],"docs-deculmu":"https://support.google.com/drive?p\u003dsaving_errors","docs-deuoflmu":"https://support.google.com/drive?p\u003dMO_feature_troubleshoot","docs-debulmu":"https://support.google.com/docs/answer/6055139","docs-deodlmu":"https://support.google.com/drive?p\u003dcomment_troubleshoot","docs-ndt":"Untitled presentation","docs-prn":"Google Slides","docs-emtbi":1,"docs-as":"","docs-etdimo":1,"docs-mdck":"","docs-etiff":0,"docs-mriim":1800000,"docs-eccbs":0,"docos-sosj":0,"docs-rlmp":1,"docs-mmpt":9000,"docs-erd":1,"docs-erfar":0,"docs-ensb":1,"docs-ddts":1,"docs-uootuns":1,"docs-amawso":1,"docs-mdso":0,"docs-ofmpp":1,"docs-anlpfdo":1,"docs-phe":"https://contacts.google.com","docs-pid":"110651073584326284574","docs-ebbouf":0,"docs-efs":0,"docs-ricocpb":0,"docs-eali":1,"docs-etauihm":1,"docs-eiap":1,"docs-egs":1,"docs-eeott":0,"docs-epat":0,"docs-eics":1,"docos-plss":0,"docs-hft":"","docs-edsi":0,"docs-ececs":0,"docs-eslars":1,"docs-edp":0,"docs-edlo":0,"docs-eem":0,"docs-offline-enccpd":1,"docs-edsl":0,"docs-efsii":0,"docs-elcfd":0,"docs-ejtlr":0,"docs-edmitm":0,"docs-enjec":0,"docs-ehdr":1,"docs-egmid":1,"docs-efmsh":1,"docs-elri":1,"ecid":1,"docs-eir":1,"docs-edll":1,"server_time_ms":1584621209266,"gaia_session_id":"0","app-bc":"#f4b400","enable_iframed_embed_api":1,"docs-fut":"//drive.google.com/u/0?usp\u003dslides_web#folders/{folderId}","docs-usp":"slides_web","docs-isb":1,"docs-enct":0,"docs-agdc":0,"docs-anddc":0,"docs-adndldc":0,"docs-efts":0,"docs-cn":"Contino","docs-dpftr":0,"docs-dwc":1,"docs-depquafr":1,"docs-elsr":1,"docs-elmc":0,"docs-frbanmc":1,"docs-rldce":1,"docs-sasic":1,"docs-dom":0,"docs-ebidu":0,"docs-edamc":1,"docs-edomic":1,"docs-eddm":0,"docs-efoecc":1,"docs-fwd":0,"docs-elds":0,"docs-mcssa":0,"docs-eph":1,"docs-ephocml":0,"docs-eppd":1,"docs-tdd":0,"docs-jern":"edit","docs-mib":52428800,"docs-mip":25000000,"docs-rsc":"","docs-ssi":0,"docs-uoci":"01dqpio3","docs-gth":"Go to Slides home screen","docs-po":"https://docs.google.com","docs-to":"https://docs.google.com","projector_view_url":"https://drive.google.com/file/d/1fqtCE8iTxzaf1ZgcICB_qb4cjEaFoOuXnj9xG6PlMH8/view?usp\u003ddocs_web","docs-seso":1,"docs-eastdfm":1,"docs-eastd":0,"docs-eoes":1,"docs-eoespr":0,"docs-dpiuf":0,"opendv":1,"onePickImportDocumentUrl":"","opmbs":52428800,"opmpd":5000,"opbu":"https://docs.google.com/picker","opru":"https://docs.google.com/relay.html","opdu":1,"opccp":0,"ophi":"punch","opst":"000770F203F253D51184E33212E6E69B5349EFF85478F4873D::1584621209268","opuci":"presentation","docs-eopiiv2":1,"docs-dm":"application/vnd.google-apps.punch","docs-ndsom":["application/vnd.openxmlformats-officedocument.presentationml.presentation","application/vnd.ms-powerpoint"],"docs-sdsom":["application/vnd.openxmlformats-officedocument.presentationml.presentation","application/vnd.ms-powerpoint"],"docs-lfui":1,"maestro_domain":"https://script.google.com","maestro_container_token":"ACjPJvG0g_xZ2GAoIbLrZSSOOr-PxOTS2qsQfqcD311j8E2kS9FNcNEjIUtGKPZ4JsLhpKeBbXkUeU60oxlVN04KLH0np-O36toA5pJbufst83BmOPRJwqSzGo_6VsrsXuWa05rhqZ_tPNm9","maestro_script_editor_uri":"https://script.google.com/macros/start?mid\u003dACjPJvG0g_xZ2GAoIbLrZSSOOr-PxOTS2qsQfqcD311j8E2kS9FNcNEjIUtGKPZ4JsLhpKeBbXkUeU60oxlVN04KLH0np-O36toA5pJbufst83BmOPRJwqSzGo_6VsrsXuWa05rhqZ_tPNm9\u0026uiv\u003d2","maestro_new_project_uri":"https://script.google.com/macros/create?mid\u003dACjPJvG0g_xZ2GAoIbLrZSSOOr-PxOTS2qsQfqcD311j8E2kS9FNcNEjIUtGKPZ4JsLhpKeBbXkUeU60oxlVN04KLH0np-O36toA5pJbufst83BmOPRJwqSzGo_6VsrsXuWa05rhqZ_tPNm9\u0026uiv\u003d2","maestro_script_gallery_uri":"https://docs.google.com/macros/scriptGalleryPanel?mid\u003dACjPJvG0g_xZ2GAoIbLrZSSOOr-PxOTS2qsQfqcD311j8E2kS9FNcNEjIUtGKPZ4JsLhpKeBbXkUeU60oxlVN04KLH0np-O36toA5pJbufst83BmOPRJwqSzGo_6VsrsXuWa05rhqZ_tPNm9\u0026uiv\u003d2","maestro_script_manager_uri":"https://script.google.com/macros/scriptManagerPanel?mid\u003dACjPJvG0g_xZ2GAoIbLrZSSOOr-PxOTS2qsQfqcD311j8E2kS9FNcNEjIUtGKPZ4JsLhpKeBbXkUeU60oxlVN04KLH0np-O36toA5pJbufst83BmOPRJwqSzGo_6VsrsXuWa05rhqZ_tPNm9\u0026uiv\u003d2","enable_maestro":1,"docs-isctp":0,"docs-emae":1,"mae-cwssw":0,"mae-aoeba":1,"mae-esme":0,"mae-seitd":1,"docs-emgsmw":1,"docs-emib":1,"docs-mhea":1,"docs-pn":362,"docs-idu":0,"docs-ct":"s","docs-rn":449874062,"docs_egru":0,"docs-ect":1,"docs-edt":1,"docs-hecud":1,"docs-heoi":1,"docs-urouih":0,"docs-hue":"bill.hood@contino.io","docs-offline-uiaffd":1,"docs-offline-uoia":1,"docs-cpv":0,"docs-ceci":1,"docs-cpks":["[\"819a3eb0e7e794c5\",\"AAVFbsElxxNoTt9R9Roxrp8hC2qh2sBPNcoHZE9ZdnNsoT38HqdWYVnVwGRexZ8fJA2DgipauJ88\"]\n","[\"695bd5e54e3113d4\",\"AK2fzyBqiKf6umMKI4a1hx4irjdqJM2sgBYiMGLo6CuScNTGgvXsa6KNMAx59E/bGUyfc1SmI+lz\"]\n"],"docs-hasid":"Slides","docs-hdod":"docs.google.com","docs-hdck":"","docs-hucs":1,"docs-hufcm":0,"docs-hunca":1,"docs-cci":"PROD","docs-caru":"https://clients6.google.com","docs-cbau":"https://drive.google.com","docs-cfru":"https://lh3.google.com","docs-ctcu":"https://client-channel.google.com/client-channel/client","docs-ctsu":"https://clients4.google.com/invalidation/lcs/client","docs-ctak":"AIzaSyAWGrfCCr7albM3lmCc937gx4uIphbpeKQ","docs-cse-ocu":"https://krahsc.google.com/callback","jobset":"prod","docs-eafn":0,"docs-nad":"sites.google.com","docs-epcc":0,"docs-dlpe":1,"docs-eeaap":0,"docs_abuse_link":"https://docs.google.com/u/0/abuse?id\u003d1fqtCE8iTxzaf1ZgcICB_qb4cjEaFoOuXnj9xG6PlMH8","docs-emddi":0,"docs-ecfr":1,"enable_omnibox_help_menu":1,"enable_omnibox":1,"docs-cvmo":-1,"docs-vc":0.0,"docs-vma":4,"docs-evt":1,"docs-evtti":0,"docs-evtar":0,"docs-evtap":0,"docs-eavp":0,"docs-sef":0,"docs-senu":0,"docs-seepc":0,"docs-sebo":0,"docs-sesc":0,"docs-stogfc":0,"docs-slsmor":0,"docs-slssfil":0,"docs-senfd":0,"docs-senffom":0,"docs-siofs":0,"docs-ssfotl":0,"docs-seaf":0,"docs-esbttf":0,"docs-sluts":0,"docs-slutsowb":0,"docs-gscqn":1,"docs-gsfl":[],"docs-ehsr":1,"docs-aii":1,"docs-asol":0,"docs-aaor":2,"docs-af":0,"docs-act":0,"docs-ac":"[\"docs_analytics_capabilities\",1,1,1,null,null,null,0,[\"docs_analytics_data_access\",1,1,1,1,0]\n,0]\n","docs-eaui":0,"docs-eam":0,"docs-ebroc":0,"docs-ealre":1,"docs-etbws":0,"docs-etblbi":0,"docs-etauo":0,"docs-ecad":1,"docs-eebv":1,"docs-eebvt":0,"docs-emsib":0,"docs-eiib":0,"docs-eblcas":0,"docs-eeb":1,"docs-eqsruatbu":0,"docs-se":0,"docs-eclh":0,"docs-comp":1,"docs-comp-gac":[null,null,[[[2,"https://keep.google.com/companion",null,"https://www.gstatic.com/companion/icon_assets/keep_2x.png","https://keep.google.com",1,null,0,null,null,[],[],[],null,[],null,[]]],[[4,"https://tasks.google.com/embed/",null,"https://www.gstatic.com/companion/icon_assets/tasks2_2x.png",null,1,null,0,null,null,[],[],[],null,[],null,[1]]],[[6,"https://calendar.google.com/calendar/companion",null,"https://www.gstatic.com/companion/icon_assets/calendar_2x.png","https://calendar.google.com/calendar/r",1,null,0,null,null,[],[],["^https?://calendar\\.google\\.com/calendar/r/day/(\\d{4})\\/(\\d{1,2})\\/(\\d{1,2})\\?linksource\\\u003dgh$","^https?://calendar\\.google\\.com/calendar/r(/day)?\\?eid\\\u003d([^\u0026]+)\u0026linksource\\\u003dgh$","^https?://calendar\\.google\\.com/calendar/r/eventedit.*[\\?\\\u0026]linksource\\\u003dgh.*$","^https?://www\\.google\\.com/calendar/render\\?linksource\\\u003dgh(.*[\\\u0026]action\\\u003dTEMPLATE.*|$)"],null,["linksource\u003dcc"],1,[]]]]],"docs-egf":0,"docs-spdy":1,"xdbcfAllowHostNamePrefix":1,"xdbcfAllowXpc":1,"docs-iror":0,"sketchy-escslv":0,"docs-saap":0,"docs-aadn":"","docs-aae":"","docs-aapu":"","docs-aacu":"","docs-ebuspbs":1,"docs-ebuspi":15000,"docs-eebu":1,"docs-ebuspmska":300000,"enable_csi":1,"csi_service_name":"apps_presentations","sketchy-mjts":0,"sketchy-emcc":0,"sketchy-newtableui-browser":0,"sketchy-ecg-mobile":0,"sketchy-rpcs":1,"sketchy-mdocos":0,"sketchy-dts":0,"sketchy-enss":0,"sketchy-uncpr":0,"sketchy-eppss":0,"sketchy-epwfird":0,"sketchy-pwfird":10,"docs-ar":1,"docs-lvrfio":0,"docs-cslvca":1,"sketchy-edvdf":1,"sketchy-dvgvigr":0,"sketchy-eau":1,"sketchy-eavoi":1,"sketchy-alrm":3,"sketchy-ear":1,"sketchy-avlrm":3,"docs-text-etsrdpn":1,"docs-text-etsrds":1,"docs-elslms":1,"docs-text-ecsss":0,"docs-text-elhss":0,"docs-erpncp":0,"docs-espncp":0,"docs-text-empos":0,"docs-text-edtui":0,"docs-essdrf":0,"docs-eetpsfcp":0,"docs-text-ehfdc":0,"docs-text-etp":1,"docs-text-egbbfe":0,"docs-text-eiblap":1,"docs-etshc":0,"docs-text-etbso":1,"docs-text-ftls":0,"docs-ebcw":0,"docs-text-eapfcp":0,"docs-text-edms":0,"docs-text-eaeu":0,"docs-text-ewaoc":0,"docs-esebes":1,"docs-text-ecls":0,"docs-text-epa":0,"docs-text-erscf":0,"docs-text-elsltou":1,"docs-euoftm":0,"docs-espsfcp":0,"docs-text-ecpi":1,"docs-text-lbafwt":1,"docs-text-elsltol":1,"docs-text-eael":1,"docs-text-tpbs":10,"docs-text-rawssagp":0,"docs-etbe":0,"docs-text-ehlb":0,"docs-text-essagp":0,"sketchy-epsadbd":1,"sketchy-eitls":1,"sketchy-eisg":0,"sketchy-etblbfs":0,"sketchy-eclspfm":1,"sketchy-eroi":0,"sketchy-efsdfm":1,"sketchy-effascv":0,"sketchy-wlt":"5000","sketchy-etar":0,"sketchy-itbwmff":1,"sketchy-eiaps":1,"sketchy-eaie":0,"docs-efsid":0,"sketchy-emsu":1,"sketchy-euyoopr":1,"sketchy-etnr":1,"sketchy-etarfns":0,"sketchy-eed":0,"enable_cloudboard_document_snapshot":0,"gview_provider_id":"pch","sharing_service_name":"punch","sketchy-exps":[28,34,56,58],"sketchy-convert_shape_text_props":0,"sketchy-application_scope":2,"enable_docos":1,"docs-text-elei":1,"docs-text-encp":1,"docs-esntetc":1,"sketchy-esi":1,"sketchy-ipm":0,"sketchy-esto":0,"docs-rcm":{"/static/presentation/client/js/290399066-editor_js_prod_app.js":3,"/static/presentation/client/js/1637455757-editor_js_prod_core.js":2,"/static/presentation/client/css/2977862657-editor_css_ltr.css":1,"/static/presentation/client/js/2252010736-viewer_core.js":5,"/static/presentation/client/css/3758633964-viewer_css_ltr.css":6},"sketchy-edrs":1,"sketchy-ead":0,"sketchy-esvt":0,"sketchy-escvc":1,"sketchy-estlfor":1,"sketchy-etstcp":0,"sketchy-rstcic":0,"sketchy-rssrs":0,"sketchy-dsoscv":0,"sketchy-ipu":0,"sketchy-his":0,"sketchy-sftp":0,"sketchy-vatl":0,"sketchy-evt":1,"docs-esdur":1,"docs-eptz":0,"docs-edd":0,"docs-etie":0,"docs-an":0,"docs-esia":0,"docs-eesi":0,"punch_import_slides":1,"punch_import_slides_mimetypes":"application/vnd.openxmlformats-officedocument.presentationml.presentation,application/vnd.ms-powerpoint,application/vnd.google-apps.punch","punch_import_theme":1,"punch_import_theme_mimetypes":"application/vnd.openxmlformats-officedocument.presentationml.presentation,application/vnd.ms-powerpoint,application/vnd.google-apps.punch","punch-enable_qanda_unsigned_user_name":0,"punch-cart":30000,"punch-csctt":5000,"punch-isprtt":300000,"punch-eisp":0,"punch-eis":0,"docs-eegbr":0,"punch-ekdv":0,"punch-makdv":5,"punch-dtsa":0,"punch-edtsc":0,"punch-abl":"","punch-alsc":[58,2,100,1,0,null,null,null,1,1,null,1,1.2,1,1,40,20,15,1,1,20,1,null,null,null,null,null,null,null,null,null,null,null,null,null,1,null,null,null,null,null,null,null,1,3,1,220,3,"bt_exp",1,1,0.305796],"sketchy-ed":1,"sketchy-eo":1,"punch-etfv":0,"punch-egs":0,"punch-ecsnoc":1,"punch-ecss":1,"punch-ehcwp":0,"punch-evip":0,"punch-creulas":0,"punch-vjef":0,"punch_cast_v2_source":"https://www.gstatic.com/cv/js/sender/v1/cast_sender.js","punch-efep":0,"punch-efat":0,"punch-dsu":"https://docs.google.com/document","punch_intro_promo_link":"https://support.google.com/docs/?p\u003dnew_presentations","punch_unsupported_animation_link":"https://support.google.com/docs/?p\u003dadd_animations","punch_import_slides_error_link":"https://docs.google.com/support/answer/1694982","punch_import_theme_error_link":"https://support.google.com/drive/?p\u003dslides_themes","document_type":"punch","sketchy-error_base_key":"punch-e","docs-text-usc":1,"punch-effp":0,"punch-epvilmifl":1,"punch-evfw":0,"punch-wlt":"","punch-eabsnl":1,"punch-vrp":0,"punch-vlmwmrr":2,"punch-vlmwmrif":5,"punch-eabvcw":1,"punch-creopvh":0,"punch-pvilmifl":6,"punch-evlmwd":1,"punch-crlc3tsc":0,"punch-fvsr":0,"punch-eabsnlfab":1,"sketchy-ewl":1,"viewer_server_action":"present","viewer_local_action":"localpresent","docs-smheo":1,"docs-mwid":1,"punch-crpvh":0,"punch-vru":["/static/presentation/client/js/2252010736-viewer_core.js","/static/presentation/client/css/3758633964-viewer_css_ltr.css"],"available_themes":[["simple-light-2",0,"Simple Light",0],["simple-dark-2",1,"Simple Dark",0],["streamline",2,"Streamline",0],["focus",3,"Focus",0],["shift",4,"Shift",0],["momentum",5,"Momentum",0],["paradigm",6,"Paradigm",0],["material",7,"Material",0],["swiss-2",8,"Swiss",0],["beach-day",9,"Beach Day",0],["slate",10,"Slate",0],["coral",11,"Coral",0],["spearmint",12,"Spearmint",0],["plum",13,"Plum",0],["paperback",14,"Paperback",0],["modern-writer",15,"Modern Writer",0],["geometric",16,"Geometric",0],["pop",17,"Pop",0],["luxe",18,"Luxe",0],["blue-gold",19,"Blue \u0026 Gold",0],["tropic",20,"Tropic",0],["marina",21,"Marina",0],["gameday",22,"Gameday",0]],"punch-tv":29,"docs-smv":4,"docs-dt":"punch","mobilenative-ecbc":0,"docs-cnv-doc":0,"enable_download_as_odp":1,"docs-dcr":0,"docosKeyData":["//docs.google.com/static/comments/client/js/474983849-docos_binary_i18n.js",["","","","",""],0,null,null,"0",null,0,["Bill Hood",null,"//lh3.googleusercontent.com/a-/AOh14GgQRAIdzvQ5-es4fUGMY9vsoCsQ4tvuYClyzDav\u003ds96-k-no","110651073584326284574",1,null,0,"bill.hood@contino.io"],1,"AAHRpnXuTqnMJqcpBKqgoBcrB6N40ncj_cLbXfHKTyOcv42xnvHfL5c2PrDOJrrI9AbgO_N6u20wKmQbcLzE7cgALFmNmM3b7sNtDOmBxE4jIHC_PJA_ZsHY",0,null,null,null,null,1,1,1,1,"https://66.docs.google.com/comments/u/110651073584326284574/d/AAHRpnXuTqnMJqcpBKqgoBcrB6N40ncj_cLbXfHKTyOcv42xnvHfL5c2PrDOJrrI9AbgO_N6u20wKmQbcLzE7cgALFmNmM3b7sNtDOmBxE4jIHC_PJA_ZsHY/xpc?token\u003dAGNctVbDYK1ytJC2n2mM4fJskneHFnsz9g:1584621209301\u0026id\u003dAAHRpnXuTqnMJqcpBKqgoBcrB6N40ncj_cLbXfHKTyOcv42xnvHfL5c2PrDOJrrI9AbgO_N6u20wKmQbcLzE7cgALFmNmM3b7sNtDOmBxE4jIHC_PJA_ZsHY\u0026anon\u003dfalse",null,"/comments/u/110651073584326284574/d/AAHRpnXuTqnMJqcpBKqgoBcrB6N40ncj_cLbXfHKTyOcv42xnvHfL5c2PrDOJrrI9AbgO_N6u20wKmQbcLzE7cgALFmNmM3b7sNtDOmBxE4jIHC_PJA_ZsHY","AGNctVbDYK1ytJC2n2mM4fJskneHFnsz9g:1584621209301",1,1,"https://docs.google.com/comments/u/110651073584326284574/c",null,"prod",1,null,null,1,null,null,null,null,1,1,1,0,null,0,["tf",60000,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,null,null,null,1,null,null,null,null,null,null,null,null,null,null,null,null,0,0,null,0,0],[[2700004,2700005,2700023,2700024,2700028,5701457,5701461,5701504,5701508,5702047,5702171,5702340,5702515,5702576,5703399,5703451,5703519,5703639,5703701,5703705,5703831,5703879,5704059,5704108,5704277,5704456,5705195,5705247,5705251,5705313,5705317,5705429,5705473,5705585,5705701,5705733,5705737,5705825,5705907,5705967,5706003,5706039,5706153,5706157,5706311,5706415,5706491,5706547,5706689,5706767,5706786,5706860,5707133,5707141,5707145,5707149,5707153,5707381,5708073,5708524,5708850,5709466]],null,null,null,null,4],"docs_oogt":"OGB_COLDSTART","docosJs":{"default":"//docs.google.com/static/comments/client/js/474983849-docos_binary_i18n.js"}}; _docs_flag_cek='PdPw9nZ59Wj0Im3kX2j3_A\x3d\x3d';if (window['DOCS_timing']) {DOCS_timing['ifdld']=new Date().getTime();}</script><script nonce="o2DFZIgoIAWlmfGcqlPOPg">var DOCS_timing=window['DOCS_timing']||{}; DOCS_timing['sl'] = new Date().getTime(); DOCS_timing['cls'] = DOCS_timing['sl'];</script><script nonce="o2DFZIgoIAWlmfGcqlPOPg">DOCS_timing['cle'] = new Date().getTime();</script><script nonce="o2DFZIgoIAWlmfGcqlPOPg">window['DOCS_timing']['mfls'] = new Date().getTime();</script><style type="text/css" nonce="o2DFZIgoIAWlmfGcqlPOPg">@font-face{font-family:'Roboto';font-style:italic;font-weight:400;src:local('Roboto Italic'),local('Roboto-Italic'),url(//fonts.gstatic.com/s/roboto/v18/KFOkCnqEu92Fr1Mu51xFIzIXKMnyrYk.woff2)format('woff2');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;}@font-face{font-family:'Roboto';font-style:italic;font-weight:400;src:local('Roboto Italic'),local('Roboto-Italic'),url(//fonts.gstatic.com/s/roboto/v18/KFOkCnqEu92Fr1Mu51xMIzIXKMnyrYk.woff2)format('woff2');unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;}@font-face{font-family:'Roboto';font-style:italic;font-weight:400;src:local('Roboto Italic'),local('Roboto-Italic'),url(//fonts.gstatic.com/s/roboto/v18/KFOkCnqEu92Fr1Mu51xEIzIXKMnyrYk.woff2)format('woff2');unicode-range:U+1F00-1FFF;}@font-face{font-family:'Roboto';font-style:italic;font-weight:400;src:local('Roboto Italic'),local('Roboto-Italic'),url(//fonts.gstatic.com/s/roboto/v18/KFOkCnqEu92Fr1Mu51xLIzIXKMnyrYk.woff2)format('woff2');unicode-range:U+0370-03FF;}@font-face{font-family:'Roboto';font-style:italic;font-weight:400;src:local('Roboto Italic'),local('Roboto-Italic'),url(//fonts.gstatic.com/s/roboto/v18/KFOkCnqEu92Fr1Mu51xHIzIXKMnyrYk.woff2)format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB;}@font-face{font-family:'Roboto';font-style:italic;font-weight:400;src:local('Roboto Italic'),local('Roboto-Italic'),url(//fonts.gstatic.com/s/roboto/v18/KFOkCnqEu92Fr1Mu51xGIzIXKMnyrYk.woff2)format('woff2');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;}@font-face{font-family:'Roboto';font-style:italic;font-weight:400;src:local('Roboto Italic'),local('Roboto-Italic'),url(//fonts.gstatic.com/s/roboto/v18/KFOkCnqEu92Fr1Mu51xIIzIXKMny.woff2)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}@font-face{font-family:'Roboto';font-style:italic;font-weight:500;src:local('Roboto Medium Italic'),local('Roboto-MediumItalic'),url(//fonts.gstatic.com/s/roboto/v18/KFOjCnqEu92Fr1Mu51S7ACc3CsTYl4BOQ3o.woff2)format('woff2');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;}@font-face{font-family:'Roboto';font-style:italic;font-weight:500;src:local('Roboto Medium Italic'),local('Roboto-MediumItalic'),url(//fonts.gstatic.com/s/roboto/v18/KFOjCnqEu92Fr1Mu51S7ACc-CsTYl4BOQ3o.woff2)format('woff2');unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;}@font-face{font-family:'Roboto';font-style:italic;font-weight:500;src:local('Roboto Medium Italic'),local('Roboto-MediumItalic'),url(//fonts.gstatic.com/s/roboto/v18/KFOjCnqEu92Fr1Mu51S7ACc2CsTYl4BOQ3o.woff2)format('woff2');unicode-range:U+1F00-1FFF;}@font-face{font-family:'Roboto';font-style:italic;font-weight:500;src:local('Roboto Medium Italic'),local('Roboto-MediumItalic'),url(//fonts.gstatic.com/s/roboto/v18/KFOjCnqEu92Fr1Mu51S7ACc5CsTYl4BOQ3o.woff2)format('woff2');unicode-range:U+0370-03FF;}@font-face{font-family:'Roboto';font-style:italic;font-weight:500;src:local('Roboto Medium Italic'),local('Roboto-MediumItalic'),url(//fonts.gstatic.com/s/roboto/v18/KFOjCnqEu92Fr1Mu51S7ACc1CsTYl4BOQ3o.woff2)format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB;}@font-face{font-family:'Roboto';font-style:italic;font-weight:500;src:local('Roboto Medium Italic'),local('Roboto-MediumItalic'),url(//fonts.gstatic.com/s/roboto/v18/KFOjCnqEu92Fr1Mu51S7ACc0CsTYl4BOQ3o.woff2)format('woff2');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;}@font-face{font-family:'Roboto';font-style:italic;font-weight:500;src:local('Roboto Medium Italic'),local('Roboto-MediumItalic'),url(//fonts.gstatic.com/s/roboto/v18/KFOjCnqEu92Fr1Mu51S7ACc6CsTYl4BO.woff2)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}@font-face{font-family:'Roboto';font-style:italic;font-weight:700;src:local('Roboto Bold Italic'),local('Roboto-BoldItalic'),url(//fonts.gstatic.com/s/roboto/v18/KFOjCnqEu92Fr1Mu51TzBic3CsTYl4BOQ3o.woff2)format('woff2');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;}@font-face{font-family:'Roboto';font-style:italic;font-weight:700;src:local('Roboto Bold Italic'),local('Roboto-BoldItalic'),url(//fonts.gstatic.com/s/roboto/v18/KFOjCnqEu92Fr1Mu51TzBic-CsTYl4BOQ3o.woff2)format('woff2');unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;}@font-face{font-family:'Roboto';font-style:italic;font-weight:700;src:local('Roboto Bold Italic'),local('Roboto-BoldItalic'),url(//fonts.gstatic.com/s/roboto/v18/KFOjCnqEu92Fr1Mu51TzBic2CsTYl4BOQ3o.woff2)format('woff2');unicode-range:U+1F00-1FFF;}@font-face{font-family:'Roboto';font-style:italic;font-weight:700;src:local('Roboto Bold Italic'),local('Roboto-BoldItalic'),url(//fonts.gstatic.com/s/roboto/v18/KFOjCnqEu92Fr1Mu51TzBic5CsTYl4BOQ3o.woff2)format('woff2');unicode-range:U+0370-03FF;}@font-face{font-family:'Roboto';font-style:italic;font-weight:700;src:local('Roboto Bold Italic'),local('Roboto-BoldItalic'),url(//fonts.gstatic.com/s/roboto/v18/KFOjCnqEu92Fr1Mu51TzBic1CsTYl4BOQ3o.woff2)format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB;}@font-face{font-family:'Roboto';font-style:italic;font-weight:700;src:local('Roboto Bold Italic'),local('Roboto-BoldItalic'),url(//fonts.gstatic.com/s/roboto/v18/KFOjCnqEu92Fr1Mu51TzBic0CsTYl4BOQ3o.woff2)format('woff2');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;}@font-face{font-family:'Roboto';font-style:italic;font-weight:700;src:local('Roboto Bold Italic'),local('Roboto-BoldItalic'),url(//fonts.gstatic.com/s/roboto/v18/KFOjCnqEu92Fr1Mu51TzBic6CsTYl4BO.woff2)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local('Roboto Regular'),local('Roboto-Regular'),url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu72xKKTU1Kvnz.woff2)format('woff2');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local('Roboto Regular'),local('Roboto-Regular'),url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu5mxKKTU1Kvnz.woff2)format('woff2');unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local('Roboto Regular'),local('Roboto-Regular'),url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu7mxKKTU1Kvnz.woff2)format('woff2');unicode-range:U+1F00-1FFF;}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local('Roboto Regular'),local('Roboto-Regular'),url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4WxKKTU1Kvnz.woff2)format('woff2');unicode-range:U+0370-03FF;}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local('Roboto Regular'),local('Roboto-Regular'),url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu7WxKKTU1Kvnz.woff2)format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB;}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local('Roboto Regular'),local('Roboto-Regular'),url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu7GxKKTU1Kvnz.woff2)format('woff2');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local('Roboto Regular'),local('Roboto-Regular'),url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxKKTU1Kg.woff2)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}@font-face{font-family:'Roboto';font-style:normal;font-weight:500;src:local('Roboto Medium'),local('Roboto-Medium'),url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fCRc4AMP6lbBP.woff2)format('woff2');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;}@font-face{font-family:'Roboto';font-style:normal;font-weight:500;src:local('Roboto Medium'),local('Roboto-Medium'),url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fABc4AMP6lbBP.woff2)format('woff2');unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;}@font-face{font-family:'Roboto';font-style:normal;font-weight:500;src:local('Roboto Medium'),local('Roboto-Medium'),url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fCBc4AMP6lbBP.woff2)format('woff2');unicode-range:U+1F00-1FFF;}@font-face{font-family:'Roboto';font-style:normal;font-weight:500;src:local('Roboto Medium'),local('Roboto-Medium'),url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBxc4AMP6lbBP.woff2)format('woff2');unicode-range:U+0370-03FF;}@font-face{font-family:'Roboto';font-style:normal;font-weight:500;src:local('Roboto Medium'),local('Roboto-Medium'),url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fCxc4AMP6lbBP.woff2)format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB;}@font-face{font-family:'Roboto';font-style:normal;font-weight:500;src:local('Roboto Medium'),local('Roboto-Medium'),url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fChc4AMP6lbBP.woff2)format('woff2');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;}@font-face{font-family:'Roboto';font-style:normal;font-weight:500;src:local('Roboto Medium'),local('Roboto-Medium'),url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc4AMP6lQ.woff2)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}@font-face{font-family:'Roboto';font-style:normal;font-weight:700;src:local('Roboto Bold'),local('Roboto-Bold'),url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfCRc4AMP6lbBP.woff2)format('woff2');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;}@font-face{font-family:'Roboto';font-style:normal;font-weight:700;src:local('Roboto Bold'),local('Roboto-Bold'),url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfABc4AMP6lbBP.woff2)format('woff2');unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;}@font-face{font-family:'Roboto';font-style:normal;font-weight:700;src:local('Roboto Bold'),local('Roboto-Bold'),url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfCBc4AMP6lbBP.woff2)format('woff2');unicode-range:U+1F00-1FFF;}@font-face{font-family:'Roboto';font-style:normal;font-weight:700;src:local('Roboto Bold'),local('Roboto-Bold'),url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBxc4AMP6lbBP.woff2)format('woff2');unicode-range:U+0370-03FF;}@font-face{font-family:'Roboto';font-style:normal;font-weight:700;src:local('Roboto Bold'),local('Roboto-Bold'),url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfCxc4AMP6lbBP.woff2)format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB;}@font-face{font-family:'Roboto';font-style:normal;font-weight:700;src:local('Roboto Bold'),local('Roboto-Bold'),url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfChc4AMP6lbBP.woff2)format('woff2');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;}@font-face{font-family:'Roboto';font-style:normal;font-weight:700;src:local('Roboto Bold'),local('Roboto-Bold'),url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc4AMP6lQ.woff2)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}@font-face{font-family:'Google Sans';font-style:italic;font-weight:400;src:local('Google Sans Italic'),local('GoogleSans-Italic'),url(//fonts.gstatic.com/s/googlesans/v14/4UaErENHsxJlGDuGo1OIlL3L8phULilENlYQ_Q.woff2)format('woff2');unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;}@font-face{font-family:'Google Sans';font-style:italic;font-weight:400;src:local('Google Sans Italic'),local('GoogleSans-Italic'),url(//fonts.gstatic.com/s/googlesans/v14/4UaErENHsxJlGDuGo1OIlL3L8p9ULilENlYQ_Q.woff2)format('woff2');unicode-range:U+0370-03FF;}@font-face{font-family:'Google Sans';font-style:italic;font-weight:400;src:local('Google Sans Italic'),local('GoogleSans-Italic'),url(//fonts.gstatic.com/s/googlesans/v14/4UaErENHsxJlGDuGo1OIlL3L8pNULilENlYQ_Q.woff2)format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB;}@font-face{font-family:'Google Sans';font-style:italic;font-weight:400;src:local('Google Sans Italic'),local('GoogleSans-Italic'),url(//fonts.gstatic.com/s/googlesans/v14/4UaErENHsxJlGDuGo1OIlL3L8pJULilENlYQ_Q.woff2)format('woff2');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;}@font-face{font-family:'Google Sans';font-style:italic;font-weight:400;src:local('Google Sans Italic'),local('GoogleSans-Italic'),url(//fonts.gstatic.com/s/googlesans/v14/4UaErENHsxJlGDuGo1OIlL3L8pxULilENlY.woff2)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}@font-face{font-family:'Google Sans';font-style:italic;font-weight:500;src:local('Google Sans Medium Italic'),local('GoogleSans-MediumItalic'),url(//fonts.gstatic.com/s/googlesans/v14/4UaZrENHsxJlGDuGo1OIlL3L-m93OwBmO3wq9IqeuA.woff2)format('woff2');unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;}@font-face{font-family:'Google Sans';font-style:italic;font-weight:500;src:local('Google Sans Medium Italic'),local('GoogleSans-MediumItalic'),url(//fonts.gstatic.com/s/googlesans/v14/4UaZrENHsxJlGDuGo1OIlL3L-m93OwdmO3wq9IqeuA.woff2)format('woff2');unicode-range:U+0370-03FF;}@font-face{font-family:'Google Sans';font-style:italic;font-weight:500;src:local('Google Sans Medium Italic'),local('GoogleSans-MediumItalic'),url(//fonts.gstatic.com/s/googlesans/v14/4UaZrENHsxJlGDuGo1OIlL3L-m93OwtmO3wq9IqeuA.woff2)format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB;}@font-face{font-family:'Google Sans';font-style:italic;font-weight:500;src:local('Google Sans Medium Italic'),local('GoogleSans-MediumItalic'),url(//fonts.gstatic.com/s/googlesans/v14/4UaZrENHsxJlGDuGo1OIlL3L-m93OwpmO3wq9IqeuA.woff2)format('woff2');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;}@font-face{font-family:'Google Sans';font-style:italic;font-weight:500;src:local('Google Sans Medium Italic'),local('GoogleSans-MediumItalic'),url(//fonts.gstatic.com/s/googlesans/v14/4UaZrENHsxJlGDuGo1OIlL3L-m93OwRmO3wq9Io.woff2)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}@font-face{font-family:'Google Sans';font-style:italic;font-weight:700;src:local('Google Sans Bold Italic'),local('GoogleSans-BoldItalic'),url(//fonts.gstatic.com/s/googlesans/v14/4UaZrENHsxJlGDuGo1OIlL3L-idxOwBmO3wq9IqeuA.woff2)format('woff2');unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;}@font-face{font-family:'Google Sans';font-style:italic;font-weight:700;src:local('Google Sans Bold Italic'),local('GoogleSans-BoldItalic'),url(//fonts.gstatic.com/s/googlesans/v14/4UaZrENHsxJlGDuGo1OIlL3L-idxOwdmO3wq9IqeuA.woff2)format('woff2');unicode-range:U+0370-03FF;}@font-face{font-family:'Google Sans';font-style:italic;font-weight:700;src:local('Google Sans Bold Italic'),local('GoogleSans-BoldItalic'),url(//fonts.gstatic.com/s/googlesans/v14/4UaZrENHsxJlGDuGo1OIlL3L-idxOwtmO3wq9IqeuA.woff2)format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB;}@font-face{font-family:'Google Sans';font-style:italic;font-weight:700;src:local('Google Sans Bold Italic'),local('GoogleSans-BoldItalic'),url(//fonts.gstatic.com/s/googlesans/v14/4UaZrENHsxJlGDuGo1OIlL3L-idxOwpmO3wq9IqeuA.woff2)format('woff2');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;}@font-face{font-family:'Google Sans';font-style:italic;font-weight:700;src:local('Google Sans Bold Italic'),local('GoogleSans-BoldItalic'),url(//fonts.gstatic.com/s/googlesans/v14/4UaZrENHsxJlGDuGo1OIlL3L-idxOwRmO3wq9Io.woff2)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:400;src:local('Google Sans Regular'),local('GoogleSans-Regular'),url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Kwp5eKQtGBlc.woff2)format('woff2');unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:400;src:local('Google Sans Regular'),local('GoogleSans-Regular'),url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Nwp5eKQtGBlc.woff2)format('woff2');unicode-range:U+0370-03FF;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:400;src:local('Google Sans Regular'),local('GoogleSans-Regular'),url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Bwp5eKQtGBlc.woff2)format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:400;src:local('Google Sans Regular'),local('GoogleSans-Regular'),url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Awp5eKQtGBlc.woff2)format('woff2');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:400;src:local('Google Sans Regular'),local('GoogleSans-Regular'),url(//fonts.gstatic.com/s/googlesans/v14/4UaGrENHsxJlGDuGo1OIlL3Owp5eKQtG.woff2)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:500;src:local('Google Sans Medium'),local('GoogleSans-Medium'),url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94Yt3CwZsPF4oxIs.woff2)format('woff2');unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:500;src:local('Google Sans Medium'),local('GoogleSans-Medium'),url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtwCwZsPF4oxIs.woff2)format('woff2');unicode-range:U+0370-03FF;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:500;src:local('Google Sans Medium'),local('GoogleSans-Medium'),url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94Yt8CwZsPF4oxIs.woff2)format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:500;src:local('Google Sans Medium'),local('GoogleSans-Medium'),url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94Yt9CwZsPF4oxIs.woff2)format('woff2');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:500;src:local('Google Sans Medium'),local('GoogleSans-Medium'),url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLU94YtzCwZsPF4o.woff2)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:700;src:local('Google Sans Bold'),local('GoogleSans-Bold'),url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154t3CwZsPF4oxIs.woff2)format('woff2');unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:700;src:local('Google Sans Bold'),local('GoogleSans-Bold'),url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154twCwZsPF4oxIs.woff2)format('woff2');unicode-range:U+0370-03FF;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:700;src:local('Google Sans Bold'),local('GoogleSans-Bold'),url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154t8CwZsPF4oxIs.woff2)format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:700;src:local('Google Sans Bold'),local('GoogleSans-Bold'),url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154t9CwZsPF4oxIs.woff2)format('woff2');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:700;src:local('Google Sans Bold'),local('GoogleSans-Bold'),url(//fonts.gstatic.com/s/googlesans/v14/4UabrENHsxJlGDuGo1OIlLV154tzCwZsPF4o.woff2)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}</style><script type="text/javascript" nonce="o2DFZIgoIAWlmfGcqlPOPg">(function(){/*

Copyright The Closure Library Authors. SPDX-License-Identifier: Apache-2.0 / function a(){document.fonts&&document.fonts.ready&&document.fonts.ready.then&&"function"==typeof document.fonts.ready.then&&document.fonts.ready.then(function(){window.DOCS_timing.mfle=(new Date).getTime()})}var b=["DOCS_attachInitialMaterialFontLoadListener"],c=this||self;b[0]in c||"undefined"==typeof c.execScript||c.execScript("var "+b[0]);for(var d;b.length&&(d=b.shift());)b.length||void 0===a?c[d]&&c[d]!==Object.prototype[d]?c=c[d]:c=c[d]={}:c[d]=a;}).call(this); </script><script nonce="o2DFZIgoIAWlmfGcqlPOPg">DOCS_attachInitialMaterialFontLoadListener();</script><style>/ Copyright 2020 Google Inc. All Rights Reserved. / :root{--docs-material-font-family:Roboto,RobotoDraft,Helvetica,Arial,sans-serif;--docs-material-header-font-family:Roboto,RobotoDraft,Helvetica,Arial,sans-serif;--docs-material-font-weight-normal:400;--docs-material-font-weight-bold:500;--docs-material-font-size-normal:14px;--docs-material-font-size-9:9px;--docs-material-font-size-11:11px;--docs-material-font-size-12:12px;--docs-material-font-size-22:22px}</style><style>/ Copyright 2020 Google Inc. All Rights Reserved. / :root{--docs-material-header-font-family:"Google Sans",Roboto,RobotoDraft,Helvetica,Arial,sans-serif}</style><iframe id='sketchy-hidden-iframe' style='position: absolute; top: -50000px; border: 0; z-index: -50000; width: 50000px' frameborder=0 src="about:blank"></iframe><script nonce="o2DFZIgoIAWlmfGcqlPOPg">(function() {var iframe = window.document.getElementById('sketchy-hidden-iframe'); var iframeDocument = iframe ? iframe.contentDocument || iframe.contentWindow.document : null; _docs_webfonts_iframe_fontFaces = _docs_webfonts_createFontFaces(iframeDocument);})();</script>

JavaScript isn't enabled in your browser, so this file can't be opened. Enable and reload.

Some PowerPoint features can't be displayed in Google Slides and will be dropped if you make changes
View details
TemplateTest
 
 
 
 
 
Present
 
 Share
File
Edit
View
Insert
Format
Slide
Arrange
Tools
Add-ons
Help
Accessibility
Debug
Unsaved changes to Drive
See new changes
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
Image options
 
Replace image
 
 
Format options
 
AutoDraw
 
Animate
 
Background
 
Layout
 
 
Theme
 
Transition
 
 
Colors
 
 
Accessibility
 
 
 
 
 
<script nonce="o2DFZIgoIAWlmfGcqlPOPg">DOCS_timing['che'] = new Date().getTime();</script>
<script nonce="o2DFZIgoIAWlmfGcqlPOPg">DOCS_timing['chv'] = new Date().getTime();</script>
HTML view of the presentation<script nonce="o2DFZIgoIAWlmfGcqlPOPg">(function(){/

Copyright The Closure Library Authors. SPDX-License-Identifier: Apache-2.0 / var a=this||self;function b(){this.a=this.b.bind(this);window.addEventListener("resize",this.a);c()}b.prototype.b=function(){document.getElementById("filmstrip-scroll-temp")?c():window.removeEventListener("resize",this.a)};function c(){var d=document.getElementById("filmstrip-scroll-temp");if(d){var k=document.documentElement.clientHeight,l=d.getBoundingClientRect();d.style.height=k-l.top+"px"}}function e(){new b}var f=["SK_installFilmstripManager"],g=a; f[0]in g||"undefined"==typeof g.execScript||g.execScript("var "+f[0]);for(var h;f.length&&(h=f.shift());)f.length||void 0===e?g[h]&&g[h]!==Object.prototype[h]?g=g[h]:g=g[h]={}:g[h]=e;}).call(this); SK_installFilmstripManager();</script><script nonce="o2DFZIgoIAWlmfGcqlPOPg">(function(){/

Copyright The Closure Library Authors. SPDX-License-Identifier: Apache-2.0 / var f=this||self;function l(c){this.b=c;this.a=null;this.c=this.f.bind(this);window.addEventListener("resize",this.c);r(this)}l.prototype.f=function(){document.getElementById("prerendered")?r(this):window.removeEventListener("resize",this.c)}; function r(c){var d=window.innerHeight,b=document.getElementById("docs-chrome")||document.getElementById("docs-bars");b&&(d-=b.offsetHeight);(b=document.getElementById("sketchy-horizontal-ruler"))&&(d-=b.offsetHeight);(b=document.getElementById("speakernotes"))&&(d-=b.offsetHeight);(b=document.getElementById("speakernotes-dragger"))&&(d-=b.offsetHeight);b=window.innerWidth;var m=document.getElementById("filmstrip");m&&(b-=m.offsetWidth);(m=document.getElementById("sketchy-vertical-ruler"))&&(b-=m.offsetWidth); 100>d&&(d=100);var g=c.b?17:0,k=(b-2g)/(d-2g),v=document.getElementById("prerendered"),a=v.children[0];if(a){c.a||(c.a=a.getAttribute("viewBox"));var e=a.getElementsByTagName("g")[0];e.getAttribute("clip-path")&&a.replaceChild(e.getElementsByTagName("g")[0],e);e=c.a.split(" ");var h=e[2]/e[3];if(k>h){k=d-2g;var n=kh;h=g;g=(b-n)/2}else n=b-2g,k=n/h,h=(d-k)/2;var p=[],q=e[2]/n;p[0]=e[0]-(g+1)q;p[2]=Number(e[2])+2gq;q=e[3]/k;p[1]=e[1]-(h+1)q;p[3]=Number(e[3])+2hq;a.setAttribute("viewBox", p.join(" "));a.style.top="0";a.style.left="0";a.style.position="absolute";a.setAttribute("width",b+"px");a.setAttribute("height",d+"px");a=document.getElementById("canvas-container");a.style.left=g+"px";a.style.top=h+"px";a.style.width=n+"px";a.style.height=k+"px";a.style.position="relative";a=document.getElementById("canvas");c.b&&(a.classList.add("canvas-horiz-border"),a.classList.add("canvas-vert-border"));a.style.visibility="visible";v.style.visibility="visible"}if(c=document.getElementById("workspace-container"))c.style.height= d+"px",c.style.width=b+"px";m&&(m.style.height=d+"px")}function t(c){new l(c);window.DOCS_timing&&(window.DOCS_timing.cov=(new Date).getTime())}var u=["SK_installPrerenderManager"],w=f;u[0]in w||"undefined"==typeof w.execScript||w.execScript("var "+u[0]);for(var x;u.length&&(x=u.shift());)u.length||void 0===t?w[x]&&w[x]!==Object.prototype[x]?w=w[x]:w=w[x]={}:w[x]=t;}).call(this); SK_installPrerenderManager( true );</script><script nonce="o2DFZIgoIAWlmfGcqlPOPg">DOCS_timing['sjl'] = new Date().getTime();</script><script src="/static/presentation/client/js/1637455757-editor_js_prod_core.js" nonce="o2DFZIgoIAWlmfGcqlPOPg"></script><script nonce="o2DFZIgoIAWlmfGcqlPOPg">DOCS_timing['ejl'] = new Date().getTime();if (!this['init_editor'] || false ) {if ('/presentation/u/0/jserror?jobset\x3dprod\x26error\x3dJS+binary+load+failure' && window.navigator && window.navigator.sendBeacon) {window.navigator.sendBeacon('/presentation/u/0/jserror?jobset\x3dprod\x26error\x3dJS+binary+load+failure&context.functionName=init_editor\x26context.actionName\x3dEdit');}window.location.href = 'https://support.google.com/accounts/answer/32050';}DOCS_initializeModules({"core":[],"app":["core"],"a11y":["app"],"datetimesymbols":["app"],"dictionary":["app"],"explore":["app"],"ita":["app"],"mosaic":["app"],"specialcharacters":["app"],"tertiary":["app"],"add_ons_app_finder_populator":["tertiary"],"add_ons_host_content_factory":["tertiary"],"add_ons_promo_bubble_factory":["tertiary"],"addons":["tertiary"],"analytics":["tertiary"],"approvals":["tertiary"],"autodraw":["tertiary"],"companion":["tertiary"],"docos":["tertiary"],"organize":["tertiary"],"peoplehovercard":["tertiary"],"shadowdocs":["tertiary"],"analytics_gviz":["analytics"],"viewer":["organize"]}, {"core":["/static/presentation/client/js/1637455757-editor_js_prod_core.js"],"app":["/static/presentation/client/js/290399066-editor_js_prod_app.js"],"a11y":["/static/presentation/client/js/3369594002-editor_js_prod_a11y.js"],"datetimesymbols":["/static/presentation/client/js/1582835530-editor_js_prod_datetimesymbols.js"],"dictionary":["/static/presentation/client/js/3469042842-editor_js_prod_dictionary.js"],"explore":["/static/presentation/client/js/3212378780-editor_js_prod_explore.js"],"ita":["/static/presentation/client/js/2407050954-editor_js_prod_ita.js"],"mosaic":["/static/presentation/client/js/256639581-editor_js_prod_mosaic.js"],"specialcharacters":["/static/presentation/client/js/510695859-editor_js_prod_specialcharacters.js"],"tertiary":["/static/presentation/client/js/3658414180-editor_js_prod_tertiary.js"],"add_ons_app_finder_populator":["/static/presentation/client/js/4195596569-editor_js_prod_add_ons_app_finder_populator.js"],"add_ons_host_content_factory":["/static/presentation/client/js/3548632246-editor_js_prod_add_ons_host_content_factory.js"],"add_ons_promo_bubble_factory":["/static/presentation/client/js/1754195902-editor_js_prod_add_ons_promo_bubble_factory.js"],"addons":["/static/presentation/client/js/4124297662-editor_js_prod_addons.js"],"analytics":["/static/presentation/client/js/104138537-editor_js_prod_analytics.js"],"approvals":["/static/presentation/client/js/3034293082-editor_js_prod_approvals.js"],"autodraw":["/static/presentation/client/js/411276991-editor_js_prod_autodraw.js"],"companion":["/static/presentation/client/js/2955101348-editor_js_prod_companion.js"],"docos":["/static/presentation/client/js/1133864162-editor_js_prod_docos.js"],"organize":["/static/presentation/client/js/1249872047-editor_js_prod_organize.js"],"peoplehovercard":["/static/presentation/client/js/2269933343-editor_js_prod_peoplehovercard.js"],"shadowdocs":["/static/presentation/client/js/2463541662-editor_js_prod_shadowdocs.js"],"analytics_gviz":["/static/presentation/client/js/2544878248-editor_js_prod_analytics_gviz.js"],"viewer":["/static/presentation/client/js/1522674949-editor_js_prod_viewer.js"]}, 'core');</script><script nonce="o2DFZIgoIAWlmfGcqlPOPg">DOCS_timing['sac'] = new Date().getTime();var SK_config = {buildLabel: 'null', userId: '13208870014593957526', doplarUserId: '00819003169707397688', email: 'bill.hood@contino.io', xhrPrefix: '/presentation/d/1fqtCE8iTxzaf1ZgcICB_qb4cjEaFoOuXnj9xG6PlMH8', urlPrefix: '/presentation/d/1fqtCE8iTxzaf1ZgcICB_qb4cjEaFoOuXnj9xG6PlMH8', locale: 'en', enableBidiControls: false , onePickFontPickerUrl: 'https://docs.google.com/picker?protocol\x3dgadgets\x26relayUrl\x3dhttps://docs.google.com/relay.html\x26hostId\x3dpunch-fonts\x26title\x3dFonts\x26hl\x3den\x26authuser\x3d0\x26newDriveView\x3dtrue\x26origin\x3dhttps://docs.google.com\x26st\x3d000770F203CD8CC568D06CF4F5260265C041607F5B468A48E1::1584621209385\x26navHidden\x3dtrue\x26multiselectEnabled\x3dtrue\x26selectButtonLabel\x3dOK\x26nav\x3d((%22fonts%22))', newDoc: false , newTemplateDoc: false , editable: true , id: '1fqtCE8iTxzaf1ZgcICB_qb4cjEaFoOuXnj9xG6PlMH8', app: 'sketchy', sid: '6807f756436cd92a', session: 'g719a01b836_1', canReadComments: true , commentable: true , downloadable: true , elementId: 'docs-editor', workspaceElementId: 'workspace', canvasContainerElementId: 'canvas-container', canvasElementId: 'canvas', pagesElementId: 'pages', horizontalRulerElementId: 'sketchy-horizontal-ruler', verticalRulerElementId: 'sketchy-vertical-ruler', prerenderImageUrls: ["https://lh3.googleusercontent.com/yWyR6blKI_eWEAew6rV--sUsktzAiKKvI8rCftAT7PXU-SKxhFpQLoFL4LfgC6vTBv9uJDbA-K2a9QbdwVwgFjI9dTp9KYFOW-QAc5WMtFQA32GwiG3FiucQwY_7vq0j8nNwJN_2B9w"], enablePrerender: true , autolayoutMapBinaryUris: '\x7b\x22autolayout_maps\x22:\x5b\x22/static/presentation/client/js/306591535-autolayout_map_binary_prod_autolayout_maps.js\x22\x5d\x7d', diagramsMapBinaryUri: '\x7b\x22diagrams_map\x22:\x5b\x22/static/presentation/client/js/3544122829-diagrams_map_binary_diagrams_map.js\x22\x5d\x7d', isShadowDocument: false , fileLockedReason: 0.0 , accessCapabilitiesJspbFormat: '\x5b\x22docs.security.access_capabilities\x22,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0\x5d\n', isClientSideEncrypted: null , isDasherUser: true ,};SK_config['dlpDetectorIds'] = [];SK_config['imageUrls'] = {"1U_ipYNRZfzsbXfcTYZFRCLwlrBF4vkccJCVx0RrvVg":"https://lh3.googleusercontent.com/yWyR6blKI_eWEAew6rV--sUsktzAiKKvI8rCftAT7PXU-SKxhFpQLoFL4LfgC6vTBv9uJDbA-K2a9QbdwVwgFjI9dTp9KYFOW-QAc5WMtFQA32GwiG3FiucQwY_7vq0j8nNwJN_2B9w","1cqACCNOKS86dWzB9VxgPChhHT8vVmKD7dGwXx45aBg":"https://lh4.googleusercontent.com/crGOC7CnHbk5g_QW7kndsgbkDZZ_IbBNnyngzA9HniFaOf_rTAH8vK1aTNMdYd_lycFnh0XJ_XDB7IAjtN-kpko5CxfeVHGhjAfQr4bSBSLFpm1R59_Jwl17I92eBKZI0gScyuH7UNI","1UNtfAVIyoL7PV82IhlOH0mgGDc35KmPLMN_dYCPPjQ":"https://lh3.googleusercontent.com/QMUQI9sEZZV5ODNuAYsBbOFSqtkuuCuX_DjPLT-WtIb213puIyeXaJbsr3CKmu601ty3HHfHjUi1I1RRapEtwKJ2kign_Pwu17Oc6f7KgCjLQGfjo3VwpFgns4TpiGg7sL9-x8wkSC4","1djCsFdh83CwFeBum2dRXVpXVJRm1Iv22JnKeoYydBQ":"https://lh4.googleusercontent.com/MChJX53LiVUVVW3JOT9Bzyg2uqkqc-nFRGlIQGT0KtGZKQibbr70nIF3bcTiaRMafLbjpyCID0h-Z3gU7b8ll0p8Ad1DCK7J-B9WkTqjjtEWi5rrG1KwKnXmN1hzJZrFdN-DIhKmekw","1HXRX6rWZxNOQjyM6fOcl2rFg-axZWuQxg0pqdp6GNw":"https://lh4.googleusercontent.com/TE48ffJ-RCwGRBk_Sp-8xgtJS1j2Gpt_-mOO9p1JL7Ta4wn5we3npq8fGvwzxOgRgelehC-V6QC-qA2IJL0KArvcZlHxEjXxhBkh4NHONhYCXrukEv8Lio7pw51j0k6eOEGzB3tmZ7E","1kn2ay8m3rXUuYDxfxu0nlbRUp9UdHt0kXArPwkWGuA":"https://lh4.googleusercontent.com/Pam2udS3CDa1yJKSr-OM6u6q-y95mjlTk9lhXlhv2sKzDrSmkEfq0QxfeDUgZd0d0jaKaqvS9RaULdHl2KZPme-Soz7yVYlzzQGJ4Ow8WLkSKIYd-FN4xQIxoO-0rdtMsYHpTwBlaSo","1iIIL_m6E8FuILmKGkgucbiwotuURv2lBcrO7S5JRLQ":"https://lh3.googleusercontent.com/-jXyQuqTDFVoKxwbWx-HlkfeuBmI1CJpXJnzY6Xh9jUmcZprXDsh6SMGCSqCH9jKthG8JjeZC0Rmxl2mdW9JwfCtMQpCAORLkm8zqfpOIlnhT4YkvvEhTxwjZcTqTxSN8_yraokjs4c","12-v8sOpz06ZGWXv5fhckJhq4vzPjKx3RH0yT5Y5p5g":"https://lh5.googleusercontent.com/NxpN78VX6KSzpt9sgnVYRAWoEgyhekthIWVZFmnfykJ5gk3r6t3psX8rUfQRc5SVlsny7f0o8WvJIU9UAc5MA-i8peZAn9mpMzpd6neVAvvnG8CFEOua991uGIApToiSlugV0SCe6kQ","1vxMPYBthdTkrASJ3shFq2KZO18Ahludt-djcIuOCOg":"https://lh4.googleusercontent.com/soOShJ2s9Qw5EOs2OJPSa5xPjqqh7WK977Ugoh9TdBImR1I9rsyVvvCmzIrIpVhNruG6ThcwqqGxoCWcxlHPZiYPr6a39J1N92k_dqagQjP_gkoISILq_pvcWz-1W_29gu4nCPg5X7w","1f7iONC5p5guh7DfMPzNb7maap3R6sEr1BWKOgpWEeA":"https://lh6.googleusercontent.com/G04VfCyrI4on4H2B5WN2ZDRJ5U0HGV97Zemdjsfxd2v-s_mjWswKhWK2hD7wZ5rFMnEqdGbhhtg-E-We7A5Z005jOgk5Ku7YellNQGPv9mjq_7PfRJ-nJ1SIuN4dc45UPg_kMEgkZTY","1GeXcbMJtQrDrA2o_Aiko-bX6MziI9mRdyFVEWsDLHA":"https://lh3.googleusercontent.com/JaCCcDnjQvJ_lPlIGHKVki0PyetSt5BO7ZESDSxUB80WPoqB0U6JmR-dhLjK_mcnMZOVFFGjvgk6kIx96sPWiEFkpzaZS07bNBMl-4GaePc5m2oMj6gVXbZRRfGcnn-miP-HpxbE0lU","1_yPo2ie8lx_9U3TBb5IjjUzZBl9n4UVdnbRbvK1mQg":"https://lh3.googleusercontent.com/FMQ5_euwQtjULvwMBdQFRUSSITeufIXUbJbiN5X4sE_uBYefM2ppYSqMOJu0tlcN89v7saLgxFx2Ut2vOFBy4NyDk2GXB5WHgXCxo7Yu-sUO9J5G_mF-j3qGU0P5inWuNVL-JS3WVfI","1OJzKUPkzQLFBJTf32alWvASyDFNpySJt8jjExKnAUt2YqoDT":"https://lh3.googleusercontent.com/d/1OJzKUPkzQLFBJTf32alWvASyDFNpySJt8jjExKnAUt2YqoDT","1EqNNidQbIyhRpmlXh6cwnVRs_e8j74UgsyqpcFlgNZi53L0u":"https://lh3.googleusercontent.com/d/1EqNNidQbIyhRpmlXh6cwnVRs_e8j74UgsyqpcFlgNZi53L0u","17eKqxS2YFGtzBYcFx1-ivrlIwcvL6XWA_5dl-GNy1Vz3Jb9v":"https://lh3.googleusercontent.com/d/17eKqxS2YFGtzBYcFx1-ivrlIwcvL6XWA_5dl-GNy1Vz3Jb9v","1Y_cFH0z8DibeYPrOmrhq57fFGC1MQS1uBGtj843ZHO6pPfRv":"https://lh3.googleusercontent.com/d/1Y_cFH0z8DibeYPrOmrhq57fFGC1MQS1uBGtj843ZHO6pPfRv","1TEZAe63ZF2368eySZ9uOq37j4dV7OfldFFA7TEApTAylF02E":"https://lh3.googleusercontent.com/d/1TEZAe63ZF2368eySZ9uOq37j4dV7OfldFFA7TEApTAylF02E","1PMF3cJOJIkDfvRPPaRdRngIq_PPn-FMvj0lF72e0aT6DYwyR":"https://lh3.googleusercontent.com/d/1PMF3cJOJIkDfvRPPaRdRngIq_PPn-FMvj0lF72e0aT6DYwyR","1-1fMlIf2OHF_l9t9Wk404L-EsZJzA_0WoOoE24DdV6tFDkXN":"https://lh3.googleusercontent.com/d/1-1fMlIf2OHF_l9t9Wk404L-EsZJzA_0WoOoE24DdV6tFDkXN","1KSLfa_EN_z85yq5SNc4m0UsLIDdeQIc-RRZEjCwOgW5Hsv5b":"https://lh3.googleusercontent.com/d/1KSLfa_EN_z85yq5SNc4m0UsLIDdeQIc-RRZEjCwOgW5Hsv5b","116RJPkZFcCUZKV2D1asolaAS7dAcjTwrf7NI6ZQcE00bv_C1":"https://lh3.googleusercontent.com/d/116RJPkZFcCUZKV2D1asolaAS7dAcjTwrf7NI6ZQcE00bv_C1","1C7C1GpsEF-Kf9jljodWGr5zMwHaqojugU9JO8HiiBKY_iwh_":"https://lh3.googleusercontent.com/d/1C7C1GpsEF-Kf9jljodWGr5zMwHaqojugU9JO8HiiBKY_iwh_","1XvIdYyNmFK25SbFQbaPh5qU8vsWFErUZxyhx4tBPvc3rmYlK":"https://lh3.googleusercontent.com/d/1XvIdYyNmFK25SbFQbaPh5qU8vsWFErUZxyhx4tBPvc3rmYlK","1tltjmLj_3ID1oVg5DXPEUkIQEHPKKDcvJ-79aZEbJPZliJem":"https://lh3.googleusercontent.com/d/1tltjmLj_3ID1oVg5DXPEUkIQEHPKKDcvJ-79aZEbJPZliJem","1PW9ZFXmfeJCOPi7QXysyzb9AYa6Z5J4JOGzUDkAUus348DQx":"https://lh3.googleusercontent.com/d/1PW9ZFXmfeJCOPi7QXysyzb9AYa6Z5J4JOGzUDkAUus348DQx","1MiUIJQg2fKU2ZQwXSJg-JAjt854gdWVji75ht5-AkMM1xeOk":"https://lh3.googleusercontent.com/d/1MiUIJQg2fKU2ZQwXSJg-JAjt854gdWVji75ht5-AkMM1xeOk","1vise6pU_Zm0uba9ZtsKreLBkppJ4o8Mg2RGrZh4rkIHEnfxd":"https://lh3.googleusercontent.com/d/1vise6pU_Zm0uba9ZtsKreLBkppJ4o8Mg2RGrZh4rkIHEnfxd","10RgkuOD1g7Wigy9lzr17SgyQUMHxb0SmgiHX_wVAXUEitjEj":"https://lh3.googleusercontent.com/d/10RgkuOD1g7Wigy9lzr17SgyQUMHxb0SmgiHX_wVAXUEitjEj","1uNWpqKG28SnJtqMaZXMnXt56LMiGJQ-8PYQ8nDhVZoNxfemY":"https://lh3.googleusercontent.com/d/1uNWpqKG28SnJtqMaZXMnXt56LMiGJQ-8PYQ8nDhVZoNxfemY","1JDTsf4EXwEUQC-u2QX75oZN2usgIBXnXnobNYBxCWdoaoV-m":"https://lh3.googleusercontent.com/d/1JDTsf4EXwEUQC-u2QX75oZN2usgIBXnXnobNYBxCWdoaoV-m","1iMCMDtc4aILKsMCQgmY9Uvh_gYZ5x6qQT9CYV-WihPPtP52i":"https://lh3.googleusercontent.com/d/1iMCMDtc4aILKsMCQgmY9Uvh_gYZ5x6qQT9CYV-WihPPtP52i","14yMim1V4Vyu9N5NtGX_BhePu1kvdJ-EJ5b_ZnlE9QOxKbEqF":"https://lh3.googleusercontent.com/d/14yMim1V4Vyu9N5NtGX_BhePu1kvdJ-EJ5b_ZnlE9QOxKbEqF","18yHwP26UsT6IbLyvlyA8snqEgQ4pu4Gzlev8iIjRhDZ0-TCT":"https://lh3.googleusercontent.com/d/18yHwP26UsT6IbLyvlyA8snqEgQ4pu4Gzlev8iIjRhDZ0-TCT","19p1nCvWJ3Z38mFMOGBf44DgNXNYsVGpDyd0aLkGGCZTj3c3O":"https://lh3.googleusercontent.com/d/19p1nCvWJ3Z38mFMOGBf44DgNXNYsVGpDyd0aLkGGCZTj3c3O"};SK_config['labelPaths'] = {};SK_config['webFonts'] = {"fontMetadataMap":{"Roboto":{"documentFont":1,"fontFaces":[{"fontDrawSize":{"STypoAscender":1536,"STypoDescender":-512,"STypoLineGap":102,"ascender":1900,"cmapFormat2":0,"codepoint4e00":0,"descender":-500,"fsSelection":64,"lineGap":0,"ulCodePageRange1":536871327,"unitsPerEm":2048,"usWinAscent":1946,"usWinDescent":512},"fontFamily":"Roboto","menuFont":0,"sources":[{"format":"woff2","isLocal":1,"url":"Roboto Thin"},{"format":"woff2","isLocal":1,"url":"Roboto-Thin"},{"format":"woff2","isLocal":0,"url":"//fonts.gstatic.com/s/roboto/v20/KFOkCnqEu92Fr1MmgWxKKTU1Kg.woff2"}],"style":"normal","subset":"ALL","subsetValue":"","weight":100,"weightedFontFamily":"Roboto Thin"},{"fontDrawSize":{"STypoAscender":1536,"STypoDescender":-512,"STypoLineGap":102,"ascender":1900,"cmapFormat2":0,"codepoint4e00":0,"descender":-500,"fsSelection":1,"lineGap":0,"ulCodePageRange1":536871327,"unitsPerEm":2048,"usWinAscent":1946,"usWinDescent":512},"fontFamily":"Roboto","menuFont":0,"sources":[{"format":"woff2","isLocal":1,"url":"Roboto Thin Italic"},{"format":"woff2","isLocal":1,"url":"Roboto-ThinItalic"},{"format":"woff2","isLocal":0,"url":"//fonts.gstatic.com/s/roboto/v20/KFOiCnqEu92Fr1Mu51QrIzIXKMny.woff2"}],"style":"italic","subset":"ALL","subsetValue":"","weight":100,"weightedFontFamily":"Roboto Thin"},{"fontDrawSize":{"STypoAscender":1536,"STypoDescender":-512,"STypoLineGap":102,"ascender":1900,"cmapFormat2":0,"codepoint4e00":0,"descender":-500,"fsSelection":64,"lineGap":0,"ulCodePageRange1":536871327,"unitsPerEm":2048,"usWinAscent":1946,"usWinDescent":512},"fontFamily":"Roboto","menuFont":0,"sources":[{"format":"woff2","isLocal":1,"url":"Roboto Light"},{"format":"woff2","isLocal":1,"url":"Roboto-Light"},{"format":"woff2","isLocal":0,"url":"//fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5vBh0_IsE.woff2"}],"style":"normal","subset":"ALL","subsetValue":"","weight":300,"weightedFontFamily":"Roboto Light"},{"fontDrawSize":{"STypoAscender":1536,"STypoDescender":-512,"STypoLineGap":102,"ascender":1900,"cmapFormat2":0,"codepoint4e00":0,"descender":-500,"fsSelection":1,"lineGap":0,"ulCodePageRange1":536871327,"unitsPerEm":2048,"usWinAscent":1946,"usWinDescent":512},"fontFamily":"Roboto","menuFont":0,"sources":[{"format":"woff2","isLocal":1,"url":"Roboto Light Italic"},{"format":"woff2","isLocal":1,"url":"Roboto-LightItalic"},{"format":"woff2","isLocal":0,"url":"//fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51TjARc4AMP6lQ.woff2"}],"style":"italic","subset":"ALL","subsetValue":"","weight":300,"weightedFontFamily":"Roboto Light"},{"fontDrawSize":{"STypoAscender":1536,"STypoDescender":-512,"STypoLineGap":102,"ascender":1900,"cmapFormat2":0,"codepoint4e00":0,"descender":-500,"fsSelection":64,"lineGap":0,"ulCodePageRange1":536871327,"unitsPerEm":2048,"usWinAscent":1946,"usWinDescent":512},"fontFamily":"Roboto","menuFont":0,"sources":[{"format":"woff2","isLocal":1,"url":"Roboto"},{"format":"woff2","isLocal":1,"url":"Roboto-Regular"},{"format":"woff2","isLocal":0,"url":"//fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Me4GZNCzc.woff2"}],"style":"normal","subset":"ALL","subsetValue":"","weight":400,"weightedFontFamily":"Roboto"},{"fontDrawSize":{"STypoAscender":1536,"STypoDescender":-512,"STypoLineGap":102,"ascender":1900,"cmapFormat2":0,"codepoint4e00":0,"descender":-500,"fsSelection":1,"lineGap":0,"ulCodePageRange1":536871327,"unitsPerEm":2048,"usWinAscent":1946,"usWinDescent":512},"fontFamily":"Roboto","menuFont":0,"sources":[{"format":"woff2","isLocal":1,"url":"Roboto Italic"},{"format":"woff2","isLocal":1,"url":"Roboto-Italic"},{"format":"woff2","isLocal":0,"url":"//fonts.gstatic.com/s/roboto/v20/KFOkCnqEu92Fr1Mu52xKKTU1Kg.woff2"}],"style":"italic","subset":"ALL","subsetValue":"","weight":400,"weightedFontFamily":"Roboto"},{"fontDrawSize":{"STypoAscender":1536,"STypoDescender":-512,"STypoLineGap":102,"ascender":1900,"cmapFormat2":0,"codepoint4e00":0,"descender":-500,"fsSelection":64,"lineGap":0,"ulCodePageRange1":536871327,"unitsPerEm":2048,"usWinAscent":1946,"usWinDescent":512},"fontFamily":"Roboto","menuFont":0,"sources":[{"format":"woff2","isLocal":1,"url":"Roboto Medium"},{"format":"woff2","isLocal":1,"url":"Roboto-Medium"},{"format":"woff2","isLocal":0,"url":"//fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9vBh0_IsE.woff2"}],"style":"normal","subset":"ALL","subsetValue":"","weight":500,"weightedFontFamily":"Roboto Medium"},{"fontDrawSize":{"STypoAscender":1536,"STypoDescender":-512,"STypoLineGap":102,"ascender":1900,"cmapFormat2":0,"codepoint4e00":0,"descender":-500,"fsSelection":1,"lineGap":0,"ulCodePageRange1":536871327,"unitsPerEm":2048,"usWinAscent":1946,"usWinDescent":512},"fontFamily":"Roboto","menuFont":0,"sources":[{"format":"woff2","isLocal":1,"url":"Roboto Medium Italic"},{"format":"woff2","isLocal":1,"url":"Roboto-MediumItalic"},{"format":"woff2","isLocal":0,"url":"//fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51S7ABc4AMP6lQ.woff2"}],"style":"italic","subset":"ALL","subsetValue":"","weight":500,"weightedFontFamily":"Roboto Medium"},{"fontDrawSize":{"STypoAscender":1536,"STypoDescender":-512,"STypoLineGap":102,"ascender":1900,"cmapFormat2":0,"codepoint4e00":0,"descender":-500,"fsSelection":32,"lineGap":0,"ulCodePageRange1":536871327,"unitsPerEm":2048,"usWinAscent":1946,"usWinDescent":512},"fontFamily":"Roboto","menuFont":0,"sources":[{"format":"woff2","isLocal":1,"url":"Roboto Bold"},{"format":"woff2","isLocal":1,"url":"Roboto-Bold"},{"format":"woff2","isLocal":0,"url":"//fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlvBh0_IsE.woff2"}],"style":"normal","subset":"ALL","subsetValue":"","weight":700,"weightedFontFamily":"Roboto Bold"},{"fontDrawSize":{"STypoAscender":1536,"STypoDescender":-512,"STypoLineGap":102,"ascender":1900,"cmapFormat2":0,"codepoint4e00":0,"descender":-500,"fsSelection":33,"lineGap":0,"ulCodePageRange1":536871327,"unitsPerEm":2048,"usWinAscent":1946,"usWinDescent":512},"fontFamily":"Roboto","menuFont":0,"sources":[{"format":"woff2","isLocal":1,"url":"Roboto Bold Italic"},{"format":"woff2","isLocal":1,"url":"Roboto-BoldItalic"},{"format":"woff2","isLocal":0,"url":"//fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51TzBhc4AMP6lQ.woff2"}],"style":"italic","subset":"ALL","subsetValue":"","weight":700,"weightedFontFamily":"Roboto Bold"},{"fontDrawSize":{"STypoAscender":1536,"STypoDescender":-512,"STypoLineGap":102,"ascender":1900,"cmapFormat2":0,"codepoint4e00":0,"descender":-500,"fsSelection":64,"lineGap":0,"ulCodePageRange1":536871327,"unitsPerEm":2048,"usWinAscent":1946,"usWinDescent":512},"fontFamily":"Roboto","menuFont":0,"sources":[{"format":"woff2","isLocal":1,"url":"Roboto Black"},{"format":"woff2","isLocal":1,"url":"Roboto-Black"},{"format":"woff2","isLocal":0,"url":"//fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmYUtvBh0_IsE.woff2"}],"style":"normal","subset":"ALL","subsetValue":"","weight":900,"weightedFontFamily":"Roboto Black"},{"fontDrawSize":{"STypoAscender":1536,"STypoDescender":-512,"STypoLineGap":102,"ascender":1900,"cmapFormat2":0,"codepoint4e00":0,"descender":-500,"fsSelection":1,"lineGap":0,"ulCodePageRange1":536871327,"unitsPerEm":2048,"usWinAscent":1946,"usWinDescent":512},"fontFamily":"Roboto","menuFont":0,"sources":[{"format":"woff2","isLocal":1,"url":"Roboto Black Italic"},{"format":"woff2","isLocal":1,"url":"Roboto-BlackItalic"},{"format":"woff2","isLocal":0,"url":"//fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51TLBBc4AMP6lQ.woff2"}],"style":"italic","subset":"ALL","subsetValue":"","weight":900,"weightedFontFamily":"Roboto Black"},{"fontDrawSize":{"STypoAscender":1536,"STypoDescender":-512,"STypoLineGap":102,"ascender":1900,"cmapFormat2":0,"codepoint4e00":0,"descender":-500,"fsSelection":64,"lineGap":0,"ulCodePageRange1":536871327,"unitsPerEm":2048,"usWinAscent":1946,"usWinDescent":512},"fontFamily":"Roboto--Menu","menuFont":1,"sources":[{"format":"woff2","isLocal":0,"url":"//fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu5GxKKTU1Kg.woff2"}],"style":"normal","subset":"MENU","subsetValue":"menu","weight":400,"weightedFontFamily":"Roboto"}],"genericFallback":"sans-serif","hasInkedWhitespace":0,"restrictedDomainFont":0,"userDomainFont":0,"version":"v20"},"Roboto Condensed":{"documentFont":1,"fontFaces":[{"fontDrawSize":{"STypoAscender":1536,"STypoDescender":-512,"STypoLineGap":102,"ascender":1900,"cmapFormat2":0,"codepoint4e00":0,"descender":-500,"fsSelection":64,"lineGap":0,"ulCodePageRange1":536871327,"unitsPerEm":2048,"usWinAscent":1946,"usWinDescent":512},"fontFamily":"Roboto Condensed","menuFont":0,"sources":[{"format":"woff2","isLocal":1,"url":"Roboto Condensed Light"},{"format":"woff2","isLocal":1,"url":"RobotoCondensed-Light"},{"format":"woff2","isLocal":0,"url":"//fonts.gstatic.com/s/robotocondensed/v18/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZKCYSaPtc.woff2"}],"style":"normal","subset":"ALL","subsetValue":"","weight":300,"weightedFontFamily":"Roboto Condensed Light"},{"fontDrawSize":{"STypoAscender":1536,"STypoDescender":-512,"STypoLineGap":102,"ascender":1900,"cmapFormat2":0,"codepoint4e00":0,"descender":-500,"fsSelection":1,"lineGap":0,"ulCodePageRange1":536871327,"unitsPerEm":2048,"usWinAscent":1946,"usWinDescent":512},"fontFamily":"Roboto Condensed","menuFont":0,"sources":[{"format":"woff2","isLocal":1,"url":"Roboto Condensed Light Italic"},{"format":"woff2","isLocal":1,"url":"RobotoCondensed-LightItalic"},{"format":"woff2","isLocal":0,"url":"//fonts.gstatic.com/s/robotocondensed/v18/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDpCEYb9lecyU.woff2"}],"style":"italic","subset":"ALL","subsetValue":"","weight":300,"weightedFontFamily":"Roboto Condensed Light"},{"fontDrawSize":{"STypoAscender":1536,"STypoDescender":-512,"STypoLineGap":102,"ascender":1900,"cmapFormat2":0,"codepoint4e00":0,"descender":-500,"fsSelection":64,"lineGap":0,"ulCodePageRange1":536871327,"unitsPerEm":2048,"usWinAscent":1946,"usWinDescent":512},"fontFamily":"Roboto Condensed","menuFont":0,"sources":[{"format":"woff2","isLocal":1,"url":"Roboto Condensed"},{"format":"woff2","isLocal":1,"url":"RobotoCondensed-Regular"},{"format":"woff2","isLocal":0,"url":"//fonts.gstatic.com/s/robotocondensed/v18/ieVl2ZhZI2eCN5jzbjEETS9weq8-59CxCis4.woff2"}],"style":"normal","subset":"ALL","subsetValue":"","weight":400,"weightedFontFamily":"Roboto Condensed"},{"fontDrawSize":{"STypoAscender":1536,"STypoDescender":-512,"STypoLineGap":102,"ascender":1900,"cmapFormat2":0,"codepoint4e00":0,"descender":-500,"fsSelection":1,"lineGap":0,"ulCodePageRange1":536871327,"unitsPerEm":2048,"usWinAscent":1946,"usWinDescent":512},"fontFamily":"Roboto Condensed","menuFont":0,"sources":[{"format":"woff2","isLocal":1,"url":"Roboto Condensed Italic"},{"format":"woff2","isLocal":1,"url":"RobotoCondensed-Italic"},{"format":"woff2","isLocal":0,"url":"//fonts.gstatic.com/s/robotocondensed/v18/ieVj2ZhZI2eCN5jzbjEETS9weq8-19e7DQk6YvM.woff2"}],"style":"italic","subset":"ALL","subsetValue":"","weight":400,"weightedFontFamily":"Roboto Condensed"},{"fontDrawSize":{"STypoAscender":1536,"STypoDescender":-512,"STypoLineGap":102,"ascender":1900,"cmapFormat2":0,"codepoint4e00":0,"descender":-500,"fsSelection":32,"lineGap":0,"ulCodePageRange1":536871327,"unitsPerEm":2048,"usWinAscent":1946,"usWinDescent":512},"fontFamily":"Roboto Condensed","menuFont":0,"sources":[{"format":"woff2","isLocal":1,"url":"Roboto Condensed Bold"},{"format":"woff2","isLocal":1,"url":"RobotoCondensed-Bold"},{"format":"woff2","isLocal":0,"url":"//fonts.gstatic.com/s/robotocondensed/v18/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meKCYSaPtc.woff2"}],"style":"normal","subset":"ALL","subsetValue":"","weight":700,"weightedFontFamily":"Roboto Condensed Bold"},{"fontDrawSize":{"STypoAscender":1536,"STypoDescender":-512,"STypoLineGap":102,"ascender":1900,"cmapFormat2":0,"codepoint4e00":0,"descender":-500,"fsSelection":33,"lineGap":0,"ulCodePageRange1":536871327,"unitsPerEm":2048,"usWinAscent":1946,"usWinDescent":512},"fontFamily":"Roboto Condensed","menuFont":0,"sources":[{"format":"woff2","isLocal":1,"url":"Roboto Condensed Bold Italic"},{"format":"woff2","isLocal":1,"url":"RobotoCondensed-BoldItalic"},{"format":"woff2","isLocal":0,"url":"//fonts.gstatic.com/s/robotocondensed/v18/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDtCYYb9lecyU.woff2"}],"style":"italic","subset":"ALL","subsetValue":"","weight":700,"weightedFontFamily":"Roboto Condensed Bold"},{"fontDrawSize":{"STypoAscender":1536,"STypoDescender":-512,"STypoLineGap":102,"ascender":1900,"cmapFormat2":0,"codepoint4e00":0,"descender":-500,"fsSelection":64,"lineGap":0,"ulCodePageRange1":536871327,"unitsPerEm":2048,"usWinAscent":1946,"usWinDescent":512},"fontFamily":"Roboto Condensed--Menu","menuFont":1,"sources":[{"format":"woff2","isLocal":0,"url":"//fonts.gstatic.com/s/robotocondensed/v18/ieVl2ZhZI2eCN5jzbjEETS9weq8-19S7DQk6YvM.woff2"}],"style":"normal","subset":"MENU","subsetValue":"menu","weight":400,"weightedFontFamily":"Roboto Condensed"}],"genericFallback":"sans-serif","hasInkedWhitespace":0,"restrictedDomainFont":0,"userDomainFont":0,"version":"v18"},"Helvetica Neue":{"documentFont":1,"fontFaces":[{"fontDrawSize":{"STypoAscender":1462,"STypoDescender":-586,"STypoLineGap":410,"ascender":1993,"cmapFormat2":0,"codepoint4e00":0,"descender":-588,"fsSelection":0,"lineGap":0,"ulCodePageRange1":536871071,"unitsPerEm":2048,"usWinAscent":1993,"usWinDescent":588},"fontFamily":"Helvetica Neue","menuFont":0,"sources":[{"format":"woff2","isLocal":1,"url":"Helvetica Neue Light"},{"format":"woff2","isLocal":1,"url":"HelveticaNeue-Light"},{"format":"woff2","isLocal":0,"url":"//fonts.gstatic.com/l/font?kit\u003djAncgHBgCsv4eNLTaMECf8DQsNwQWTWRVGormA\u0026skey\u003d94b5a6be98cdd9eb\u0026v\u003dv9"}],"style":"normal","subset":"ALL","subsetValue":"","weight":300,"weightedFontFamily":"Helvetica Neue Light"},{"fontDrawSize":{"STypoAscender":1462,"STypoDescender":-586,"STypoLineGap":410,"ascender":1993,"cmapFormat2":0,"codepoint4e00":0,"descender":-588,"fsSelection":1,"lineGap":0,"ulCodePageRange1":536871071,"unitsPerEm":2048,"usWinAscent":1993,"usWinDescent":588},"fontFamily":"Helvetica Neue","menuFont":0,"sources":[{"format":"woff2","isLocal":1,"url":"Helvetica Neue Light Italic"},{"format":"woff2","isLocal":1,"url":"HelveticaNeue-LightItalic"},{"format":"woff2","isLocal":0,"url":"//fonts.gstatic.com/l/font?kit\u003djAnagHBgCsv4eNLTaMECf8DQsNS-Q7mWXm0Jmmw5\u0026skey\u003dbd84fd227f786e23\u0026v\u003dv9"}],"style":"italic","subset":"ALL","subsetValue":"","weight":300,"weightedFontFamily":"Helvetica Neue Light"},{"fontDrawSize":{"STypoAscender":1462,"STypoDescender":-586,"STypoLineGap":410,"ascender":1993,"cmapFormat2":0,"codepoint4e00":0,"descender":-588,"fsSelection":64,"lineGap":0,"ulCodePageRange1":536871071,"unitsPerEm":2048,"usWinAscent":1993,"usWinDescent":588},"fontFamily":"Helvetica Neue","menuFont":0,"sources":[{"format":"woff2","isLocal":1,"url":"Helvetica Neue"},{"format":"woff2","isLocal":1,"url":"HelveticaNeue"},{"format":"woff2","isLocal":0,"url":"//fonts.gstatic.com/l/font?kit\u003djAnfgHBgCsv4eNLTaMECf8DQsOS5cRecfg\u0026skey\u003d4ad46dd97873f7d7\u0026v\u003dv9"}],"style":"normal","subset":"ALL","subsetValue":"","weight":400,"weightedFontFamily":"Helvetica Neue"},{"fontDrawSize":{"STypoAscender":1462,"STypoDescender":-586,"STypoLineGap":410,"ascender":1993,"cmapFormat2":0,"codepoint4e00":0,"descender":-588,"fsSelection":1,"lineGap":0,"ulCodePageRange1":536871071,"unitsPerEm":2048,"usWinAscent":1993,"usWinDescent":588},"fontFamily":"Helvetica Neue","menuFont":0,"sources":[{"format":"woff2","isLocal":1,"url":"Helvetica Neue Italic"},{"format":"woff2","isLocal":1,"url":"HelveticaNeue-Italic"},{"format":"woff2","isLocal":0,"url":"//fonts.gstatic.com/l/font?kit\u003djAndgHBgCsv4eNLTaMECf8DQsNS-exC-fGAj\u0026skey\u003db6fcfb44a0513c\u0026v\u003dv9"}],"style":"italic","subset":"ALL","subsetValue":"","weight":400,"weightedFontFamily":"Helvetica Neue"},{"fontDrawSize":{"STypoAscender":1462,"STypoDescender":-586,"STypoLineGap":410,"ascender":1993,"cmapFormat2":0,"codepoint4e00":0,"descender":-588,"fsSelection":32,"lineGap":0,"ulCodePageRange1":536871071,"unitsPerEm":2048,"usWinAscent":1993,"usWinDescent":588},"fontFamily":"Helvetica Neue","menuFont":0,"sources":[{"format":"woff2","isLocal":1,"url":"Helvetica Neue Bold"},{"format":"woff2","isLocal":1,"url":"HelveticaNeue-Bold"},{"format":"woff2","isLocal":0,"url":"//fonts.gstatic.com/l/font?kit\u003djAncgHBgCsv4eNLTaMECf8DQsNwAXjWRVGormA\u0026skey\u003dba59c4fdb0ab3b35\u0026v\u003dv9"}],"style":"normal","subset":"ALL","subsetValue":"","weight":700,"weightedFontFamily":"Helvetica Neue Bold"},{"fontDrawSize":{"STypoAscender":1462,"STypoDescender":-586,"STypoLineGap":410,"ascender":1993,"cmapFormat2":0,"codepoint4e00":0,"descender":-588,"fsSelection":33,"lineGap":0,"ulCodePageRange1":536871071,"unitsPerEm":2048,"usWinAscent":1993,"usWinDescent":588},"fontFamily":"Helvetica Neue","menuFont":0,"sources":[{"format":"woff2","isLocal":1,"url":"Helvetica Neue Bold Italic"},{"format":"woff2","isLocal":1,"url":"HelveticaNeue-BoldItalic"},{"format":"woff2","isLocal":0,"url":"//fonts.gstatic.com/l/font?kit\u003djAnagHBgCsv4eNLTaMECf8DQsNS-Q6mRXm0Jmmw5\u0026skey\u003d91381930180d3fa1\u0026v\u003dv9"}],"style":"italic","subset":"ALL","subsetValue":"","weight":700,"weightedFontFamily":"Helvetica Neue Bold"},{"fontDrawSize":{"STypoAscender":1462,"STypoDescender":-586,"STypoLineGap":410,"ascender":1993,"cmapFormat2":0,"codepoint4e00":0,"descender":-588,"fsSelection":64,"lineGap":0,"ulCodePageRange1":536871071,"unitsPerEm":2048,"usWinAscent":1993,"usWinDescent":588},"fontFamily":"Helvetica Neue--Menu","menuFont":1,"sources":[{"format":"woff2","isLocal":0,"url":"//fonts.gstatic.com/l/font?kit\u003djAnfgHBgCsv4eNLTaMECf8DQsNS9exC-fGAj\u0026skey\u003d4ad46dd97873f7d7\u0026v\u003dv9"}],"style":"normal","subset":"MENU","subsetValue":"menu","weight":400,"weightedFontFamily":"Helvetica Neue"}],"genericFallback":"sans-serif","hasInkedWhitespace":0,"restrictedDomainFont":0,"userDomainFont":0,"version":"v9"}},"unrecognizedFontFamilies":["Arial"],"weightedFontFamilyMap":{"Roboto Thin":"Roboto","Roboto Black":"Roboto","Roboto Medium":"Roboto","Roboto Condensed":"Roboto Condensed","Roboto Condensed Light":"Roboto Condensed","Roboto Light":"Roboto","Helvetica Neue":"Helvetica Neue","Roboto Condensed Bold":"Roboto Condensed","Roboto Bold":"Roboto","Roboto":"Roboto","Helvetica Neue Bold":"Helvetica Neue","Helvetica Neue Light":"Helvetica Neue"}};SK_config['syncUpdates'] = [{"data":{"value":[]},"keyPath":["syncMap","applicationFonts","2"],"state":{"hashValue":"00000000"}},{"data":{"value":[]},"keyPath":["syncMap","domainFonts","0"],"state":{"hashValue":"00000000"}},{"data":{"value":1},"keyPath":["syncMap","preferences","docs-enable_instant_mentions"],"state":{"timestamp":1584621194824000}},{"data":{"familyList":["Alegreya","Amatic SC","Bree Serif","Calibri","Cambria","Merriweather","Permanent Marker","Pinyon Script","Playfair Display","Proxima Nova","Roboto","Roboto Mono","Ultra","Varela Round"],"recentlyUsedFamilyList":["Courier New","Roboto"],"transitionedFamilyList":[],"hasTransitioned":1},"keyPath":["syncMap","preferences","docs-fonts"],"state":{"timestamp":1538869370924877}},{"data":{"value":0},"keyPath":["syncMap","preferences","docs-hats_dc"],"state":{"timestamp":1582921220682751}},{"data":{"value":0},"keyPath":["syncMap","preferences","docs-hats_st"],"state":{"timestamp":1582921220682751}},{"data":{"value":[]},"keyPath":["syncMap","preferences","docs-hats_sth"],"state":{"timestamp":1582921220682751}},{"data":{"autocorrectLinks":1,"autocorrectSmartQuotes":1,"enableStringReplacement":1,"ruleList":[],"autocorrectParagraphDirection":1,"autocorrectLists":1,"autocorrectAutoCapitalization":1,"autocorrectSpelling":1},"keyPath":["syncMap","preferences","docs-autocorrect"],"state":{"timestamp":1584621194824000}},{"data":{"editorAnalyticsOnboarding":1,"editorAnalyticsMiniBundle":1,"blameLaunch":1},"keyPath":["syncMap","preferences","docs-global_promos","0"],"state":{"timestamp":1567775697334174}},{"data":{"recent_templates":["1mX2WUhT9wM73rFj9GzyPoXO1jzdn-eCFWr_GueygFxc"]},"keyPath":["syncMap","preferences","docs-recent_templates","1"],"state":{"timestamp":1584329112500063}},{"data":{"recent_templates":["49"]},"keyPath":["syncMap","preferences","docs-recent_templates","5"],"state":{"timestamp":1584329112500063}},{"data":{"recent_templates":["1d2L_WfkGcMl2it4Vu7hxnGP-C3ZEAVwSakKHef-N0PQ","113"]},"keyPath":["syncMap","preferences","docs-recent_templates","2"],"state":{"timestamp":1584329112500063}},{"data":{"value":1},"keyPath":["syncMap","preferences","docs-dlpc"],"state":{"timestamp":1584621194824000}},{"data":{"value":1},"keyPath":["syncMap","preferences","mae-show_addons_menu_promo"],"state":{"timestamp":1584321693102241}},{"data":{"value":0},"keyPath":["syncMap","preferences","docs-homescreen-aips"],"state":{"timestamp":1548875975930875}},{"data":{"punchCaptionDogfood":1},"keyPath":["syncMap","preferences","docs-homescreen-asp","2"],"state":{"timestamp":1567775697334174}},{"data":{"value":1548875975848},"keyPath":["syncMap","preferences","docs-homescreen-ftbdct"],"state":{"timestamp":1548875975930875}},{"data":{"value":0},"keyPath":["syncMap","preferences","docs-homescreen-dbs"],"state":{"timestamp":1548875975930875}},{"data":{"value":0},"keyPath":["syncMap","preferences","docs-homescreen-ht"],"state":{"timestamp":1548875975930875}},{"data":{"value":1},"keyPath":["syncMap","preferences","docs-homescreen-wws"],"state":{"timestamp":1548875975930875}},{"data":{"value":0},"keyPath":["syncMap","preferences","docs-etg-lvt"],"state":{"timestamp":1584621194824000}},{"data":{"viewMode":1},"keyPath":["syncMap","preferences","do

About

Google Slide Add-on to templatize the slide, replacing ${} variables with values from a sidebar form.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published