惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Cloudbric
Cloudbric
E
Exploit-DB.com RSS Feed
SecWiki News
SecWiki News
Forbes - Security
Forbes - Security
N
News | PayPal Newsroom
S
Security @ Cisco Blogs
Schneier on Security
Schneier on Security
V
V2EX - 技术
S
Secure Thoughts
W
WeLiveSecurity
Google DeepMind News
Google DeepMind News
C
CERT Recently Published Vulnerability Notes
NISL@THU
NISL@THU
S
Securelist
S
Security Archives - TechRepublic
Know Your Adversary
Know Your Adversary
V
Vulnerabilities – Threatpost
Security Latest
Security Latest
Recent Commits to openclaw:main
Recent Commits to openclaw:main
G
GRAHAM CLULEY
H
Hacker News: Front Page
Microsoft Azure Blog
Microsoft Azure Blog
I
Intezer
Google Online Security Blog
Google Online Security Blog
美团技术团队
阮一峰的网络日志
阮一峰的网络日志
T
The Exploit Database - CXSecurity.com
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Webroot Blog
Webroot Blog
Jina AI
Jina AI
Engineering at Meta
Engineering at Meta
P
Proofpoint News Feed
The Cloudflare Blog
I
InfoQ
L
LangChain Blog
U
Unit 42
P
Proofpoint News Feed
S
Schneier on Security
S
Security Affairs
Y
Y Combinator Blog
T
Tenable Blog
N
News and Events Feed by Topic
MyScale Blog
MyScale Blog
量子位
Google DeepMind News
Google DeepMind News
Cyberwarzone
Cyberwarzone
博客园 - 聂微东
D
Darknet – Hacking Tools, Hacker News & Cyber Security
GbyAI
GbyAI
AWS News Blog
AWS News Blog

All board posts in Global Google Educator Group

Re: Introductions! Re: Introductions! Re: 🚀 Create Cutting-Edge Educational Videos with Google Vids: A Step-by-Step Guide That Will Blow Re: 🚀 Create Cutting-Edge Educational Videos with Google Vids: A Step-by-Step Guide That Will Blow Re: Introduction Re: 🚀 Create Cutting-Edge Educational Videos with Google Vids: A Step-by-Step Guide That Will Blow Re: 🚀 Create Cutting-Edge Educational Videos with Google Vids: A Step-by-Step Guide That Will Blow Bls: Introduction Re: Introductions! Bls: Introduction Re: Introductions! Re: Introductions! Re: Introductions! Re: 12 New EduGems from May 2026 Re: Introductions! Register Today for the Missouri Summit! Re: Introductions! Rif.: BENVENUTI IN GEG ITALIA 🇮🇹 Rif.: BENVENUTI IN GEG ITALIA 🇮🇹 Re: 12 New EduGems from May 2026 12 New EduGems from May 2026 Re: GEG Italia welcomes the first Italian Google for Education Reference Municipality 🎉 Re: GEG Italia welcomes the first Italian Google for Education Reference Municipality 🎉 Re: Using Google AI for Feedback Re: Using Google AI for Feedback GEG Italia welcomes the first Italian Google for Education Reference Municipality 🎉 Re: Certificação Google Educator Level1 e 2 Gratuitas? Re: Introductions! Bls: Introductions! Re: Introductions! Re: Introductions! Re: Introductions! Re: Introductions! June 2026 Newsletter Re: Looking for a local North America GEG... Re: How have you been able to leverage Google Gemini in your Coaching Position? Bls: Introductions! Re: Introductions! Re: How have you been able to leverage Google Gemini in your Coaching Position? Re: Introductions! Bls: Gemini for Education: The Complete Tutorial Series Re: Introductions! Ferramentas do google NotebookLM Updates for May 2026 Re: Introductions! Gemini and Google Certified Educator GEG Malawi Events (recent and upcoming!) GEG Africa week! Re: Looking for a local North America GEG...
Re: Introduction
Leonise74_ed · 2026-06-10 · via All board posts in Global Google Educator Group
]*>([\S\s]*?)<\/script>/gmi, ''); str = str.replace(/<\/?\w(?:[^"'>]|"[^"]*"|'[^']*')*>/gmi, ''); element.innerHTML = str; str = element.textContent; element.textContent = ''; } return str; } return decodeHTMLEntities; })(); /** * @function openWorkbench * @description Opens the workbench link of the selected code * */ $scope.openWorkbench = function (def_Lang_Code, tid, threadhref, sourceLocale) { /* Open workbench link in new tab */ window.location.href = "/t5/custom/page/page-id/ModifyTranslation_preview?tid="+tid+"&locale="+def_Lang_Code+"&redirect_uri="+threadhref+"&sourcelocale="+sourceLocale; }; /** * @function detectBrowserLanguage * @description detects the browser language and displays the UI to request translation for browser language * */ $scope.detectBrowserLanguage = function () { /* Get cookie value of the user choice regarding browser language translation */ var brTChoice = cookieService.getBrTChoice() if (brTChoice != undefined && brTChoice == "true") { /* Do nothing if user dont want option for browser language translation */ } else { /* Get user browser language */ var brLangCode = window.navigator.userLanguage || window.navigator.language; brLang = ""; /* Get right language code of the browser language. Get the first value in the matching list */ if (brLangCode.indexOf("-") >= 0) { var obj = $filter('filter')($scope.languages, function (obj) { return obj.code === brLangCode }); if (obj.length > 0) { brLang = obj[0]; } } else { var obj = $filter('filter')($scope.languages, function (obj) { return obj.code.split("-")[0] === brLangCode }); if (obj.length > 0) { brLang = obj[0]; } } /* If browser language is valid one then provide UI to request browser language translation */ if (brLang != "") { var defaultLang = ""; if (('en-US'.indexOf(brLang.code) == -1) && (brLang.code.indexOf('en-US') == -1) && (defaultLang.indexOf(brLang.code) == -1) && (brLang.code.indexOf(defaultLang) == -1)) { $scope.brLang = brLang; $scope.brTransMsg = "brTransMsg.html"; } else { $scope.brTransMsg = ""; } } } } /** * @function neverDisplayBrTransMsg * @description sets cookie if user never want browser language translation choice * */ $scope.neverDisplayBrTransMsg = function () { cookieService.putBrTChoice() $scope.brTransMsg = ""; } /** * @function trnaslateToBrowserLang * @param {isTranslate} isTranslate - true/false * @description Requests for browser translation based on user choice * */ $scope.trnaslateToBrowserLang = function (isTranslate) { if (isTranslate) { /* Point language dropdown to browser language */ $scope.selLang = $scope.brLang.code; /* Initiate preview process for browser language */ $scope.selectThisLang($scope.selLang); /* Remove browser language translation UI */ $scope.brTransMsg = ""; } else { $scope.brTransMsg = ""; } } /* V1.4 */ /** * @function translateThisThread * @description Triggers the translation on button click * @param {mode} manual click or auto - click/null */ $scope.translateThisThread = function (mode) { if (mode != undefined && mode == 'click') { /* Cheking author decision on validation */ if ((document.querySelectorAll(".lingo-TrFlag").length == 0) && ("28824" != "-1")) { //if (!confirm("This thread is not selected for translation by the Author. Do you want to translate this thread?")) { if (!confirm("This thread is not selected for translation by the Author. Do you want to translate this thread?")) { return false; } } } $scope.showTransLation = true; /* If language exists in selected languages then initiate or manage translation */ if ("false" == "true") { $scope.selLang = ""; /* 1.4 Update Analytics on language selected */ try { lingoThreadLangSelected('', '222037'); } catch (e) { } if (angular.element(document.querySelector("#trABody"))) { console.log(angular.element(document.querySelector("trABody"))); $scope.showPreview(angular.element(document.querySelector("#trABody")).innerHTML, $scope.mszList, ""); } $scope.manageTranslation("", "222037"); } else { if ("false" == "true") { alert("Requested languages not present in the selected languages list"); } } /* Detecting Browser language */ $scope.detectBrowserLanguage(); } $rootScope.profLang = ""; /* If language exists in selected languages then initiate or manage translation */ /* Get Cookie */ function getCookie(cname) { var name = cname + "="; var ca = document.cookie.split(';'); for (var i = 0; i < ca.length; i++) { var c = ca[i]; while (c.charAt(0) == ' ') { c = c.substring(1); } if (c.indexOf(name) == 0) { return c.substring(name.length, c.length); } } return ""; } var lang_code = ""; if ("false" == "true") { /* Language from Parameter */ var lang_code = ""; } else if (anonLang = getCookie('lia.anon.profile.language')) { /* Language from cookie */ /* Get code from source list */ var srObj = $filter('filter')($scope.sourceLangList, function (obj) { return obj.id === anonLang }); if (srObj.length > 0) { /* check code in selected languages */ var selObj = $filter('filter')($scope.languages, function (obj) { return obj.code === srObj[0].code }); if (selObj.length > 0) { lang_code = srObj[0].code; } } } else if (brLangCode = window.navigator.userLanguage || window.navigator.language) { /* Browser Language */ /* Get right language code of the browser language. Get the first value in the matching list */ if (brLangCode.indexOf("-") >= 0) { var obj = $filter('filter')($scope.languages, function (obj) { return obj.code === brLangCode }); if (obj.length > 0) { lang_code = obj[0].code; } } else { var obj = $filter('filter')($scope.languages, function (obj) { return obj.code.split("-")[0] === brLangCode }); if (obj.length > 0) { lang_code = obj[0].code; } } } else { } $rootScope.profLang = lang_code; if (lang_code == "") { lang_code = "en-US"; } $scope.selLang = lang_code; if (angular.element(document.querySelector("#trABody"))) { console.log(angular.element(document.querySelector("#trABody")).innerHTML); $scope.showPreview(angular.element(document.querySelector("#trABody")).innerHTML, $scope.mszList, $scope.selLang); } $scope.showTransLation = true; $scope.selectThisLang($scope.selLang, "1"); if ("auto" == "true") { try { lingoThreadLangSelected($scope.selLang, '222037'); } catch (e) { } $scope.manageTranslation($scope.selLang, "222037"); } /* V1.4 Loading dashbaord (converted into script to remove glitch) */ $scope.dashboard = "dashboard.html"; /** * @function triggerRefresh * @description Managess the translation of given language for the thread * @param {string} langCode - Language Code * @param {string} tid - Thread ID */ $scope.triggerRefresh = function(langCode,tid) { if(confirm("Are you sure you want to manually resubmit the translation?")) { $scope.transPercent = ""; var manualTriggerTrans = lithiumPlugin.manualTriggerTrans(langCode,tid); manualTriggerTrans.then(function(status){ if(status == "refresh") { var resetTranslation = lithiumPlugin.resetTranslation(tid); resetTranslation.then(function(error){ if(error) { $rootScope.errorMsg = error.$; } else { var bulkTranslation = lithiumPlugin.bulkTranslation(langCode,tid); bulkTranslation.then(function(data){ //$rootScope.errorMsg = "Translation has been refreshed. Please refresh page after some time."; $rootScope.errorMsg = "Translation has been refreshed. Please refresh page after some time."; }); } }); } else { $rootScope.errorMsg = status; } }); } } /* V 2.0: 2 = this function called on click reply sync button */ /** * @function manualOOS * @description Sends the Out of sync check request. * */ $scope.manualTriggerOSS = function(replyID){ if($scope.transPercent!="") { var manualOSS = lithiumPlugin.manualOSS("222037",replyID); manualOSS.then(function(value){ if(!value.includes("false")) { $scope.transPercent = ""; // $rootScope.errorMsg = "Message requested for re-translation. Please refresh after some time."; //$rootScope.errorMsg = "Downloading Translated content. Please refresh after some time."; } else { // $rootScope.errorMsg = "Auto translation of message failed. Please refresh the page and retry."; // $rootScope.errorMsg = "Auto translation of message failed. Please refresh the page and retry."; } }); } else { //$rootScope.errorMsg = "Translation is in progress. Please retry after some time."; $rootScope.errorMsg = "Translation is in progress. Please retry in a few minutes."; } } }) .factory('httpInterceptor', ['$q', '$rootScope', function ($q, $rootScope) { /* httpInterceptor intercepts the http calls */ return { request: function (config) { if(config.url.indexOf("language_ep")>=0){ /* Start Loader */ $rootScope.isLoading = true; $rootScope.errorMsg = ""; } return config || $q.when(config); }, requestError: function(request){ if((request.config != undefined) && (request.config.url.indexOf("language_ep")>=0)){ /* Stop Loader */ $rootScope.isLoading = false; /* Display error message */ $rootScope.errorMsg = "Error while processing the request. Please refresh the page and retry."; } return $q.reject(request); }, response: function (response) { if(response.config.url.indexOf("language_ep")>=0){ /* Stop Loader */ $rootScope.isLoading = false; } return response || $q.when(response); }, responseError: function (response) { if((response.config != undefined) && (response.config.url.indexOf("language_ep")>=0)){ /* Display error message */ $rootScope.errorMsg = "Error while processing the request. Please refresh the page and retry."; /* Stop Loader */ $rootScope.isLoading = false; } return $q.reject(response); } }; } ]) .service('lithiumPlugin', function($http,$rootScope) { /* Service that connects the dashboard with Lithium endpoints */ /* V 1.1:7 = Converting all POST calls GET calls */ /** * @function isOutOfSync * @param {string} sourceID - Thread id * @description Sends the ot of sync check request * */ var isOutOfSync = function(sourceID) { return $http.get('/plugins/custom/google/googleeducator/language_ep_proj_callback?mode=OSS&tid='+sourceID+'&xslt=json.xsl').then(function(result){ var apiResponse = result.data; return apiResponse.result; }, function(result){ // debugger; return {"status": "false"}; }); }; /** * @function getTrContent * @param {string} code - Language code * @param {string} tid - Thread id * @description Get the translated content from Lithium. * */ var getTranslation = function(code,tid){ /* var param = { mode:'trContent', code:code, tid:tid, xslt:'json.xsl' }; */ return $http.get('/plugins/custom/google/googleeducator/language_ep_rest_connector?mode=trContent&code='+code+'&tid='+tid+'&xslt=json.xsl').then(function(result){ var apiResponse = result.data; return apiResponse.result; },function(response) { return { "id":"", "body":"", "subject":"", "status":"", "wb":"" }; }); }; /** * @function bulkTransStatus * @param {string} code - Language code * @param {string} tid - Thread id * @description Manages translation of given thread * */ var bulkTranslation = function(code,tid){ /* V1.1: 2*/ /* var param = { mode:'manageTrContent', code:code, tid:tid, xslt:'json.xsl' }; */ return $http.get('/plugins/custom/google/googleeducator/language_ep_rest_connector?mode=manageTrContent&code='+code+'&tid='+tid+'&xslt=json.xsl').then(function(result){ var apiResponse = result.data; /* V1.4:3 Update source language of content in analytics on new post */ if(apiResponse.result.posts != undefined) { var trPosts = JSON.parse(apiResponse.result.posts); angular.forEach(trPosts,function(pObj_l){ try{ lingoUpdateSource(pObj_l.source,pObj_l.tid); } catch(error) { console.log(error); } }) } return apiResponse.result; },function(response) { return { "id":"", "body":"", "status":"", "wb":"" }; }); }; /** * @function setDefaultLang * @param {string} code - Language code * @description Changes the user default language to requested language. * */ var setDefaultLang = function(code){ /* V1.1: 2*/ return $http.get("/plugins/custom/google/googleeducator/language_ep_update_settings?mode=langSet&xslt=json.xsl&code="+code).then(function(result){ return "success"; }, function(result){ return "Error. Please retry after some time"; }); }; /* V 2.0: 1 */ /** * @function resetTranslation * @param {string} tid - Thread ID * @description Calls the endpoint to reset the translation of given thread. * */ var resetTranslation = function(tid){ return $http.get('/plugins/custom/google/googleeducator/language_support?mode=refresh&tid='+tid+'&xslt=json.xsl').then(function(result){ var apiResponse = result.data; return apiResponse.logs.error; }, function(result){ return ""; }); }; /** * @function manualTriggerTrans * @param {string} code - Language code * @param {string} tid - Thread id * @description Manages translation of given thread * */ var manualTriggerTrans = function(code,tid){ /* V 2.0: 3*/ /* var param = { mode:'mtrigger', code:code, tid:tid, xslt:'json.xsl' }; */ return $http.get('/plugins/custom/google/googleeducator/language_ep_proj_callback?mode=mtrigger&code='+code+'&tid='+tid+'&xslt=json.xsl').then(function(result){ var apiResponse = result.data; return apiResponse.result.status; },function(response) { return "Please retry after some time."; }); }; /** @function isOutOfSync * @param {string} sourceID - Thread id * @description Sends the ot of sync check request * */ var manualOSS = function(sourceID,replyID) { return $http.get('/plugins/custom/google/googleeducator/language_ep_proj_callback?mode=manualOSS&tid='+sourceID+'&reply='+replyID+'&xslt=json.xsl').then(function(result){ var apiResponse = result.data; return apiResponse.result.status; }, function(result){ // debugger; return "false"; }); }; /* V 2.0: 3 */ /** * @function trCompletCallback * @param {string} code - Language code * @param {string} docID - Document id * @description Triggers the translation completed callback from Lithium * */ var trCompletCallback = function(code,docID){ return $http.get('/plugins/custom/google/googleeducator/language_ep_proj_callback?mode=callback&type=target&progress=100&document_id='+docID+'&locale_code='+code+'&xslt=json.xsl').then(function(result){ var apiResponse = result.data; return apiResponse.result.status; },function(response) { return "Please retry after some time."; }); }; /* V 2.0: 3 */ /** * @function trCompletUpload * @param {string} code - Language code * @param {string} docID - Document id * @description Triggers the document upload callback from Lithium * */ var trCompletUpload = function(code,docID){ return $http.get('/plugins/custom/google/googleeducator/language_ep_proj_callback?mode=callback&type=document_uploaded&progress=0&document_id='+docID+'&xslt=json.xsl').then(function(result){ var apiResponse = result.data; return apiResponse.result.status; },function(response) { return "Please retry after some time."; }); }; return { isOutOfSync:isOutOfSync, getTranslation:getTranslation, bulkTranslation:bulkTranslation, setDefaultLang:setDefaultLang, resetTranslation:resetTranslation, manualTriggerTrans:manualTriggerTrans, manualOSS:manualOSS, trCompletCallback:trCompletCallback, trCompletUpload:trCompletUpload }; }) .service("cookieService",function(){ /* Service for cookie storage */ /** * @function getBrTChoice * @description Returns the cookie set for browser language translation. * */ var getBrTChoice = function() { var cname = "it_lang_notify_hide"; var name = cname + "="; var ca = document.cookie.split(';'); for(var i=0; i', { class: 'avatar-role-icon', src: '/html/assets/googleLogo.png' }); element.append(img); } }, error: function(err) { console.log(err); } }); }); }; processAvatars($(".UsersOnlineAvatarsTaplet a")); processAvatars($(".lia-node-activity .UserAvatar.lia-link-navigation")); }); })(LITHIUM.jQuery); } catch (err) { console.log(err); } ;(function ($) { 'use strict'; var currentIdVal = "-1"; var endpointUrl = "/plugins/custom/google/googleeducator/custom.hub_access"; var nodeId = "educator_collaboration"; var ancestorIds = []; ancestorIds.push("educators"); ancestorIds.push("primary_and_secondary_education"); ancestorIds.push("qjstt96257"); var HUB_CONFIG = { "higher-education": "ELP_HUB", "admin_hub": "adminHub", "education-leadership": "leadershipHub", "educators": "educators-community" }; var ROLE_CHECK = { "higher-education": false, "admin_hub": false, "education-leadership": false, "educators": false }; var isGlobalAdmin = false; var hubKey = ""; var hubType = ""; var nodeHierarchy = [nodeId].concat(ancestorIds).reverse(); nodeHierarchy.some(function (id) { if (HUB_CONFIG[id]) { hubKey = id; hubType = HUB_CONFIG[id]; return true; } return false; }); if (!hubType) { return; } if (ROLE_CHECK[hubKey] || isGlobalAdmin) { return; } var finalUrl = endpointUrl + '?hubType=' + encodeURIComponent(hubType) + '¤tId=' + encodeURIComponent(currentIdVal); $.ajax({ type: 'POST', url: finalUrl, success: function () { }, error: function (err) { } }); })(LITHIUM.jQuery); LITHIUM.Link({"linkSelector":"a.lia-link-ticket-post-action"}); LITHIUM.AjaxSupport.defaultAjaxFeedbackHtml = "

\n\t\t\t

<\/div>\n\t\t\t\n\t\n\n\t\n\n\t\t<\/div>"; LITHIUM.AjaxSupport.defaultAjaxErrorHtml = " <\/span>\n\n\t\n\t\t

\n\t\t\t

\n\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\t

\n\t\t\t\t\t\tSorry, unable to complete the action you requested.\n\t\t\t\t\t<\/p>\n\t\t\t\t\n\n\t\t\t\t\n\n\t\t\t\t\n\n\t\t\t\t\n\t\t\t<\/div>\n\n\t\t\t\n\t\t<\/div>"; LITHIUM.AjaxSupport.fromLink('#link_0', 'acceptCookieEvent', 'false', 'LITHIUM:ajaxError', {}, 'kpUv3-x_lbhALqcWDanXtW5PNaLB6JmgVdqAT_8Xg4o.', 'ajax'); LITHIUM.AjaxSupport.fromLink('#link_1', 'rejectCookieEvent', 'false', 'LITHIUM:ajaxError', {}, 'sQyOtGl71_u3lzWjz93xPJMuec21vjEMkw9xdbaJIj4.', 'ajax'); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:lightboxRenderComponent","parameters":{"componentParams":"{\n \"triggerSelector\" : {\n \"value\" : \"#link_2\",\n \"class\" : \"lithium.util.css.CssSelector\"\n }\n}","componentId":"cookie.preferences"},"trackableEvent":false},"tokenId":"ajax","elementSelector":"#link_2","action":"lightboxRenderComponent","feedbackSelector":false,"url":"https://www.googleforeducommunity.com/t5/forums/v5/forumtopicpage.cookiebanneralertv2.link_1:lightboxrendercomponent?t:ac=board-id/educator_collaboration/message-id/498&t:cp=gdprcookiebanner/contributions/cookiebannercontributionpage","ajaxErrorEventName":"LITHIUM:ajaxError","token":"_nqGvLjX08DyM1Bx1vm39jK69uzaZcZJhfAGgGktWC0."}); LITHIUM.Dialog.options['211291241'] = {"contentContext":"cookie.preferences","dialogOptions":{"minHeight":399,"draggable":true,"maxHeight":1400,"dialogContentClass":"lia-cookie-banner-preferences-dialog-body","autoOpen":false,"width":710,"minWidth":760,"dialogClass":"lia-cookie-banner-preferences-dialog","position":["center","center"],"title":"Privacy Preferences","modal":false,"maxWidth":910},"contentType":"ajax"}; LITHIUM.Dialog({ "closeImageIconURL" : "https://www.googleforeducommunity.com/skins/images/CC3497EAB8217C3ECCFD0F3532CE7181/theme_hermes/images/button_dialog_close.svg", "activecastFullscreen" : false, "dialogTitleHeadingLevel" : "2", "dropdownMenuSelector" : ".lia-menu-navigation-wrapper", "accessibility" : true, "triggerSelector" : ".lia-panel-dialog-trigger-event-click", "ajaxEvent" : "LITHIUM:lightboxRenderComponent", "focusOnDialogTriggerWhenClosed" : false, "closeEvent" : "LITHIUM:lightboxCloseEvent", "defaultAriaLabel" : "", "dropdownMenuOpenerSelector" : ".lia-js-menu-opener", "buttonDialogCloseAlt" : "Close", "dialogContentCssClass" : "lia-panel-dialog-content", "triggerEvent" : "click", "dialogKey" : "dialogKey" }); LITHIUM.Form.resetFieldForFocusFound(); LITHIUM.CookieBannerAlert({"cookieBannerAlertContent":".lia-cookie-banner-alert-text-content","privacyPolicyURL":"https://policies.google.com/technologies/cookies"}); LITHIUM.DropDownMenu({"userMessagesFeedOptionsClass":"div.user-messages-feed-options-menu a.lia-js-menu-opener","menuOffsetContainer":".lia-menu-offset-container","hoverLeaveEvent":"LITHIUM:hoverLeave","mouseoverElementSelector":".lia-js-mouseover-menu","userMessagesFeedOptionsAriaLabel":"Show contributions of the user, selected option is Options. You may choose another option from the dropdown menu.","disabledLink":"lia-link-disabled","menuOpenCssClass":"dropdownHover","menuElementSelector":".lia-menu-navigation-wrapper","dialogSelector":".lia-panel-dialog-trigger","messageOptions":"lia-component-message-view-widget-action-menu","menuBarComponent":"lia-component-menu-bar","closeMenuEvent":"LITHIUM:closeMenu","menuOpenedEvent":"LITHIUM:menuOpened","pageOptions":"lia-component-community-widget-page-options","clickElementSelector":".lia-js-click-menu","menuItemsSelector":".lia-menu-dropdown-items","menuClosedEvent":"LITHIUM:menuClosed"}); LITHIUM.DropDownMenuVisibilityHandler({"selectors":{"menuSelector":"#actionMenuDropDown","menuItemsSelector":".lia-menu-dropdown-items"}}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#pageInformation","feedbackSelector":".InfoMessage"}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox","feedbackSelector":".InfoMessage"}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_0","feedbackSelector":".InfoMessage"}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_1","feedbackSelector":".InfoMessage"}); LITHIUM.DropDownMenu({"userMessagesFeedOptionsClass":"div.user-messages-feed-options-menu a.lia-js-menu-opener","menuOffsetContainer":".lia-menu-offset-container","hoverLeaveEvent":"LITHIUM:hoverLeave","mouseoverElementSelector":".lia-js-mouseover-menu","userMessagesFeedOptionsAriaLabel":"Show contributions of the user, selected option is Show Introduction post option menu. You may choose another option from the dropdown menu.","disabledLink":"lia-link-disabled","menuOpenCssClass":"dropdownHover","menuElementSelector":".lia-menu-navigation-wrapper","dialogSelector":".lia-panel-dialog-trigger","messageOptions":"lia-component-message-view-widget-action-menu","menuBarComponent":"lia-component-menu-bar","closeMenuEvent":"LITHIUM:closeMenu","menuOpenedEvent":"LITHIUM:menuOpened","pageOptions":"lia-component-community-widget-page-options","clickElementSelector":".lia-js-click-menu","menuItemsSelector":".lia-menu-dropdown-items","menuClosedEvent":"LITHIUM:menuClosed"}); LITHIUM.DropDownMenuVisibilityHandler({"selectors":{"menuSelector":"#actionMenuDropDown_0","menuItemsSelector":".lia-menu-dropdown-items"}}); LITHIUM.MessageBodyDisplay('#bodyDisplay', '.lia-truncated-body-container', '#viewMoreLink', '.lia-full-body-container' ); LITHIUM.CustomEvent('.lia-custom-event', 'click'); LITHIUM.AjaxSupport.fromLink('#kudoEntity', 'kudoEntity', '#ajaxfeedback', 'LITHIUM:ajaxError', {}, '4EpMoVywf0jIFb0_w_a3q3bgpw07bi5dxmnbYWj-60M.', 'ajax'); LITHIUM.AjaxSupport.ComponentEvents.set({ "eventActions" : [ { "event" : "kudoEntity", "actions" : [ { "context" : "envParam:entity", "action" : "rerender" } ] } ], "componentId" : "kudos.widget.button", "initiatorBinding" : true, "selector" : "#kudosButtonV2", "parameters" : { "displayStyle" : "horizontal", "disallowZeroCount" : "false", "revokeMode" : "true", "kudosable" : "true", "showCountOnly" : "false", "disableKudosForAnonUser" : "false", "useCountToKudo" : "false", "entity" : "222037", "linkDisabled" : "false" }, "initiatorDataMatcher" : "data-lia-kudos-id" }); LITHIUM.InlineMessageReplyContainer({"openEditsSelector":".lia-inline-message-edit","renderEventParams":{"replyWrapperId":"replyWrapper","messageId":222037,"messageActionsId":"messageActions"},"isRootMessage":true,"collapseEvent":"LITHIUM:collapseInlineMessageEditor","confimationText":"You have other message editors open and your data inside of them might be lost. Are you sure you want to proceed?","messageActionsSelector":"#messageActions","loaderSelector":"#loader","topicMessageSelector":".lia-forum-topic-message-gte-5","containerSelector":"#inlineMessageReplyContainer","loaderEnabled":false,"useSimpleEditor":false,"isReplyButtonDisabled":false,"linearDisplayViewSelector":".lia-linear-display-message-view","threadedDetailDisplayViewSelector":".lia-threaded-detail-display-message-view","replyEditorPlaceholderWrapperSelector":".lia-placeholder-wrapper","renderEvent":"LITHIUM:renderInlineMessageReply","expandedRepliesSelector":".lia-inline-message-reply-form-expanded","isLazyLoadEnabled":false,"layoutView":"threaded","isAllowAnonUserToReply":false,"replyButtonSelector":".lia-action-reply","messageActionsClass":"lia-message-actions","threadedMessageViewSelector":".lia-threaded-display-message-view-wrapper","lazyLoadScriptsEvent":"LITHIUM:lazyLoadScripts","isGteForumV5":true}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:renderInlineMessageReply"},"tokenId":"ajax","elementSelector":"#inlineMessageReplyContainer","action":"renderInlineMessageReply","feedbackSelector":"#inlineMessageReplyContainer","url":"https://www.googleforeducommunity.com/t5/forums/v5/forumtopicpage.inlinemessagereplycontainer:renderinlinemessagereply?t:ac=board-id/educator_collaboration/message-id/498&t:cp=messages/contributions/messageeditorscontributionpage","ajaxErrorEventName":"LITHIUM:ajaxError","token":"yyg_sHeauSOgmyjrRvv4PXyt-dmmIIZ1xegP7xg6lNo."}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:lazyLoadScripts"},"tokenId":"ajax","elementSelector":"#inlineMessageReplyContainer","action":"lazyLoadScripts","feedbackSelector":"#inlineMessageReplyContainer","url":"https://www.googleforeducommunity.com/t5/forums/v5/forumtopicpage.inlinemessagereplycontainer:lazyloadscripts?t:ac=board-id/educator_collaboration/message-id/498&t:cp=messages/contributions/messageeditorscontributionpage","ajaxErrorEventName":"LITHIUM:ajaxError","token":"PoTY0pmgYJltcfWSMWnPN381FWd6nAAvR0J0Eq4d_7M."}); LITHIUM.AjaxFeedback(".lia-inline-ajax-feedback", "LITHIUM:hideAjaxFeedback", ".lia-inline-ajax-feedback-persist"); LITHIUM.AjaxSupport.ComponentEvents.set({ "eventActions" : [ { "event" : "approveMessage", "actions" : [ { "context" : "", "action" : "rerender" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "unapproveMessage", "actions" : [ { "context" : "", "action" : "rerender" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "deleteMessage", "actions" : [ { "context" : "lia-deleted-state", "action" : "addClassName" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "QuickReply", "actions" : [ { "context" : "envParam:feedbackData", "action" : "rerender" } ] }, { "event" : "expandMessage", "actions" : [ { "context" : "envParam:quiltName,expandedQuiltName", "action" : "rerender" } ] }, { "event" : "ProductAnswer", "actions" : [ { "context" : "envParam:quiltName", "action" : "rerender" } ] }, { "event" : "ProductAnswerComment", "actions" : [ { "context" : "envParam:selectedMessage", "action" : "rerender" } ] }, { "event" : "editProductMessage", "actions" : [ { "context" : "envParam:quiltName,message", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditAction", "actions" : [ { "context" : "envParam:quiltName,message,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "ProductMessageEdit", "actions" : [ { "context" : "envParam:quiltName", "action" : "rerender" } ] }, { "event" : "MessagesWidgetMessageEdit", "actions" : [ { "context" : "envParam:quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "AcceptSolutionAction", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "RevokeSolutionAction", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "addThreadUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "removeThreadUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "addMessageUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "removeMessageUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "markAsSpamWithoutRedirect", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "MessagesWidgetAnswerForm", "actions" : [ { "context" : "envParam:messageUid,page,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditAnswerForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetCommentForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditCommentForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] } ], "componentId" : "forums.widget.message-view", "initiatorBinding" : true, "selector" : "#messageview", "parameters" : { "disableLabelLinks" : "false", "truncateBodyRetainsHtml" : "false", "forceSearchRequestParameterForBlurbBuilder" : "false", "kudosLinksDisabled" : "false", "useSubjectIcons" : "true", "quiltName" : "ForumMessage", "truncateBody" : "true", "message" : "222037", "includeRepliesModerationState" : "true", "syndicatedView" : "false", "useSimpleView" : "false", "useTruncatedSubject" : "true", "disableLinks" : "false", "messageViewOptions" : "1101110111111111111110111110100101111101", "displaySubject" : "true" }, "initiatorDataMatcher" : "data-lia-message-uid" }); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_2","feedbackSelector":".InfoMessage"}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_3","feedbackSelector":".InfoMessage"}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_4","feedbackSelector":".InfoMessage"}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_5","feedbackSelector":".InfoMessage"}); LITHIUM.DropDownMenu({"userMessagesFeedOptionsClass":"div.user-messages-feed-options-menu a.lia-js-menu-opener","menuOffsetContainer":".lia-menu-offset-container","hoverLeaveEvent":"LITHIUM:hoverLeave","mouseoverElementSelector":".lia-js-mouseover-menu","userMessagesFeedOptionsAriaLabel":"Show contributions of the user, selected option is Show comment option menu. You may choose another option from the dropdown menu.","disabledLink":"lia-link-disabled","menuOpenCssClass":"dropdownHover","menuElementSelector":".lia-menu-navigation-wrapper","dialogSelector":".lia-panel-dialog-trigger","messageOptions":"lia-component-message-view-widget-action-menu","menuBarComponent":"lia-component-menu-bar","closeMenuEvent":"LITHIUM:closeMenu","menuOpenedEvent":"LITHIUM:menuOpened","pageOptions":"lia-component-community-widget-page-options","clickElementSelector":".lia-js-click-menu","menuItemsSelector":".lia-menu-dropdown-items","menuClosedEvent":"LITHIUM:menuClosed"}); LITHIUM.DropDownMenuVisibilityHandler({"selectors":{"menuSelector":"#actionMenuDropDown_1","menuItemsSelector":".lia-menu-dropdown-items"}}); LITHIUM.MessageBodyDisplay('#bodyDisplay_0', '.lia-truncated-body-container', '#viewMoreLink', '.lia-full-body-container' ); LITHIUM.AjaxSupport.fromLink('#kudoEntity_0', 'kudoEntity', '#ajaxfeedback_0', 'LITHIUM:ajaxError', {}, '6wtobSEOidGrHMY2fo43tsRxH9yYi7cA9eKEAgHlPfo.', 'ajax'); LITHIUM.AjaxSupport.ComponentEvents.set({ "eventActions" : [ { "event" : "kudoEntity", "actions" : [ { "context" : "envParam:entity", "action" : "rerender" } ] } ], "componentId" : "kudos.widget.button", "initiatorBinding" : true, "selector" : "#kudosButtonV2_0", "parameters" : { "displayStyle" : "horizontal", "disallowZeroCount" : "false", "revokeMode" : "true", "kudosable" : "true", "showCountOnly" : "false", "disableKudosForAnonUser" : "false", "useCountToKudo" : "false", "entity" : "222589", "linkDisabled" : "false" }, "initiatorDataMatcher" : "data-lia-kudos-id" }); LITHIUM.InlineMessageReplyContainer({"openEditsSelector":".lia-inline-message-edit","renderEventParams":{"replyWrapperId":"replyWrapper_0","messageId":222589,"messageActionsId":"messageActions_0"},"isRootMessage":false,"collapseEvent":"LITHIUM:collapseInlineMessageEditor","confimationText":"You have other message editors open and your data inside of them might be lost. Are you sure you want to proceed?","messageActionsSelector":"#messageActions_0","loaderSelector":"#loader","topicMessageSelector":".lia-forum-topic-message-gte-5","containerSelector":"#inlineMessageReplyContainer_0","loaderEnabled":false,"useSimpleEditor":false,"isReplyButtonDisabled":false,"linearDisplayViewSelector":".lia-linear-display-message-view","threadedDetailDisplayViewSelector":".lia-threaded-detail-display-message-view","replyEditorPlaceholderWrapperSelector":".lia-placeholder-wrapper","renderEvent":"LITHIUM:renderInlineMessageReply","expandedRepliesSelector":".lia-inline-message-reply-form-expanded","isLazyLoadEnabled":false,"layoutView":"threaded","isAllowAnonUserToReply":false,"replyButtonSelector":".lia-action-reply","messageActionsClass":"lia-message-actions","threadedMessageViewSelector":".lia-threaded-display-message-view-wrapper","lazyLoadScriptsEvent":"LITHIUM:lazyLoadScripts","isGteForumV5":true}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:renderInlineMessageReply"},"tokenId":"ajax","elementSelector":"#inlineMessageReplyContainer_0","action":"renderInlineMessageReply","feedbackSelector":"#inlineMessageReplyContainer_0","url":"https://www.googleforeducommunity.com/t5/forums/v5/forumtopicpage.inlinemessagereplycontainer:renderinlinemessagereply?t:ac=board-id/educator_collaboration/message-id/498&t:cp=messages/contributions/messageeditorscontributionpage","ajaxErrorEventName":"LITHIUM:ajaxError","token":"TnXdI049KpgfTxRNRPm-3w2HZYKVWg-MvM7D-srVxWA."}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:lazyLoadScripts"},"tokenId":"ajax","elementSelector":"#inlineMessageReplyContainer_0","action":"lazyLoadScripts","feedbackSelector":"#inlineMessageReplyContainer_0","url":"https://www.googleforeducommunity.com/t5/forums/v5/forumtopicpage.inlinemessagereplycontainer:lazyloadscripts?t:ac=board-id/educator_collaboration/message-id/498&t:cp=messages/contributions/messageeditorscontributionpage","ajaxErrorEventName":"LITHIUM:ajaxError","token":"yGcpY220h1A-VeZMhs_WiZhsZNZUED0MHO8Ae0yXJxM."}); LITHIUM.AjaxSupport.ComponentEvents.set({ "eventActions" : [ { "event" : "approveMessage", "actions" : [ { "context" : "", "action" : "rerender" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "unapproveMessage", "actions" : [ { "context" : "", "action" : "rerender" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "deleteMessage", "actions" : [ { "context" : "lia-deleted-state", "action" : "addClassName" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "QuickReply", "actions" : [ { "context" : "envParam:feedbackData", "action" : "rerender" } ] }, { "event" : "expandMessage", "actions" : [ { "context" : "envParam:quiltName,expandedQuiltName", "action" : "rerender" } ] }, { "event" : "ProductAnswer", "actions" : [ { "context" : "envParam:quiltName", "action" : "rerender" } ] }, { "event" : "ProductAnswerComment", "actions" : [ { "context" : "envParam:selectedMessage", "action" : "rerender" } ] }, { "event" : "editProductMessage", "actions" : [ { "context" : "envParam:quiltName,message", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditAction", "actions" : [ { "context" : "envParam:quiltName,message,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "ProductMessageEdit", "actions" : [ { "context" : "envParam:quiltName", "action" : "rerender" } ] }, { "event" : "MessagesWidgetMessageEdit", "actions" : [ { "context" : "envParam:quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "AcceptSolutionAction", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "RevokeSolutionAction", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "addThreadUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "removeThreadUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "addMessageUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "removeMessageUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "markAsSpamWithoutRedirect", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "MessagesWidgetAnswerForm", "actions" : [ { "context" : "envParam:messageUid,page,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditAnswerForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetCommentForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditCommentForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] } ], "componentId" : "forums.widget.message-view", "initiatorBinding" : true, "selector" : "#messageview_0", "parameters" : { "disableLabelLinks" : "false", "truncateBodyRetainsHtml" : "false", "forceSearchRequestParameterForBlurbBuilder" : "false", "kudosLinksDisabled" : "false", "useSubjectIcons" : "true", "quiltName" : "ForumMessage", "truncateBody" : "true", "message" : "222589", "includeRepliesModerationState" : "true", "syndicatedView" : "false", "useSimpleView" : "false", "useTruncatedSubject" : "true", "disableLinks" : "false", "messageViewOptions" : "1111110111111111111110111110100101011101", "displaySubject" : "true" }, "initiatorDataMatcher" : "data-lia-message-uid" }); LITHIUM.MessageViewDisplay({"openEditsSelector":".lia-inline-message-edit","renderInlineFormEvent":"LITHIUM:renderInlineEditForm","componentId":"threadeddetaildisplaymessageviewwrapper","componentSelector":"#threadeddetaildisplaymessageviewwrapper","editEvent":"LITHIUM:editMessageViaAjax","collapseEvent":"LITHIUM:collapseInlineMessageEditor","messageId":222589,"confimationText":"You have other message editors open and your data inside of them might be lost. Are you sure you want to proceed?","loaderSelector":"#threadeddetaildisplaymessageviewwrapper .lia-message-body-loader .lia-loader","expandedRepliesSelector":".lia-inline-message-reply-form-expanded"}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:renderInlineEditForm"},"tokenId":"ajax","elementSelector":"#threadeddetaildisplaymessageviewwrapper","action":"renderInlineEditForm","feedbackSelector":"#threadeddetaildisplaymessageviewwrapper","url":"https://www.googleforeducommunity.com/t5/forums/v5/forumtopicpage.threadeddetaildisplay.threadeddetailmessagelist.threadeddetaildisplaymessageviewwrapper:renderinlineeditform?t:ac=board-id/educator_collaboration/message-id/498","ajaxErrorEventName":"LITHIUM:ajaxError","token":"iEezkSQj_gqzo2S5_CUYkDt93m7ga6sk6haG2lelwNU."}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_6","feedbackSelector":".InfoMessage"}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_7","feedbackSelector":".InfoMessage"}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_8","feedbackSelector":".InfoMessage"}); LITHIUM.DropDownMenuVisibilityHandler({"selectors":{"menuSelector":"#actionMenuDropDown_2","menuItemsSelector":".lia-menu-dropdown-items"}}); LITHIUM.MessageBodyDisplay('#bodyDisplay_1', '.lia-truncated-body-container', '#viewMoreLink', '.lia-full-body-container' ); LITHIUM.AjaxSupport.fromLink('#kudoEntity_1', 'kudoEntity', '#ajaxfeedback_1', 'LITHIUM:ajaxError', {}, 'Dgw4UIybfKx76267WtBjmrXSUsYPVI-LDJV1sbZvYyo.', 'ajax'); LITHIUM.AjaxSupport.ComponentEvents.set({ "eventActions" : [ { "event" : "kudoEntity", "actions" : [ { "context" : "envParam:entity", "action" : "rerender" } ] } ], "componentId" : "kudos.widget.button", "initiatorBinding" : true, "selector" : "#kudosButtonV2_1", "parameters" : { "displayStyle" : "horizontal", "disallowZeroCount" : "false", "revokeMode" : "true", "kudosable" : "true", "showCountOnly" : "false", "disableKudosForAnonUser" : "false", "useCountToKudo" : "false", "entity" : "222874", "linkDisabled" : "false" }, "initiatorDataMatcher" : "data-lia-kudos-id" }); LITHIUM.InlineMessageReplyContainer({"openEditsSelector":".lia-inline-message-edit","renderEventParams":{"replyWrapperId":"replyWrapper_1","messageId":222874,"messageActionsId":"messageActions_1"},"isRootMessage":false,"collapseEvent":"LITHIUM:collapseInlineMessageEditor","confimationText":"You have other message editors open and your data inside of them might be lost. Are you sure you want to proceed?","messageActionsSelector":"#messageActions_1","loaderSelector":"#loader","topicMessageSelector":".lia-forum-topic-message-gte-5","containerSelector":"#inlineMessageReplyContainer_1","loaderEnabled":false,"useSimpleEditor":false,"isReplyButtonDisabled":false,"linearDisplayViewSelector":".lia-linear-display-message-view","threadedDetailDisplayViewSelector":".lia-threaded-detail-display-message-view","replyEditorPlaceholderWrapperSelector":".lia-placeholder-wrapper","renderEvent":"LITHIUM:renderInlineMessageReply","expandedRepliesSelector":".lia-inline-message-reply-form-expanded","isLazyLoadEnabled":false,"layoutView":"threaded","isAllowAnonUserToReply":false,"replyButtonSelector":".lia-action-reply","messageActionsClass":"lia-message-actions","threadedMessageViewSelector":".lia-threaded-display-message-view-wrapper","lazyLoadScriptsEvent":"LITHIUM:lazyLoadScripts","isGteForumV5":true}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:renderInlineMessageReply"},"tokenId":"ajax","elementSelector":"#inlineMessageReplyContainer_1","action":"renderInlineMessageReply","feedbackSelector":"#inlineMessageReplyContainer_1","url":"https://www.googleforeducommunity.com/t5/forums/v5/forumtopicpage.inlinemessagereplycontainer:renderinlinemessagereply?t:ac=board-id/educator_collaboration/message-id/498&t:cp=messages/contributions/messageeditorscontributionpage","ajaxErrorEventName":"LITHIUM:ajaxError","token":"bjm17q9A_JProWBe2V2OOpV6O6qSXVX8ycqRlsBmUQ8."}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:lazyLoadScripts"},"tokenId":"ajax","elementSelector":"#inlineMessageReplyContainer_1","action":"lazyLoadScripts","feedbackSelector":"#inlineMessageReplyContainer_1","url":"https://www.googleforeducommunity.com/t5/forums/v5/forumtopicpage.inlinemessagereplycontainer:lazyloadscripts?t:ac=board-id/educator_collaboration/message-id/498&t:cp=messages/contributions/messageeditorscontributionpage","ajaxErrorEventName":"LITHIUM:ajaxError","token":"jYWz0LXMZyfOwJzwvr_Iux20Zwa4U9hV3TnJlbr8a-Q."}); LITHIUM.AjaxSupport.ComponentEvents.set({ "eventActions" : [ { "event" : "approveMessage", "actions" : [ { "context" : "", "action" : "rerender" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "unapproveMessage", "actions" : [ { "context" : "", "action" : "rerender" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "deleteMessage", "actions" : [ { "context" : "lia-deleted-state", "action" : "addClassName" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "QuickReply", "actions" : [ { "context" : "envParam:feedbackData", "action" : "rerender" } ] }, { "event" : "expandMessage", "actions" : [ { "context" : "envParam:quiltName,expandedQuiltName", "action" : "rerender" } ] }, { "event" : "ProductAnswer", "actions" : [ { "context" : "envParam:quiltName", "action" : "rerender" } ] }, { "event" : "ProductAnswerComment", "actions" : [ { "context" : "envParam:selectedMessage", "action" : "rerender" } ] }, { "event" : "editProductMessage", "actions" : [ { "context" : "envParam:quiltName,message", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditAction", "actions" : [ { "context" : "envParam:quiltName,message,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "ProductMessageEdit", "actions" : [ { "context" : "envParam:quiltName", "action" : "rerender" } ] }, { "event" : "MessagesWidgetMessageEdit", "actions" : [ { "context" : "envParam:quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "AcceptSolutionAction", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "RevokeSolutionAction", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "addThreadUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "removeThreadUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "addMessageUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "removeMessageUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "markAsSpamWithoutRedirect", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "MessagesWidgetAnswerForm", "actions" : [ { "context" : "envParam:messageUid,page,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditAnswerForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetCommentForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditCommentForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] } ], "componentId" : "forums.widget.message-view", "initiatorBinding" : true, "selector" : "#messageview_1", "parameters" : { "disableLabelLinks" : "false", "truncateBodyRetainsHtml" : "false", "forceSearchRequestParameterForBlurbBuilder" : "false", "kudosLinksDisabled" : "false", "useSubjectIcons" : "true", "quiltName" : "ForumMessage", "truncateBody" : "true", "message" : "222874", "includeRepliesModerationState" : "true", "syndicatedView" : "false", "useSimpleView" : "false", "useTruncatedSubject" : "true", "disableLinks" : "false", "messageViewOptions" : "1111110111111111111110111110100101011101", "displaySubject" : "true" }, "initiatorDataMatcher" : "data-lia-message-uid" }); LITHIUM.MessageViewDisplay({"openEditsSelector":".lia-inline-message-edit","renderInlineFormEvent":"LITHIUM:renderInlineEditForm","componentId":"threadeddetaildisplaymessageviewwrapper_0","componentSelector":"#threadeddetaildisplaymessageviewwrapper_0","editEvent":"LITHIUM:editMessageViaAjax","collapseEvent":"LITHIUM:collapseInlineMessageEditor","messageId":222874,"confimationText":"You have other message editors open and your data inside of them might be lost. Are you sure you want to proceed?","loaderSelector":"#threadeddetaildisplaymessageviewwrapper_0 .lia-message-body-loader .lia-loader","expandedRepliesSelector":".lia-inline-message-reply-form-expanded"}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:renderInlineEditForm"},"tokenId":"ajax","elementSelector":"#threadeddetaildisplaymessageviewwrapper_0","action":"renderInlineEditForm","feedbackSelector":"#threadeddetaildisplaymessageviewwrapper_0","url":"https://www.googleforeducommunity.com/t5/forums/v5/forumtopicpage.threadeddetaildisplay.threadeddetailmessagelist.threadeddetaildisplaymessageviewwrapper:renderinlineeditform?t:ac=board-id/educator_collaboration/message-id/498","ajaxErrorEventName":"LITHIUM:ajaxError","token":"f9yqdN00EdiwgDyGxcB8YNUUxMLMKM9PgafEkt-HRCI."}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_9","feedbackSelector":".InfoMessage"}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_10","feedbackSelector":".InfoMessage"}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_11","feedbackSelector":".InfoMessage"}); LITHIUM.DropDownMenuVisibilityHandler({"selectors":{"menuSelector":"#actionMenuDropDown_3","menuItemsSelector":".lia-menu-dropdown-items"}}); LITHIUM.MessageBodyDisplay('#bodyDisplay_2', '.lia-truncated-body-container', '#viewMoreLink', '.lia-full-body-container' ); LITHIUM.AjaxSupport.fromLink('#kudoEntity_2', 'kudoEntity', '#ajaxfeedback_2', 'LITHIUM:ajaxError', {}, 'U26aaIDBSeHfP_yQF86oGPUriwHqzXarj5j_xmfZfvY.', 'ajax'); LITHIUM.AjaxSupport.ComponentEvents.set({ "eventActions" : [ { "event" : "kudoEntity", "actions" : [ { "context" : "envParam:entity", "action" : "rerender" } ] } ], "componentId" : "kudos.widget.button", "initiatorBinding" : true, "selector" : "#kudosButtonV2_2", "parameters" : { "displayStyle" : "horizontal", "disallowZeroCount" : "false", "revokeMode" : "true", "kudosable" : "true", "showCountOnly" : "false", "disableKudosForAnonUser" : "false", "useCountToKudo" : "false", "entity" : "246050", "linkDisabled" : "false" }, "initiatorDataMatcher" : "data-lia-kudos-id" }); LITHIUM.InlineMessageReplyContainer({"openEditsSelector":".lia-inline-message-edit","renderEventParams":{"replyWrapperId":"replyWrapper_2","messageId":246050,"messageActionsId":"messageActions_2"},"isRootMessage":false,"collapseEvent":"LITHIUM:collapseInlineMessageEditor","confimationText":"You have other message editors open and your data inside of them might be lost. Are you sure you want to proceed?","messageActionsSelector":"#messageActions_2","loaderSelector":"#loader","topicMessageSelector":".lia-forum-topic-message-gte-5","containerSelector":"#inlineMessageReplyContainer_2","loaderEnabled":false,"useSimpleEditor":false,"isReplyButtonDisabled":false,"linearDisplayViewSelector":".lia-linear-display-message-view","threadedDetailDisplayViewSelector":".lia-threaded-detail-display-message-view","replyEditorPlaceholderWrapperSelector":".lia-placeholder-wrapper","renderEvent":"LITHIUM:renderInlineMessageReply","expandedRepliesSelector":".lia-inline-message-reply-form-expanded","isLazyLoadEnabled":false,"layoutView":"threaded","isAllowAnonUserToReply":false,"replyButtonSelector":".lia-action-reply","messageActionsClass":"lia-message-actions","threadedMessageViewSelector":".lia-threaded-display-message-view-wrapper","lazyLoadScriptsEvent":"LITHIUM:lazyLoadScripts","isGteForumV5":true}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:renderInlineMessageReply"},"tokenId":"ajax","elementSelector":"#inlineMessageReplyContainer_2","action":"renderInlineMessageReply","feedbackSelector":"#inlineMessageReplyContainer_2","url":"https://www.googleforeducommunity.com/t5/forums/v5/forumtopicpage.inlinemessagereplycontainer:renderinlinemessagereply?t:ac=board-id/educator_collaboration/message-id/498&t:cp=messages/contributions/messageeditorscontributionpage","ajaxErrorEventName":"LITHIUM:ajaxError","token":"kllqxInoAXptrp8p7XA-8V3ut6D7XCwlKBHa3sXBDz8."}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:lazyLoadScripts"},"tokenId":"ajax","elementSelector":"#inlineMessageReplyContainer_2","action":"lazyLoadScripts","feedbackSelector":"#inlineMessageReplyContainer_2","url":"https://www.googleforeducommunity.com/t5/forums/v5/forumtopicpage.inlinemessagereplycontainer:lazyloadscripts?t:ac=board-id/educator_collaboration/message-id/498&t:cp=messages/contributions/messageeditorscontributionpage","ajaxErrorEventName":"LITHIUM:ajaxError","token":"shD2GQ0Vc7YL6BYnKul3VFxlZ5FAv6phEW6EE7ZmLmA."}); LITHIUM.AjaxSupport.ComponentEvents.set({ "eventActions" : [ { "event" : "approveMessage", "actions" : [ { "context" : "", "action" : "rerender" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "unapproveMessage", "actions" : [ { "context" : "", "action" : "rerender" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "deleteMessage", "actions" : [ { "context" : "lia-deleted-state", "action" : "addClassName" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "QuickReply", "actions" : [ { "context" : "envParam:feedbackData", "action" : "rerender" } ] }, { "event" : "expandMessage", "actions" : [ { "context" : "envParam:quiltName,expandedQuiltName", "action" : "rerender" } ] }, { "event" : "ProductAnswer", "actions" : [ { "context" : "envParam:quiltName", "action" : "rerender" } ] }, { "event" : "ProductAnswerComment", "actions" : [ { "context" : "envParam:selectedMessage", "action" : "rerender" } ] }, { "event" : "editProductMessage", "actions" : [ { "context" : "envParam:quiltName,message", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditAction", "actions" : [ { "context" : "envParam:quiltName,message,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "ProductMessageEdit", "actions" : [ { "context" : "envParam:quiltName", "action" : "rerender" } ] }, { "event" : "MessagesWidgetMessageEdit", "actions" : [ { "context" : "envParam:quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "AcceptSolutionAction", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "RevokeSolutionAction", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "addThreadUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "removeThreadUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "addMessageUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "removeMessageUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "markAsSpamWithoutRedirect", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "MessagesWidgetAnswerForm", "actions" : [ { "context" : "envParam:messageUid,page,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditAnswerForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetCommentForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditCommentForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] } ], "componentId" : "forums.widget.message-view", "initiatorBinding" : true, "selector" : "#messageview_2", "parameters" : { "disableLabelLinks" : "false", "truncateBodyRetainsHtml" : "false", "forceSearchRequestParameterForBlurbBuilder" : "false", "kudosLinksDisabled" : "false", "useSubjectIcons" : "true", "quiltName" : "ForumMessage", "truncateBody" : "true", "message" : "246050", "includeRepliesModerationState" : "true", "syndicatedView" : "false", "useSimpleView" : "false", "useTruncatedSubject" : "true", "disableLinks" : "false", "messageViewOptions" : "1111110111111111111110111110100101011101", "displaySubject" : "true" }, "initiatorDataMatcher" : "data-lia-message-uid" }); LITHIUM.MessageViewDisplay({"openEditsSelector":".lia-inline-message-edit","renderInlineFormEvent":"LITHIUM:renderInlineEditForm","componentId":"threadeddetaildisplaymessageviewwrapper_1","componentSelector":"#threadeddetaildisplaymessageviewwrapper_1","editEvent":"LITHIUM:editMessageViaAjax","collapseEvent":"LITHIUM:collapseInlineMessageEditor","messageId":246050,"confimationText":"You have other message editors open and your data inside of them might be lost. Are you sure you want to proceed?","loaderSelector":"#threadeddetaildisplaymessageviewwrapper_1 .lia-message-body-loader .lia-loader","expandedRepliesSelector":".lia-inline-message-reply-form-expanded"}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:renderInlineEditForm"},"tokenId":"ajax","elementSelector":"#threadeddetaildisplaymessageviewwrapper_1","action":"renderInlineEditForm","feedbackSelector":"#threadeddetaildisplaymessageviewwrapper_1","url":"https://www.googleforeducommunity.com/t5/forums/v5/forumtopicpage.threadeddetaildisplay.threadeddetailmessagelist.threadeddetaildisplaymessageviewwrapper:renderinlineeditform?t:ac=board-id/educator_collaboration/message-id/498","ajaxErrorEventName":"LITHIUM:ajaxError","token":"CCfEaPVE_zphLp56MFwA4UlCv2eK5Bhbl0Kj3ChIkp4."}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_12","feedbackSelector":".InfoMessage"}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_13","feedbackSelector":".InfoMessage"}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_14","feedbackSelector":".InfoMessage"}); LITHIUM.DropDownMenuVisibilityHandler({"selectors":{"menuSelector":"#actionMenuDropDown_4","menuItemsSelector":".lia-menu-dropdown-items"}}); LITHIUM.MessageBodyDisplay('#bodyDisplay_3', '.lia-truncated-body-container', '#viewMoreLink', '.lia-full-body-container' ); LITHIUM.AjaxSupport.fromLink('#kudoEntity_3', 'kudoEntity', '#ajaxfeedback_3', 'LITHIUM:ajaxError', {}, 'ShtX03uYqRSrvxVrcKQCMUTPbZurpy4qkB3-Ny4VlLk.', 'ajax'); LITHIUM.AjaxSupport.ComponentEvents.set({ "eventActions" : [ { "event" : "kudoEntity", "actions" : [ { "context" : "envParam:entity", "action" : "rerender" } ] } ], "componentId" : "kudos.widget.button", "initiatorBinding" : true, "selector" : "#kudosButtonV2_3", "parameters" : { "displayStyle" : "horizontal", "disallowZeroCount" : "false", "revokeMode" : "true", "kudosable" : "true", "showCountOnly" : "false", "disableKudosForAnonUser" : "false", "useCountToKudo" : "false", "entity" : "246083", "linkDisabled" : "false" }, "initiatorDataMatcher" : "data-lia-kudos-id" }); LITHIUM.InlineMessageReplyContainer({"openEditsSelector":".lia-inline-message-edit","renderEventParams":{"replyWrapperId":"replyWrapper_3","messageId":246083,"messageActionsId":"messageActions_3"},"isRootMessage":false,"collapseEvent":"LITHIUM:collapseInlineMessageEditor","confimationText":"You have other message editors open and your data inside of them might be lost. Are you sure you want to proceed?","messageActionsSelector":"#messageActions_3","loaderSelector":"#loader","topicMessageSelector":".lia-forum-topic-message-gte-5","containerSelector":"#inlineMessageReplyContainer_3","loaderEnabled":false,"useSimpleEditor":false,"isReplyButtonDisabled":false,"linearDisplayViewSelector":".lia-linear-display-message-view","threadedDetailDisplayViewSelector":".lia-threaded-detail-display-message-view","replyEditorPlaceholderWrapperSelector":".lia-placeholder-wrapper","renderEvent":"LITHIUM:renderInlineMessageReply","expandedRepliesSelector":".lia-inline-message-reply-form-expanded","isLazyLoadEnabled":false,"layoutView":"threaded","isAllowAnonUserToReply":false,"replyButtonSelector":".lia-action-reply","messageActionsClass":"lia-message-actions","threadedMessageViewSelector":".lia-threaded-display-message-view-wrapper","lazyLoadScriptsEvent":"LITHIUM:lazyLoadScripts","isGteForumV5":true}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:renderInlineMessageReply"},"tokenId":"ajax","elementSelector":"#inlineMessageReplyContainer_3","action":"renderInlineMessageReply","feedbackSelector":"#inlineMessageReplyContainer_3","url":"https://www.googleforeducommunity.com/t5/forums/v5/forumtopicpage.inlinemessagereplycontainer:renderinlinemessagereply?t:ac=board-id/educator_collaboration/message-id/498&t:cp=messages/contributions/messageeditorscontributionpage","ajaxErrorEventName":"LITHIUM:ajaxError","token":"4IvZ254e_PmoQTqagyu7cCS0TdRkVp94-Bse0kH9ktY."}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:lazyLoadScripts"},"tokenId":"ajax","elementSelector":"#inlineMessageReplyContainer_3","action":"lazyLoadScripts","feedbackSelector":"#inlineMessageReplyContainer_3","url":"https://www.googleforeducommunity.com/t5/forums/v5/forumtopicpage.inlinemessagereplycontainer:lazyloadscripts?t:ac=board-id/educator_collaboration/message-id/498&t:cp=messages/contributions/messageeditorscontributionpage","ajaxErrorEventName":"LITHIUM:ajaxError","token":"YOMyOHLvNE0CW0CDIk8mF3Xc1Jl9FRa56KiWNwqwJMU."}); LITHIUM.AjaxSupport.ComponentEvents.set({ "eventActions" : [ { "event" : "approveMessage", "actions" : [ { "context" : "", "action" : "rerender" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "unapproveMessage", "actions" : [ { "context" : "", "action" : "rerender" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "deleteMessage", "actions" : [ { "context" : "lia-deleted-state", "action" : "addClassName" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "QuickReply", "actions" : [ { "context" : "envParam:feedbackData", "action" : "rerender" } ] }, { "event" : "expandMessage", "actions" : [ { "context" : "envParam:quiltName,expandedQuiltName", "action" : "rerender" } ] }, { "event" : "ProductAnswer", "actions" : [ { "context" : "envParam:quiltName", "action" : "rerender" } ] }, { "event" : "ProductAnswerComment", "actions" : [ { "context" : "envParam:selectedMessage", "action" : "rerender" } ] }, { "event" : "editProductMessage", "actions" : [ { "context" : "envParam:quiltName,message", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditAction", "actions" : [ { "context" : "envParam:quiltName,message,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "ProductMessageEdit", "actions" : [ { "context" : "envParam:quiltName", "action" : "rerender" } ] }, { "event" : "MessagesWidgetMessageEdit", "actions" : [ { "context" : "envParam:quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "AcceptSolutionAction", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "RevokeSolutionAction", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "addThreadUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "removeThreadUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "addMessageUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "removeMessageUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "markAsSpamWithoutRedirect", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "MessagesWidgetAnswerForm", "actions" : [ { "context" : "envParam:messageUid,page,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditAnswerForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetCommentForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditCommentForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] } ], "componentId" : "forums.widget.message-view", "initiatorBinding" : true, "selector" : "#messageview_3", "parameters" : { "disableLabelLinks" : "false", "truncateBodyRetainsHtml" : "false", "forceSearchRequestParameterForBlurbBuilder" : "false", "kudosLinksDisabled" : "false", "useSubjectIcons" : "true", "quiltName" : "ForumMessage", "truncateBody" : "true", "message" : "246083", "includeRepliesModerationState" : "true", "syndicatedView" : "false", "useSimpleView" : "false", "useTruncatedSubject" : "true", "disableLinks" : "false", "messageViewOptions" : "1111110111111111111110111110100101011101", "displaySubject" : "true" }, "initiatorDataMatcher" : "data-lia-message-uid" }); LITHIUM.MessageViewDisplay({"openEditsSelector":".lia-inline-message-edit","renderInlineFormEvent":"LITHIUM:renderInlineEditForm","componentId":"threadeddetaildisplaymessageviewwrapper_2","componentSelector":"#threadeddetaildisplaymessageviewwrapper_2","editEvent":"LITHIUM:editMessageViaAjax","collapseEvent":"LITHIUM:collapseInlineMessageEditor","messageId":246083,"confimationText":"You have other message editors open and your data inside of them might be lost. Are you sure you want to proceed?","loaderSelector":"#threadeddetaildisplaymessageviewwrapper_2 .lia-message-body-loader .lia-loader","expandedRepliesSelector":".lia-inline-message-reply-form-expanded"}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:renderInlineEditForm"},"tokenId":"ajax","elementSelector":"#threadeddetaildisplaymessageviewwrapper_2","action":"renderInlineEditForm","feedbackSelector":"#threadeddetaildisplaymessageviewwrapper_2","url":"https://www.googleforeducommunity.com/t5/forums/v5/forumtopicpage.threadeddetaildisplay.threadeddetailmessagelist.threadeddetaildisplaymessageviewwrapper:renderinlineeditform?t:ac=board-id/educator_collaboration/message-id/498","ajaxErrorEventName":"LITHIUM:ajaxError","token":"1jBEWh0P5k6cTgGLNUjX2-0nSgZGvPUCQ6EghGD9nLw."}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_15","feedbackSelector":".InfoMessage"}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_16","feedbackSelector":".InfoMessage"}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_17","feedbackSelector":".InfoMessage"}); LITHIUM.DropDownMenuVisibilityHandler({"selectors":{"menuSelector":"#actionMenuDropDown_5","menuItemsSelector":".lia-menu-dropdown-items"}}); LITHIUM.MessageBodyDisplay('#bodyDisplay_4', '.lia-truncated-body-container', '#viewMoreLink', '.lia-full-body-container' ); LITHIUM.AjaxSupport.fromLink('#kudoEntity_4', 'kudoEntity', '#ajaxfeedback_4', 'LITHIUM:ajaxError', {}, '24vRwUtzwq7gi0cy8BLE1c4uuBpmAOb65fDti7Vfjbc.', 'ajax'); LITHIUM.AjaxSupport.ComponentEvents.set({ "eventActions" : [ { "event" : "kudoEntity", "actions" : [ { "context" : "envParam:entity", "action" : "rerender" } ] } ], "componentId" : "kudos.widget.button", "initiatorBinding" : true, "selector" : "#kudosButtonV2_4", "parameters" : { "displayStyle" : "horizontal", "disallowZeroCount" : "false", "revokeMode" : "true", "kudosable" : "true", "showCountOnly" : "false", "disableKudosForAnonUser" : "false", "useCountToKudo" : "false", "entity" : "246100", "linkDisabled" : "false" }, "initiatorDataMatcher" : "data-lia-kudos-id" }); LITHIUM.InlineMessageReplyContainer({"openEditsSelector":".lia-inline-message-edit","renderEventParams":{"replyWrapperId":"replyWrapper_4","messageId":246100,"messageActionsId":"messageActions_4"},"isRootMessage":false,"collapseEvent":"LITHIUM:collapseInlineMessageEditor","confimationText":"You have other message editors open and your data inside of them might be lost. Are you sure you want to proceed?","messageActionsSelector":"#messageActions_4","loaderSelector":"#loader","topicMessageSelector":".lia-forum-topic-message-gte-5","containerSelector":"#inlineMessageReplyContainer_4","loaderEnabled":false,"useSimpleEditor":false,"isReplyButtonDisabled":false,"linearDisplayViewSelector":".lia-linear-display-message-view","threadedDetailDisplayViewSelector":".lia-threaded-detail-display-message-view","replyEditorPlaceholderWrapperSelector":".lia-placeholder-wrapper","renderEvent":"LITHIUM:renderInlineMessageReply","expandedRepliesSelector":".lia-inline-message-reply-form-expanded","isLazyLoadEnabled":false,"layoutView":"threaded","isAllowAnonUserToReply":false,"replyButtonSelector":".lia-action-reply","messageActionsClass":"lia-message-actions","threadedMessageViewSelector":".lia-threaded-display-message-view-wrapper","lazyLoadScriptsEvent":"LITHIUM:lazyLoadScripts","isGteForumV5":true}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:renderInlineMessageReply"},"tokenId":"ajax","elementSelector":"#inlineMessageReplyContainer_4","action":"renderInlineMessageReply","feedbackSelector":"#inlineMessageReplyContainer_4","url":"https://www.googleforeducommunity.com/t5/forums/v5/forumtopicpage.inlinemessagereplycontainer:renderinlinemessagereply?t:ac=board-id/educator_collaboration/message-id/498&t:cp=messages/contributions/messageeditorscontributionpage","ajaxErrorEventName":"LITHIUM:ajaxError","token":"UtJ3_Q6Sw6TFBnBwc2lIzgp67JnT8rAdFk7VHDWiAj4."}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:lazyLoadScripts"},"tokenId":"ajax","elementSelector":"#inlineMessageReplyContainer_4","action":"lazyLoadScripts","feedbackSelector":"#inlineMessageReplyContainer_4","url":"https://www.googleforeducommunity.com/t5/forums/v5/forumtopicpage.inlinemessagereplycontainer:lazyloadscripts?t:ac=board-id/educator_collaboration/message-id/498&t:cp=messages/contributions/messageeditorscontributionpage","ajaxErrorEventName":"LITHIUM:ajaxError","token":"JoYV6G-8Vc3Kk8TyDc_9Z1CQhAhWIw44EzODoF2WdGk."}); LITHIUM.AjaxSupport.ComponentEvents.set({ "eventActions" : [ { "event" : "approveMessage", "actions" : [ { "context" : "", "action" : "rerender" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "unapproveMessage", "actions" : [ { "context" : "", "action" : "rerender" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "deleteMessage", "actions" : [ { "context" : "lia-deleted-state", "action" : "addClassName" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "QuickReply", "actions" : [ { "context" : "envParam:feedbackData", "action" : "rerender" } ] }, { "event" : "expandMessage", "actions" : [ { "context" : "envParam:quiltName,expandedQuiltName", "action" : "rerender" } ] }, { "event" : "ProductAnswer", "actions" : [ { "context" : "envParam:quiltName", "action" : "rerender" } ] }, { "event" : "ProductAnswerComment", "actions" : [ { "context" : "envParam:selectedMessage", "action" : "rerender" } ] }, { "event" : "editProductMessage", "actions" : [ { "context" : "envParam:quiltName,message", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditAction", "actions" : [ { "context" : "envParam:quiltName,message,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "ProductMessageEdit", "actions" : [ { "context" : "envParam:quiltName", "action" : "rerender" } ] }, { "event" : "MessagesWidgetMessageEdit", "actions" : [ { "context" : "envParam:quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "AcceptSolutionAction", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "RevokeSolutionAction", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "addThreadUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "removeThreadUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "addMessageUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "removeMessageUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "markAsSpamWithoutRedirect", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "MessagesWidgetAnswerForm", "actions" : [ { "context" : "envParam:messageUid,page,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditAnswerForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetCommentForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditCommentForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] } ], "componentId" : "forums.widget.message-view", "initiatorBinding" : true, "selector" : "#messageview_4", "parameters" : { "disableLabelLinks" : "false", "truncateBodyRetainsHtml" : "false", "forceSearchRequestParameterForBlurbBuilder" : "false", "kudosLinksDisabled" : "false", "useSubjectIcons" : "true", "quiltName" : "ForumMessage", "truncateBody" : "true", "message" : "246100", "includeRepliesModerationState" : "true", "syndicatedView" : "false", "useSimpleView" : "false", "useTruncatedSubject" : "true", "disableLinks" : "false", "messageViewOptions" : "1111110111111111111110111110100101011101", "displaySubject" : "true" }, "initiatorDataMatcher" : "data-lia-message-uid" }); LITHIUM.MessageViewDisplay({"openEditsSelector":".lia-inline-message-edit","renderInlineFormEvent":"LITHIUM:renderInlineEditForm","componentId":"threadeddetaildisplaymessageviewwrapper_3","componentSelector":"#threadeddetaildisplaymessageviewwrapper_3","editEvent":"LITHIUM:editMessageViaAjax","collapseEvent":"LITHIUM:collapseInlineMessageEditor","messageId":246100,"confimationText":"You have other message editors open and your data inside of them might be lost. Are you sure you want to proceed?","loaderSelector":"#threadeddetaildisplaymessageviewwrapper_3 .lia-message-body-loader .lia-loader","expandedRepliesSelector":".lia-inline-message-reply-form-expanded"}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:renderInlineEditForm"},"tokenId":"ajax","elementSelector":"#threadeddetaildisplaymessageviewwrapper_3","action":"renderInlineEditForm","feedbackSelector":"#threadeddetaildisplaymessageviewwrapper_3","url":"https://www.googleforeducommunity.com/t5/forums/v5/forumtopicpage.threadeddetaildisplay.threadeddetailmessagelist.threadeddetaildisplaymessageviewwrapper:renderinlineeditform?t:ac=board-id/educator_collaboration/message-id/498","ajaxErrorEventName":"LITHIUM:ajaxError","token":"RKweM9cMPEW9OowqYNPtox_IEBktHsHVaLk8EhBeWHA."}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_18","feedbackSelector":".InfoMessage"}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_19","feedbackSelector":".InfoMessage"}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_20","feedbackSelector":".InfoMessage"}); LITHIUM.DropDownMenuVisibilityHandler({"selectors":{"menuSelector":"#actionMenuDropDown_6","menuItemsSelector":".lia-menu-dropdown-items"}}); LITHIUM.MessageBodyDisplay('#bodyDisplay_5', '.lia-truncated-body-container', '#viewMoreLink', '.lia-full-body-container' ); LITHIUM.AjaxSupport.fromLink('#kudoEntity_5', 'kudoEntity', '#ajaxfeedback_5', 'LITHIUM:ajaxError', {}, 'sjo3eH4ZyVj078bUOx3kYGUo7yWxvfYWa2K5UUnLfQw.', 'ajax'); LITHIUM.AjaxSupport.ComponentEvents.set({ "eventActions" : [ { "event" : "kudoEntity", "actions" : [ { "context" : "envParam:entity", "action" : "rerender" } ] } ], "componentId" : "kudos.widget.button", "initiatorBinding" : true, "selector" : "#kudosButtonV2_5", "parameters" : { "displayStyle" : "horizontal", "disallowZeroCount" : "false", "revokeMode" : "true", "kudosable" : "true", "showCountOnly" : "false", "disableKudosForAnonUser" : "false", "useCountToKudo" : "false", "entity" : "246144", "linkDisabled" : "false" }, "initiatorDataMatcher" : "data-lia-kudos-id" }); LITHIUM.InlineMessageReplyContainer({"openEditsSelector":".lia-inline-message-edit","renderEventParams":{"replyWrapperId":"replyWrapper_5","messageId":246144,"messageActionsId":"messageActions_5"},"isRootMessage":false,"collapseEvent":"LITHIUM:collapseInlineMessageEditor","confimationText":"You have other message editors open and your data inside of them might be lost. Are you sure you want to proceed?","messageActionsSelector":"#messageActions_5","loaderSelector":"#loader","topicMessageSelector":".lia-forum-topic-message-gte-5","containerSelector":"#inlineMessageReplyContainer_5","loaderEnabled":false,"useSimpleEditor":false,"isReplyButtonDisabled":false,"linearDisplayViewSelector":".lia-linear-display-message-view","threadedDetailDisplayViewSelector":".lia-threaded-detail-display-message-view","replyEditorPlaceholderWrapperSelector":".lia-placeholder-wrapper","renderEvent":"LITHIUM:renderInlineMessageReply","expandedRepliesSelector":".lia-inline-message-reply-form-expanded","isLazyLoadEnabled":false,"layoutView":"threaded","isAllowAnonUserToReply":false,"replyButtonSelector":".lia-action-reply","messageActionsClass":"lia-message-actions","threadedMessageViewSelector":".lia-threaded-display-message-view-wrapper","lazyLoadScriptsEvent":"LITHIUM:lazyLoadScripts","isGteForumV5":true}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:renderInlineMessageReply"},"tokenId":"ajax","elementSelector":"#inlineMessageReplyContainer_5","action":"renderInlineMessageReply","feedbackSelector":"#inlineMessageReplyContainer_5","url":"https://www.googleforeducommunity.com/t5/forums/v5/forumtopicpage.inlinemessagereplycontainer:renderinlinemessagereply?t:ac=board-id/educator_collaboration/message-id/498&t:cp=messages/contributions/messageeditorscontributionpage","ajaxErrorEventName":"LITHIUM:ajaxError","token":"6z4yJdAar6Le91iRyUDA3CDG3Vzo4gS2lzSc_WmDpto."}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:lazyLoadScripts"},"tokenId":"ajax","elementSelector":"#inlineMessageReplyContainer_5","action":"lazyLoadScripts","feedbackSelector":"#inlineMessageReplyContainer_5","url":"https://www.googleforeducommunity.com/t5/forums/v5/forumtopicpage.inlinemessagereplycontainer:lazyloadscripts?t:ac=board-id/educator_collaboration/message-id/498&t:cp=messages/contributions/messageeditorscontributionpage","ajaxErrorEventName":"LITHIUM:ajaxError","token":"EDSFK9-dct7lIPS5JiFgqkdqL8LwQUjNyLQRGFX142I."}); LITHIUM.AjaxSupport.ComponentEvents.set({ "eventActions" : [ { "event" : "approveMessage", "actions" : [ { "context" : "", "action" : "rerender" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "unapproveMessage", "actions" : [ { "context" : "", "action" : "rerender" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "deleteMessage", "actions" : [ { "context" : "lia-deleted-state", "action" : "addClassName" }, { "context" : "", "action" : "pulsate" } ] }, { "event" : "QuickReply", "actions" : [ { "context" : "envParam:feedbackData", "action" : "rerender" } ] }, { "event" : "expandMessage", "actions" : [ { "context" : "envParam:quiltName,expandedQuiltName", "action" : "rerender" } ] }, { "event" : "ProductAnswer", "actions" : [ { "context" : "envParam:quiltName", "action" : "rerender" } ] }, { "event" : "ProductAnswerComment", "actions" : [ { "context" : "envParam:selectedMessage", "action" : "rerender" } ] }, { "event" : "editProductMessage", "actions" : [ { "context" : "envParam:quiltName,message", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditAction", "actions" : [ { "context" : "envParam:quiltName,message,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "ProductMessageEdit", "actions" : [ { "context" : "envParam:quiltName", "action" : "rerender" } ] }, { "event" : "MessagesWidgetMessageEdit", "actions" : [ { "context" : "envParam:quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "AcceptSolutionAction", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "RevokeSolutionAction", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "addThreadUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "removeThreadUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "addMessageUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "removeMessageUserEmailSubscription", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "markAsSpamWithoutRedirect", "actions" : [ { "context" : "", "action" : "rerender" } ] }, { "event" : "MessagesWidgetAnswerForm", "actions" : [ { "context" : "envParam:messageUid,page,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditAnswerForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetCommentForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] }, { "event" : "MessagesWidgetEditCommentForm", "actions" : [ { "context" : "envParam:messageUid,quiltName,product,contextId,contextUrl", "action" : "rerender" } ] } ], "componentId" : "forums.widget.message-view", "initiatorBinding" : true, "selector" : "#messageview_5", "parameters" : { "disableLabelLinks" : "false", "truncateBodyRetainsHtml" : "false", "forceSearchRequestParameterForBlurbBuilder" : "false", "kudosLinksDisabled" : "false", "useSubjectIcons" : "true", "quiltName" : "ForumMessage", "truncateBody" : "true", "message" : "246144", "includeRepliesModerationState" : "true", "syndicatedView" : "false", "useSimpleView" : "false", "useTruncatedSubject" : "true", "disableLinks" : "false", "messageViewOptions" : "1111110111111111111110111110100101011101", "displaySubject" : "true" }, "initiatorDataMatcher" : "data-lia-message-uid" }); LITHIUM.MessageViewDisplay({"openEditsSelector":".lia-inline-message-edit","renderInlineFormEvent":"LITHIUM:renderInlineEditForm","componentId":"threadeddetaildisplaymessageviewwrapper_4","componentSelector":"#threadeddetaildisplaymessageviewwrapper_4","editEvent":"LITHIUM:editMessageViaAjax","collapseEvent":"LITHIUM:collapseInlineMessageEditor","messageId":246144,"confimationText":"You have other message editors open and your data inside of them might be lost. Are you sure you want to proceed?","loaderSelector":"#threadeddetaildisplaymessageviewwrapper_4 .lia-message-body-loader .lia-loader","expandedRepliesSelector":".lia-inline-message-reply-form-expanded"}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:renderInlineEditForm"},"tokenId":"ajax","elementSelector":"#threadeddetaildisplaymessageviewwrapper_4","action":"renderInlineEditForm","feedbackSelector":"#threadeddetaildisplaymessageviewwrapper_4","url":"https://www.googleforeducommunity.com/t5/forums/v5/forumtopicpage.threadeddetaildisplay.threadeddetailmessagelist.threadeddetaildisplaymessageviewwrapper:renderinlineeditform?t:ac=board-id/educator_collaboration/message-id/498","ajaxErrorEventName":"LITHIUM:ajaxError","token":"MD4S-Ifv2-xI1v92gcmSQbHU5hTxWgShJ-9swt3rDh8."}); LITHIUM.ThreadedDetailMessageList({"renderLoadMoreEvent":"LITHIUM:renderLoadMoreMessages","loadingText":"Loading...","placeholderClass":"lia-messages-threadedDetailList-placeholder","loadFetchSelector":"#threadeddetailmessagelist .lia-load-fetch","rootMessageId":222037,"loadPageNumber":1}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:renderLoadMoreMessages","parameters":{"javascript.ignore_combine_and_minify":"true"}},"tokenId":"ajax","elementSelector":"#threadeddetailmessagelist .lia-load-fetch","action":"renderLoadMoreMessages","feedbackSelector":"#ajaxFeedback","url":"https://www.googleforeducommunity.com/t5/forums/v5/forumtopicpage.threadeddetaildisplay.threadeddetailmessagelist:renderloadmoremessages?t:ac=board-id/educator_collaboration/message-id/498","ajaxErrorEventName":"LITHIUM:ajaxError","token":"12TYEjybzyFRfTldkSJwRvRSL9xvOGwlEoPWzpEDGJM."}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_21","feedbackSelector":".InfoMessage"}); LITHIUM.Placeholder(); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_22","feedbackSelector":".InfoMessage"}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_23","feedbackSelector":".InfoMessage"}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_24","feedbackSelector":".InfoMessage"}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_25","feedbackSelector":".InfoMessage"}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_26","feedbackSelector":".InfoMessage"}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:getMentions","parameters":{"javascript.ignore_combine_and_minify":"true"}},"tokenId":"ajax","elementSelector":document,"action":"getMentions","feedbackSelector":false,"url":"https://www.googleforeducommunity.com/t5/forums/v5/forumtopicpage.threadeddetaildisplay.inlinemessagereplyeditor_0.form.messageeditor.tinymceeditor:getmentions?t:ac=board-id/educator_collaboration/message-id/498","ajaxErrorEventName":"LITHIUM:ajaxError","token":"TDDGL1qAfLcywzpfznTyXlGdLRzk4-CP0KLbqGHqXWM."}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:getProductMentions","parameters":{"javascript.ignore_combine_and_minify":"true"}},"tokenId":"ajax","elementSelector":document,"action":"getProductMentions","feedbackSelector":false,"url":"https://www.googleforeducommunity.com/t5/forums/v5/forumtopicpage.threadeddetaildisplay.inlinemessagereplyeditor_0.form.messageeditor.tinymceeditor:getproductmentions?t:ac=board-id/educator_collaboration/message-id/498","ajaxErrorEventName":"LITHIUM:ajaxError","token":"ZDRBftgTW25MUnuiAWMa6twmC2Mi9lOKzEDhXqTfXjU."}); LITHIUM.Mentions = {"minSearchLength":3,"maxSearchLength":15,"allowSpaces":false,"loadingImgUrl":"/skins/images/AAB26F52569679A8B874BCCECBBF915E/responsive_peak/images/feedback_loading_trans.gif","headerText":{"atMention":"Type 3 or more letters of a user's name to search","hashMention":"Type 3 or more letters of a product's title to search"},"defaultMentions":{"atMention":{"loginList":[],"content":"

\n\t\t

    \n\t\n \n \n\t\n\t\t\n\t\t
  • \n

    \n Users\n <\/div>\n\t\t\t<\/li>\n\t\t\n\t\t\n\t\t\t

  • \n\t\t\t\t

    \n\t\n\n\t\n\n\t\n\n\t\n\n\t\n\t\t\t\n\t\t

    \n

    \n\t\n\t\t\t\n\t\t\t\tLeonise74_edu\n\t\t\t\t\t\n\t\t\t\t<\/span>\n\t\t\t\t\n\t\t\t\n\t\t\n<\/div> <\/div>\n\n\t\n\t\t\n\n\t

    \n\t\t\n\t\t\t\n\t\t

    \n\t\t\t\n\t\n\n\t\n\t\t\t\n\t\t\t\t\n\t\t\n\t\t\n\t\t\tLeonise74_edu<\/span><\/span>\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\n\t\t\t<\/span>\n\t\t\n\n\t\t<\/div>\n\t\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\t<\/div>\n<\/div>\n\t\t\t\t<\/input>\n\t\t\t<\/li>\n\t\t\n\t\t\t

  • \n\t\t\t\t

    \n\t\n\n\t\n\n\t\n\n\t\n\n\t\n\t\t\t\n\t\t

    \n

    \n\t\n\t\t\t\n\t\t\t\tOlives_Olives\n\t\t\t\t\t\n\t\t\t\t<\/span>\n\t\t\t\t\n\t\t\t\n\t\t\n<\/div> <\/div>\n\n\t\n\t\t\n\n\t

    \n\t\t\n\t\t\t\n\t\t

    \n\t\t\t\n\t\n\n\t\n\t\t\t\n\t\t\t\t\n\t\t\n\t\t\n\t\t\tOlives_Olives<\/span><\/span>\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\n\t\t\t<\/span>\n\t\t\n\n\t\t<\/div>\n\t\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\t<\/div>\n<\/div>\n\t\t\t\t<\/input>\n\t\t\t<\/li>\n\t\t\n\t\t\t

  • \n\t\t\t\t

    \n\t\n\n\t\n\n\t\n\n\t\n\n\t\n\t\t\t\n\t\t

    \n

    \n\t\n\t\t\t\n\t\t\t\tSabina_Hussaini\n\t\t\t\t\t\n\t\t\t\t<\/span>\n\t\t\t\t\n\t\t\t\n\t\t\n<\/div> <\/div>\n\n\t\n\t\t\n\n\t

    \n\t\t\n\t\t\t\n\t\t

    \n\t\t\t\n\t\n\n\t\n\t\t\t\n\t\t\t\t\n\t\t\"Community\n\t\t\n\t\t\tSabina_Hussaini<\/span><\/span>\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\n\t\t\t<\/span>\n\t\t\n\n\t\t<\/div>\n\t\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\t<\/div>\n<\/div>\n\t\t\t\t<\/input>\n\t\t\t<\/li>\n\t\t\n\t\t\t

  • \n\t\t\t\t

    \n\t\n\n\t\n\n\t\n\n\t\n\n\t\n\t\t\t\n\t\t

    \n

    \n\t\n\t\t\t\n\t\t\t\tzaituni2\n\t\t\t\t\t\n\t\t\t\t<\/span>\n\t\t\t\t\n\t\t\t\n\t\t\n<\/div> <\/div>\n\n\t\n\t\t\n\n\t

    \n\t\t\n\t\t\t\n\t\t

    \n\t\t\t\n\t\n\n\t\n\t\t\t\n\t\t\t\t\n\t\t\n\t\t\n\t\t\tzaituni2<\/span><\/span>\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\n\t\t\t<\/span>\n\t\t\n\n\t\t<\/div>\n\t\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\t<\/div>\n<\/div>\n\t\t\t\t<\/input>\n\t\t\t<\/li>\n\t\t\n\t\t\t

  • \n\t\t\t\t

    \n\t\n\n\t\n\n\t\n\n\t\n\n\t\n\t\t\t\n\t\t

    \n

    \n\t\n\t\t\t\n\t\t\t\tSavioFerraz\n\t\t\t\t\t\n\t\t\t\t<\/span>\n\t\t\t\t\n\t\t\t\n\t\t\n<\/div> <\/div>\n\n\t\n\t\t\n\n\t

    \n\t\t\n\t\t\t\n\t\t

    \n\t\t\t\n\t\n\n\t\n\t\t\t\n\t\t\t\t\n\t\t\n\t\t\n\t\t\tSavioFerraz<\/span><\/span>\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\n\t\t\t<\/span>\n\t\t\n\n\t\t<\/div>\n\t\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\n\t\t\n\t<\/div>\n<\/div>\n\t\t\t\t<\/input>\n\t\t\t<\/li>\n\t\t\n\t\t\n\t\t\n\t\n\n \n \n\t\t\t\n<\/ul>\n\t\t<\/div>"},"hashMention":{"content":"

    \n\t\t\t\t\n\t\t\t<\/div>"}},"maxProductSearchLength":30}; LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:getAutoTitle","parameters":{"javascript.ignore_combine_and_minify":"true"}},"tokenId":"ajax","elementSelector":document,"action":"getAutoTitle","feedbackSelector":false,"url":"https://www.googleforeducommunity.com/t5/forums/v5/forumtopicpage.threadeddetaildisplay.inlinemessagereplyeditor_0.form.messageeditor.tinymceeditor:getautotitle?t:ac=board-id/educator_collaboration/message-id/498","ajaxErrorEventName":"LITHIUM:ajaxError","token":"oKhaE1LCTjFXsbnhXVATpjf9hIZsdLWqLGpUKKpPAV8."}); LITHIUM.ImageUploaderPopupPage = "/t5/media/imageuploaderpopuppage/board-id/educator_collaboration"; LITHIUM.EmoticonsPopupPage = "/t5/util/emoticonspopuppage"; LITHIUM.TinyMceEditor.emoji = {"tones":"{\"tone-0\":{\"lia_baby\":\"/html/@1AC10DB613760E945F0E9A9B4D9115B5/emoticons/1f476.png\",\"lia_boy\":\"/html/@7FA21590F2C9290B45537F07E9E5F9EC/emoticons/1f466.png\",\"lia_girl\":\"/html/@918DA40F3910A5BF130A2A34C8857890/emoticons/1f467.png\",\"lia_man\":\"/html/@BFBB0831737767E9573C0225EABC31A2/emoticons/1f468.png\",\"lia_woman\":\"/html/@1F4AC21C38DA8ADEA0164BE5480BEE0E/emoticons/1f469.png\",\"lia_old-man\":\"/html/@715C747F9F5C943F88AADB0F328E0417/emoticons/1f474.png\",\"lia_old-woman\":\"/html/@468AE5B86324D9FD9E728B6A4858863C/emoticons/1f475.png\",\"lia_man-health-worker\":\"/html/@96E97DE4A2BD36C55EEF8448BB52B73B/emoticons/1f468_200d_2695.png\",\"lia_woman-health-worker\":\"/html/@8380FFEACAD7385A118D432E31D66243/emoticons/1f469_200d_2695.png\",\"lia_man-student\":\"/html/@94675294B4D532870D3100F28464CCD4/emoticons/1f468_200d_1f393.png\",\"lia_woman-student\":\"/html/@4D1236D2BA3615ECB7976855CD11A333/emoticons/1f469_200d_1f393.png\",\"lia_man-teacher\":\"/html/@01B427A9DE756660A031DC618262FEA0/emoticons/1f468_200d_1f3eb.png\",\"lia_woman-teacher\":\"/html/@DD414FA5376847D8D19F925FEBFBB558/emoticons/1f469_200d_1f3eb.png\",\"lia_man-judge\":\"/html/@1A7A3A641578EC6E49A743D247BCC586/emoticons/1f468_200d_2696.png\",\"lia_woman-judge\":\"/html/@4BF759C7E686897E916996A66042D428/emoticons/1f469_200d_2696.png\",\"lia_man-farmer\":\"/html/@2E39D75C4AFA6606BA3A5431051676A1/emoticons/1f468_200d_1f33e.png\",\"lia_woman-farmer\":\"/html/@001AD0DF3EDAF636E72A3E1F2EDE9FA4/emoticons/1f469_200d_1f33e.png\",\"lia_man-cook\":\"/html/@AB9A38E5368D18B8AD7B72993FC2ABA3/emoticons/1f468_200d_1f373.png\",\"lia_woman-cook\":\"/html/@35CDE1ED004DD63789AE6E2B6D7181C2/emoticons/1f469_200d_1f373.png\",\"lia_man-mechanic\":\"/html/@E353516B03AB16CBC607FF100FE6D713/emoticons/1f468_200d_1f527.png\",\"lia_woman-mechanic\":\"/html/@1F2BE4A70706D4A8DC5F21DF48B779A1/emoticons/1f469_200d_1f527.png\",\"lia_man-factory-worker\":\"/html/@5D49A698AB2A23FD8BCECB93871785B0/emoticons/1f468_200d_1f3ed.png\",\"lia_woman-factory-worker\":\"/html/@0312111450EBD8F4EB64ED9692A7E6FB/emoticons/1f469_200d_1f3ed.png\",\"lia_man-office-worker\":\"/html/@6E6A806BD6F43FCA25FFD76342F878B8/emoticons/1f468_200d_1f4bc.png\",\"lia_woman-office-worker\":\"/html/@7C549D346A837307857961752770BE54/emoticons/1f469_200d_1f4bc.png\",\"lia_man-scientist\":\"/html/@EDAAB25973B1CC71D06E7DE5EEAEE9DC/emoticons/1f468_200d_1f52c.png\",\"lia_woman-scientist\":\"/html/@C08B40334BBB643DCD04055259EB3AFA/emoticons/1f469_200d_1f52c.png\",\"lia_man-technologist\":\"/html/@50B3B3D7A042F717123988C63928FEEB/emoticons/1f468_200d_1f4bb.png\",\"lia_woman-technologist\":\"/html/@4C9ECB5DBD68696DA2EB476BD70CF91D/emoticons/1f469_200d_1f4bb.png\",\"lia_man-singer\":\"/html/@E95FB59D0C363AAE4AE90542513BAF58/emoticons/1f468_200d_1f3a4.png\",\"lia_woman-singer\":\"/html/@1DF05452260B7F13C3EE5B15BB0DE81F/emoticons/1f469_200d_1f3a4.png\",\"lia_man-artist\":\"/html/@D79F2F1025AC9FB956CA66DEB2FD9673/emoticons/1f468_200d_1f3a8.png\",\"lia_woman-artist\":\"/html/@141458FA371AA97DA3FB29B6349CC715/emoticons/1f469_200d_1f3a8.png\",\"lia_man-pilot\":\"/html/@D5867802C2027401A34C8D1358BC8BC5/emoticons/1f468_200d_2708.png\",\"lia_woman-pilot\":\"/html/@77CDEF04F9923A46F25EE80607B9C5B5/emoticons/1f469_200d_2708.png\",\"lia_man-astronaut\":\"/html/@55BDC5E5A4C5C5C32BB8A487E8A0EC8D/emoticons/1f468_200d_1f680.png\",\"lia_woman-astronaut\":\"/html/@7D9A6FE6689683D4868A81AA46A6FA5D/emoticons/1f469_200d_1f680.png\",\"lia_man-firefighter\":\"/html/@938B51E349D4C8AC7D2A6E294217E3FA/emoticons/1f468_200d_1f692.png\",\"lia_woman-firefighter\":\"/html/@584C93A7010842EDD33AA73980E682BC/emoticons/1f469_200d_1f692.png\",\"lia_prince\":\"/html/@67325C5B61FD341A149D19F8FBDD276A/emoticons/1f934.png\",\"lia_princess\":\"/html/@A8576BAB38A475D249531147B31C409C/emoticons/1f478.png\",\"lia_man-with-chinese-cap\":\"/html/@E7899E61B431B633CF8B31D3EBF7675D/emoticons/1f472.png\",\"lia_man-in-tuxedo\":\"/html/@9BB193C75F6C97604A312F4B229FCDE4/emoticons/1f935.png\",\"lia_bride-with-veil\":\"/html/@37B8831773E31C722C6AE6F014AAF02B/emoticons/1f470.png\",\"lia_pregnant-woman\":\"/html/@7A4D06356F0F16AC2F31F59D392FABE1/emoticons/1f930.png\",\"lia_baby-angel\":\"/html/@BA9C71D6622C84D113C7FFB160F39C0A/emoticons/1f47c.png\",\"lia_santa-claus\":\"/html/@AB5FB5C26342C7B71FBF860129606A16/emoticons/1f385.png\",\"lia_mrs.-claus\":\"/html/@F44CFFD7122FBE4C3453F886B05C2D2B/emoticons/1f936.png\",\"lia_woman-dancing\":\"/html/@8303A84C150FBCE4F93790A19E52B01F/emoticons/1f483.png\",\"lia_man-dancing\":\"/html/@B8F2ADF7B38976B3722EE315A4DB361F/emoticons/1f57a.png\",\"lia_person-taking-bath\":\"/html/@DA6070B3136BF51D8F709168F6301EB5/emoticons/1f6c0.png\",\"lia_person-in-bed\":\"/html/@525B8A669F71B906DF2F5B2C5F80B64B/emoticons/1f6cc.png\",\"lia_man-in-suit-levitating\":\"/html/@1112EEA3A2F2D3D02034B706220011DF/emoticons/1f574.png\",\"lia_horse-racing\":\"/html/@65C8F321D85D9220BA8435806EB93D77/emoticons/1f3c7.png\",\"lia_snowboarder\":\"/html/@A5C1D19C4469578D3B53923B5DC054D3/emoticons/1f3c2.png\",\"lia_selfie\":\"/html/@F7DC46DE7BA5D9DD0BB5E7A571B3D6CA/emoticons/1f933.png\",\"lia_flexed-biceps\":\"/html/@06E5A3246B1254E6EDC04C45419BB664/emoticons/1f4aa.png\",\"lia_backhand-index-pointing-left\":\"/html/@BCCE8D6445C92DF17325DCA9BA4CD8DD/emoticons/1f448.png\",\"lia_backhand-index-pointing-right\":\"/html/@AC76DB8441723E84DB220B55F4C380A2/emoticons/1f449.png\",\"lia_index-pointing-up\":\"/html/@904076A0C93BF19F73D8B6F9E14DA9AB/emoticons/261d.png\",\"lia_backhand-index-pointing-up\":\"/html/@587B86E21B7B4A5F880EF8416A04EFCD/emoticons/1f446.png\",\"lia_middle-finger\":\"/html/@4890D8868C37CA6146788B57543E30E1/emoticons/1f595.png\",\"lia_backhand-index-pointing-down\":\"/html/@D8532F383EBAA468A0E85D735DFBA3D7/emoticons/1f447.png\",\"lia_victory-hand\":\"/html/@75615B8D4DDAEE318C22E9F88956D7E8/emoticons/270c.png\",\"lia_crossed-fingers\":\"/html/@ECFA842D301301D624ECF5B8E948745C/emoticons/1f91e.png\",\"lia_vulcan-salute\":\"/html/@8ACE45091DC1576EFC99CDBC13E6C288/emoticons/1f596.png\",\"lia_sign-of-the-horns\":\"/html/@89C93773202A2E3B418206B84CBF89AD/emoticons/1f918.png\",\"lia_call-me-hand\":\"/html/@AE562B9A3EE69855705A75D35D9EFA56/emoticons/1f919.png\",\"lia_hand-with-fingers-splayed\":\"/html/@FE5C0AEB0336F70B4A79BF9525BE8CF2/emoticons/1f590.png\",\"lia_raised-hand\":\"/html/@37AACC97E2C38CE1334F19DDA572B1A6/emoticons/270b.png\",\"lia_ok-hand\":\"/html/@A3F4629DABCD939687425D2E284A17C8/emoticons/1f44c.png\",\"lia_thumbs-up\":\"/html/@C5F69536956E6AE65CF447088EE54CF9/emoticons/1f44d.png\",\"lia_thumbs-down\":\"/html/@0E30500E686106F2C780F77E02EB0BEB/emoticons/1f44e.png\",\"lia_raised-fist\":\"/html/@191D0C55D4808AB85CA803B38B32CAC1/emoticons/270a.png\",\"lia_oncoming-fist\":\"/html/@E6BD8521501AB14A11887FD55A9AE9F4/emoticons/1f44a.png\",\"lia_left-facing-fist\":\"/html/@94523807F0E1C71B98885EC50B47AD97/emoticons/1f91b.png\",\"lia_right-facing-fist\":\"/html/@83BAC31439A7F453B5B1ABCFB00A8C5F/emoticons/1f91c.png\",\"lia_raised-back-of-hand\":\"/html/@9B8C886ED80E2A04232BD7C6189134CC/emoticons/1f91a.png\",\"lia_waving-hand\":\"/html/@3DBE3096479B6716A3B20B049BBF747A/emoticons/1f44b.png\",\"lia_writing-hand\":\"/html/@A5CFF9E49501EB5537D2FFE36E5E71D8/emoticons/270d.png\",\"lia_clapping-hands\":\"/html/@AB24883AB3DF9A02FC094668CB8ACE53/emoticons/1f44f.png\",\"lia_open-hands\":\"/html/@9EE6789473A5D62723A273F7BD5B8AAF/emoticons/1f450.png\",\"lia_raising-hands\":\"/html/@CFB5026862114990E5330635D061483E/emoticons/1f64c.png\",\"lia_folded-hands\":\"/html/@4351E94D89E55AD69305DE77F860B5A2/emoticons/1f64f.png\",\"lia_nail-polish\":\"/html/@A35BE82AE4FD394C6AE248741F3BE02C/emoticons/1f485.png\",\"lia_ear\":\"/html/@203619C70BF191C29F00E8C953C7BADD/emoticons/1f442.png\",\"lia_nose\":\"/html/@8BA667BC76C98146FDA852CF0EFB785B/emoticons/1f443.png\"},\"tone-2\":{\"lia_baby-tone-2\":\"/html/@85C20ECCA693375D89ADC453297E4D2A/emoticons/1f476_1f3fc.png\",\"lia_boy-tone-2\":\"/html/@6112659A1779B16FD92C0DE23DE24740/emoticons/1f466_1f3fc.png\",\"lia_girl-tone-2\":\"/html/@9F70274C7C7C566DE5291EA8877FC030/emoticons/1f467_1f3fc.png\",\"lia_man-tone-2\":\"/html/@1FD09F57038E79B3EF32EDF273806CE2/emoticons/1f468_1f3fc.png\",\"lia_woman-tone-2\":\"/html/@DEAB0936B8001E568FEC21AB611D530E/emoticons/1f469_1f3fc.png\",\"lia_old-man-tone-2\":\"/html/@0E07C67E53AF1BC06228DF320E7B51F9/emoticons/1f474_1f3fc.png\",\"lia_old-woman-tone-2\":\"/html/@209CBEA3EEF56333C02111D1ED453446/emoticons/1f475_1f3fc.png\",\"lia_man-health-worker-tone-2\":\"/html/@C8EC89F7BC4A1F1987F1779AF87B10DC/emoticons/1f468_1f3fc_200d_2695.png\",\"lia_woman-health-worker-tone-2\":\"/html/@D7D24FD63A8EFB9106AB941560B7DCE6/emoticons/1f469_1f3fc_200d_2695.png\",\"lia_man-student-tone-2\":\"/html/@FC1DE1A43BF3C864962F27E04EEF40B5/emoticons/1f468_1f3fc_200d_1f393.png\",\"lia_woman-student-tone-2\":\"/html/@163AA65EE671B0514553D5BA85141BF9/emoticons/1f469_1f3fc_200d_1f393.png\",\"lia_man-teacher-tone-2\":\"/html/@09C3863046283D6085A977F60426EEAF/emoticons/1f468_1f3fc_200d_1f3eb.png\",\"lia_woman-teacher-tone-2\":\"/html/@8B48BF7AA006F3BEDE419AF836D0FCAF/emoticons/1f469_1f3fc_200d_1f3eb.png\",\"lia_man-judge-tone-2\":\"/html/@E31C5FD094EA64EB40E3C69C490D97B5/emoticons/1f468_1f3fc_200d_2696.png\",\"lia_woman-judge-tone-2\":\"/html/@BD2315951702760D628A8054D8811172/emoticons/1f469_1f3fc_200d_2696.png\",\"lia_man-farmer-tone-2\":\"/html/@5E77CC831A62E8FD1C9A85BB8ED708FE/emoticons/1f468_1f3fc_200d_1f33e.png\",\"lia_woman-farmer-tone-2\":\"/html/@32043772E298BAA95B47A039B4AC179A/emoticons/1f469_1f3fc_200d_1f33e.png\",\"lia_man-cook-tone-2\":\"/html/@F0D8F3B9FE0080AAA8F5107C7512EB4C/emoticons/1f468_1f3fc_200d_1f373.png\",\"lia_woman-cook-tone-2\":\"/html/@F477EA6E6EA0036542C89B08D9261FB6/emoticons/1f469_1f3fc_200d_1f373.png\",\"lia_man-mechanic-tone-2\":\"/html/@0FE3FD336E4A12C78A18BF6A7286CD4F/emoticons/1f468_1f3fc_200d_1f527.png\",\"lia_woman-mechanic-tone-2\":\"/html/@049B3DE7B55A0218F5260618FEC6A605/emoticons/1f469_1f3fc_200d_1f527.png\",\"lia_man-factory-worker-tone-2\":\"/html/@1158E6EC3E525C3E633EA254402CDDF2/emoticons/1f468_1f3fc_200d_1f3ed.png\",\"lia_woman-factory-worker-tone-2\":\"/html/@EFA997E1D55E1BF162D400B64D25AD27/emoticons/1f469_1f3fc_200d_1f3ed.png\",\"lia_man-office-worker-tone-2\":\"/html/@BA0A45B2ED3BA1E7446B09B6E97FBAD6/emoticons/1f468_1f3fc_200d_1f4bc.png\",\"lia_woman-office-worker-tone-2\":\"/html/@196B518A8E476EEA05E094EFC7C68582/emoticons/1f469_1f3fc_200d_1f4bc.png\",\"lia_man-scientist-tone-2\":\"/html/@D5E96579629817CCF4F817D2C09BCC1F/emoticons/1f468_1f3fc_200d_1f52c.png\",\"lia_woman-scientist-tone-2\":\"/html/@F37B63B5D6F440A8694A9CEAB8DB03B4/emoticons/1f469_1f3fc_200d_1f52c.png\",\"lia_man-technologist-tone-2\":\"/html/@56D8B08F0522361B96E1E6F2B2D964A9/emoticons/1f468_1f3fc_200d_1f4bb.png\",\"lia_woman-technologist-tone-2\":\"/html/@4316C6F86BB50608F5BFECA508C57858/emoticons/1f469_1f3fc_200d_1f4bb.png\",\"lia_man-singer-tone-2\":\"/html/@F190DAF59799116672A761AEF9E8FDAD/emoticons/1f468_1f3fc_200d_1f3a4.png\",\"lia_woman-singer-tone-2\":\"/html/@4AF77DFEEE2E6ED95B0111BE31AFCD2B/emoticons/1f469_1f3fc_200d_1f3a4.png\",\"lia_man-artist-tone-2\":\"/html/@3C30607B7AA610250780F5CB8F3D56CC/emoticons/1f468_1f3fc_200d_1f3a8.png\",\"lia_woman-artist-tone-2\":\"/html/@F8B33D5E19430E2FA065B6CC4A1FBE55/emoticons/1f469_1f3fc_200d_1f3a8.png\",\"lia_man-pilot-tone-2\":\"/html/@76A64EB897594150A7DC5B83E642F9CD/emoticons/1f468_1f3fc_200d_2708.png\",\"lia_woman-pilot-tone-2\":\"/html/@D6D8E722D8FE7902687C167D64075F5D/emoticons/1f469_1f3fc_200d_2708.png\",\"lia_man-astronaut-tone-2\":\"/html/@704F477183378034514875C397C633AC/emoticons/1f468_1f3fc_200d_1f680.png\",\"lia_woman-astronaut-tone-2\":\"/html/@8C1836A3BF9F8355D8B52429ADE7531A/emoticons/1f469_1f3fc_200d_1f680.png\",\"lia_man-firefighter-tone-2\":\"/html/@071C32E13D50DC11912F3D302EEEF334/emoticons/1f468_1f3fc_200d_1f692.png\",\"lia_woman-firefighter-tone-2\":\"/html/@5101EDEB80F36CCFFD26AC6D14B89430/emoticons/1f469_1f3fc_200d_1f692.png\",\"lia_prince-tone-2\":\"/html/@03894986B29B0563E0C68607C74A8D2A/emoticons/1f934_1f3fc.png\",\"lia_princess-tone-2\":\"/html/@964562AF5F27DDE5A5471C30DAFAFE19/emoticons/1f478_1f3fc.png\",\"lia_man-with-chinese-cap-tone-2\":\"/html/@0C968748B42E295D45C457D9BE7D45A5/emoticons/1f472_1f3fc.png\",\"lia_man-in-tuxedo-tone-2\":\"/html/@D1AC5FF1A93AC6C58235E8B60B610753/emoticons/1f935_1f3fc.png\",\"lia_bride-with-veil-tone-2\":\"/html/@A5C965D5076559C723F80D53F1ABFA05/emoticons/1f470_1f3fc.png\",\"lia_pregnant-woman-tone-2\":\"/html/@025BE1C118637A0FAB6E22BE965F80E1/emoticons/1f930_1f3fc.png\",\"lia_baby-angel-tone-2\":\"/html/@927E3AFB77DB7A9FDE39C7D27D0217C1/emoticons/1f47c_1f3fc.png\",\"lia_santa-claus-tone-2\":\"/html/@61BE40C872C910B37A82EF5633C21C41/emoticons/1f385_1f3fc.png\",\"lia_mrs.-claus-tone-2\":\"/html/@3F194A53CFA0EDD4A79C27449EF587DA/emoticons/1f936_1f3fc.png\",\"lia_woman-dancing-tone-2\":\"/html/@178E5BC53FAFCBA4678B7533770D0040/emoticons/1f483_1f3fc.png\",\"lia_man-dancing-tone-2\":\"/html/@5C90A5BA9062AEB8A3B419BB6E8FED5D/emoticons/1f57a_1f3fc.png\",\"lia_person-taking-bath-tone-2\":\"/html/@85B6B4016A0924EC76EAE49C789B2211/emoticons/1f6c0_1f3fc.png\",\"lia_person-in-bed-tone-2\":\"/html/@BC30E24180D1A58BE977CC42B1557E24/emoticons/1f6cc_1f3fc.png\",\"lia_man-in-suit-levitating-tone-2\":\"/html/@4C8CEBD80D8B43EB108063A1EF1CBD60/emoticons/1f574_1f3fc.png\",\"lia_horse-racing-tone-2\":\"/html/@0ABCDBA7DE3B1F615D05C79F61CCAAC6/emoticons/1f3c7_1f3fc.png\",\"lia_snowboarder-tone-2\":\"/html/@E608B3559DCDFEFB1D8EFF1F02B80B55/emoticons/1f3c2_1f3fc.png\",\"lia_selfie-tone-2\":\"/html/@2F32B507C2C9B496159F3890825C1276/emoticons/1f933_1f3fc.png\",\"lia_flexed-biceps-tone-2\":\"/html/@146D5B510E56D9E969CDFC425FB2D843/emoticons/1f4aa_1f3fc.png\",\"lia_backhand-index-pointing-left-tone-2\":\"/html/@BBA2ED6CA58AE970E476C9A9F3E9EE84/emoticons/1f448_1f3fc.png\",\"lia_backhand-index-pointing-right-tone-2\":\"/html/@638D080F3B61429B81527D1F4B12EAD8/emoticons/1f449_1f3fc.png\",\"lia_index-pointing-up-tone-2\":\"/html/@8205F707EB807802AF177099A47E1FE9/emoticons/261d_1f3fc.png\",\"lia_backhand-index-pointing-up-tone-2\":\"/html/@25576D175D8FF5B5749447D7274DCE8D/emoticons/1f446_1f3fc.png\",\"lia_middle-finger-tone-2\":\"/html/@B618694C7377BC8BFB2F67AD5DA6B75E/emoticons/1f595_1f3fc.png\",\"lia_backhand-index-pointing-down-tone-2\":\"/html/@8D1C829CE88958834259DE0CA187C6F8/emoticons/1f447_1f3fc.png\",\"lia_victory-hand-tone-2\":\"/html/@F5C88697D611898B78F1B46934096B76/emoticons/270c_1f3fc.png\",\"lia_crossed-fingers-tone-2\":\"/html/@942BB87B0DD661D413334143AD68773C/emoticons/1f91e_1f3fc.png\",\"lia_vulcan-salute-tone-2\":\"/html/@2DEC1E236CC20390A1F2AD7C216E0694/emoticons/1f596_1f3fc.png\",\"lia_sign-of-the-horns-tone-2\":\"/html/@E399BC7DA7BCEF8C3A0D0E8ECFB9D925/emoticons/1f918_1f3fc.png\",\"lia_call-me-hand-tone-2\":\"/html/@9F6C1E5BCAEF59DFF299FC01C6EEF641/emoticons/1f919_1f3fc.png\",\"lia_hand-with-fingers-splayed-tone-2\":\"/html/@1C61E32F6CA22B22148E495F70FC0105/emoticons/1f590_1f3fc.png\",\"lia_raised-hand-tone-2\":\"/html/@6CD9A1EE0E2F3E0AA166DFDE823602A6/emoticons/270b_1f3fc.png\",\"lia_ok-hand-tone-2\":\"/html/@B01BC20E6646EF30EC607773D9B6D7B5/emoticons/1f44c_1f3fc.png\",\"lia_thumbs-up-tone-2\":\"/html/@0719AAD03EF2BFCD7BF983FFF437D4A8/emoticons/1f44d_1f3fc.png\",\"lia_thumbs-down-tone-2\":\"/html/@C7BFDDB987FCBBB919950CA7442E7798/emoticons/1f44e_1f3fc.png\",\"lia_raised-fist-tone-2\":\"/html/@37F0D3E84FA50D0B62F3DC0A06AF3651/emoticons/270a_1f3fc.png\",\"lia_oncoming-fist-tone-2\":\"/html/@042C2DE6F09562BF22C944AB4AA6E57C/emoticons/1f44a_1f3fc.png\",\"lia_left-facing-fist-tone-2\":\"/html/@BCC2BC66EB49014106AC8202EFBCE772/emoticons/1f91b_1f3fc.png\",\"lia_right-facing-fist-tone-2\":\"/html/@8512393AD8CEA17E2F758A924BD7ECFC/emoticons/1f91c_1f3fc.png\",\"lia_raised-back-of-hand-tone-2\":\"/html/@37EEEE464AC676477606D60E737187DB/emoticons/1f91a_1f3fc.png\",\"lia_waving-hand-tone-2\":\"/html/@3D482E10548950AF23618BABEB4A32E6/emoticons/1f44b_1f3fc.png\",\"lia_writing-hand-tone-2\":\"/html/@A9A050BE8098B74847F60F7B15A1CBC9/emoticons/270d_1f3fc.png\",\"lia_clapping-hands-tone-2\":\"/html/@4333EA8F609B507A42181C40D58611AB/emoticons/1f44f_1f3fc.png\",\"lia_open-hands-tone-2\":\"/html/@68DF6F6A780D9296F2DCC52AE3A96D45/emoticons/1f450_1f3fc.png\",\"lia_raising-hands-tone-2\":\"/html/@31B78B82001B201F9E685B20DC21FA19/emoticons/1f64c_1f3fc.png\",\"lia_folded-hands-tone-2\":\"/html/@FE60CD317CDA706082A4005C11FBB5BD/emoticons/1f64f_1f3fc.png\",\"lia_nail-polish-tone-2\":\"/html/@A715B18E05A9260E19AD11DF7C8651B6/emoticons/1f485_1f3fc.png\",\"lia_ear-tone-2\":\"/html/@C6AD2539C127E552A3C469C4BDA272C5/emoticons/1f442_1f3fc.png\",\"lia_nose-tone-2\":\"/html/@A70186C5BD87206D82C00071C0BBF107/emoticons/1f443_1f3fc.png\"},\"tone-1\":{\"lia_baby-tone-1\":\"/html/@3B5B3408516A176AA242C4340BD9C87B/emoticons/1f476_1f3fb.png\",\"lia_boy-tone-1\":\"/html/@6A7D3A4098720CC7431630D4ED6007BA/emoticons/1f466_1f3fb.png\",\"lia_girl-tone-1\":\"/html/@262A0E801D4384E512F9E2B442229937/emoticons/1f467_1f3fb.png\",\"lia_man-tone-1\":\"/html/@80F93433603D34CBB5B83FD95BB96445/emoticons/1f468_1f3fb.png\",\"lia_woman-tone-1\":\"/html/@8A9F8C25D45613120EF19350B942F8F1/emoticons/1f469_1f3fb.png\",\"lia_old-man-tone-1\":\"/html/@0299B978940708F25A828200FAA33B85/emoticons/1f474_1f3fb.png\",\"lia_old-woman-tone-1\":\"/html/@C6AC52DFD93195579FEA12AD86D56F87/emoticons/1f475_1f3fb.png\",\"lia_man-health-worker-tone-1\":\"/html/@B2A2DF40A82C4A9B20A296D5E65EC0DF/emoticons/1f468_1f3fb_200d_2695.png\",\"lia_woman-health-worker-tone-1\":\"/html/@2C0A197FBB47F4EA4598412B93B8BFA7/emoticons/1f469_1f3fb_200d_2695.png\",\"lia_man-student-tone-1\":\"/html/@DA3E53CC71164BB006AB1375E4836CA8/emoticons/1f468_1f3fb_200d_1f393.png\",\"lia_woman-student-tone-1\":\"/html/@4C2F0042876191C2B96F48736D1E0E2D/emoticons/1f469_1f3fb_200d_1f393.png\",\"lia_man-teacher-tone-1\":\"/html/@A56DE9A05C6C1A8AB711BBC5497068CD/emoticons/1f468_1f3fb_200d_1f3eb.png\",\"lia_woman-teacher-tone-1\":\"/html/@4B190494B3B97D8B1AED93A3D6C07EE0/emoticons/1f469_1f3fb_200d_1f3eb.png\",\"lia_man-judge-tone-1\":\"/html/@356DE57AEF9A3BEEC20A4945ABF0DDB5/emoticons/1f468_1f3fb_200d_2696.png\",\"lia_woman-judge-tone-1\":\"/html/@176231092085AC1417BEBA9BDC395FD9/emoticons/1f469_1f3fb_200d_2696.png\",\"lia_man-farmer-tone-1\":\"/html/@2D1D4BBC3153F2B1E913A521577C5757/emoticons/1f468_1f3fb_200d_1f33e.png\",\"lia_woman-farmer-tone-1\":\"/html/@4083A88E607830B2613DD3B5277B279C/emoticons/1f469_1f3fb_200d_1f33e.png\",\"lia_man-cook-tone-1\":\"/html/@6BFE990CF0B200361C1753563F69AD59/emoticons/1f468_1f3fb_200d_1f373.png\",\"lia_woman-cook-tone-1\":\"/html/@9CD6DC1E68D2E2C08B2602FD9AE6282E/emoticons/1f469_1f3fb_200d_1f373.png\",\"lia_man-mechanic-tone-1\":\"/html/@4BB04CB7E86A30B9B5E6A00572C7C5A3/emoticons/1f468_1f3fb_200d_1f527.png\",\"lia_woman-mechanic-tone-1\":\"/html/@2D79DFD7F614E647904F3CDB32EEEC5A/emoticons/1f469_1f3fb_200d_1f527.png\",\"lia_man-factory-worker-tone-1\":\"/html/@2B71903B2E1AE2EAE6A9A7F5C3193CE4/emoticons/1f468_1f3fb_200d_1f3ed.png\",\"lia_woman-factory-worker-tone-1\":\"/html/@F625ACE11F0A73B2000D702084F6600B/emoticons/1f469_1f3fb_200d_1f3ed.png\",\"lia_man-office-worker-tone-1\":\"/html/@B00E8DDE7AB5CB648741A7F9D62AAC29/emoticons/1f468_1f3fb_200d_1f4bc.png\",\"lia_woman-office-worker-tone-1\":\"/html/@3AFA96B3D171B99CEB197A4EF6B7DEB8/emoticons/1f469_1f3fb_200d_1f4bc.png\",\"lia_man-scientist-tone-1\":\"/html/@43B66C1D6A0E6485BBE6CDA373096553/emoticons/1f468_1f3fb_200d_1f52c.png\",\"lia_woman-scientist-tone-1\":\"/html/@A635DBCEFFA88AF42F83768CB4F0DF5C/emoticons/1f469_1f3fb_200d_1f52c.png\",\"lia_man-technologist-tone-1\":\"/html/@DBF2A0CB0E6ADB87ECF2CE90F1894484/emoticons/1f468_1f3fb_200d_1f4bb.png\",\"lia_woman-technologist-tone-1\":\"/html/@0A4BAF947B4918B49DD817CD9FC34CAF/emoticons/1f469_1f3fb_200d_1f4bb.png\",\"lia_man-singer-tone-1\":\"/html/@6874EE8E169BAAFFCAC4BD3FDD2F0A34/emoticons/1f468_1f3fb_200d_1f3a4.png\",\"lia_woman-singer-tone-1\":\"/html/@065BDBE455C23A1CAFAC0626C91B7AC7/emoticons/1f469_1f3fb_200d_1f3a4.png\",\"lia_man-artist-tone-1\":\"/html/@6054C8104420CE612C72CAD2BE1B9C4C/emoticons/1f468_1f3fb_200d_1f3a8.png\",\"lia_woman-artist-tone-1\":\"/html/@65BD3BDF5E2326BF75FB96FBFF4D537A/emoticons/1f469_1f3fb_200d_1f3a8.png\",\"lia_man-pilot-tone-1\":\"/html/@CF181685102C10CC92599A1FF99C62FF/emoticons/1f468_1f3fb_200d_2708.png\",\"lia_woman-pilot-tone-1\":\"/html/@2D5ADBDE98500ED7298C7E3288F67DF3/emoticons/1f469_1f3fb_200d_2708.png\",\"lia_man-astronaut-tone-1\":\"/html/@528DD992DEAE91C8DCE1F55AE58FAF10/emoticons/1f468_1f3fb_200d_1f680.png\",\"lia_woman-astronaut-tone-1\":\"/html/@507604CB8F8AAE4023387377B4BC3668/emoticons/1f469_1f3fb_200d_1f680.png\",\"lia_man-firefighter-tone-1\":\"/html/@D2E441AC794DFCA0748BCF522E86D04F/emoticons/1f468_1f3fb_200d_1f692.png\",\"lia_woman-firefighter-tone-1\":\"/html/@BB45A31E7B00B4CB907F098BA6756546/emoticons/1f469_1f3fb_200d_1f692.png\",\"lia_prince-tone-1\":\"/html/@B6A6CA0877CC4C372EE8FB9D35339679/emoticons/1f934_1f3fb.png\",\"lia_princess-tone-1\":\"/html/@3BEC4F8143D0D2A37C5A52A2CC502162/emoticons/1f478_1f3fb.png\",\"lia_man-with-chinese-cap-tone-1\":\"/html/@BC9EA404259349DF99558BFFB43CCAC1/emoticons/1f472_1f3fb.png\",\"lia_man-in-tuxedo-tone-1\":\"/html/@990304FBC7761708A9C4540E45A2B8CC/emoticons/1f935_1f3fb.png\",\"lia_bride-with-veil-tone-1\":\"/html/@024F381B84CC068BD36B8E208FFB5DE6/emoticons/1f470_1f3fb.png\",\"lia_pregnant-woman-tone-1\":\"/html/@24F959B45D2D61B34D821E26AAE765DA/emoticons/1f930_1f3fb.png\",\"lia_baby-angel-tone-1\":\"/html/@896CC179BA06014300212F6C3425C3E4/emoticons/1f47c_1f3fb.png\",\"lia_santa-claus-tone-1\":\"/html/@ED8758A159D2F20D7F2059371DB8CCBA/emoticons/1f385_1f3fb.png\",\"lia_mrs.-claus-tone-1\":\"/html/@9C5A27E2541C1455906A79637550CC7E/emoticons/1f936_1f3fb.png\",\"lia_woman-dancing-tone-1\":\"/html/@3995AFE9E4AC48570BE76A19537A4401/emoticons/1f483_1f3fb.png\",\"lia_man-dancing-tone-1\":\"/html/@6B2C5DB3BEBA3137124D4F5CCB24583C/emoticons/1f57a_1f3fb.png\",\"lia_person-taking-bath-tone-1\":\"/html/@A3FF04B7CE8F6D214D580116BF3BEE1C/emoticons/1f6c0_1f3fb.png\",\"lia_person-in-bed-tone-1\":\"/html/@40188275BB116D379AC375513E334921/emoticons/1f6cc_1f3fb.png\",\"lia_man-in-suit-levitating-tone-1\":\"/html/@B9916FC63DD3F69D460DB79EC15CBA3F/emoticons/1f574_1f3fb.png\",\"lia_horse-racing-tone-1\":\"/html/@6DB28D6D1810A848AF9D074C159CCB2F/emoticons/1f3c7_1f3fb.png\",\"lia_snowboarder-tone-1\":\"/html/@39A9018D44C256CC932F929BAD12DA41/emoticons/1f3c2_1f3fb.png\",\"lia_selfie-tone-1\":\"/html/@73F5DD288FC744681646FD2C84B326B8/emoticons/1f933_1f3fb.png\",\"lia_flexed-biceps-tone-1\":\"/html/@760704093BCF1FD483D0897ADCBD2AFF/emoticons/1f4aa_1f3fb.png\",\"lia_backhand-index-pointing-left-tone-1\":\"/html/@D02093AD7CB73CC1D8687B0975B13255/emoticons/1f448_1f3fb.png\",\"lia_backhand-index-pointing-right-tone-1\":\"/html/@BAD4F4F6B1BF70FEB739E54A036E9C91/emoticons/1f449_1f3fb.png\",\"lia_index-pointing-up-tone-1\":\"/html/@82660119BC96BDC57DC114FBD7F22462/emoticons/261d_1f3fb.png\",\"lia_backhand-index-pointing-up-tone-1\":\"/html/@BAE5B2B1760CE9DFE49792EE2FC062FF/emoticons/1f446_1f3fb.png\",\"lia_middle-finger-tone-1\":\"/html/@E177C5300ECE4CE3A04E19CE5E5DDAF6/emoticons/1f595_1f3fb.png\",\"lia_backhand-index-pointing-down-tone-1\":\"/html/@14EDBE8C08A9DF136F03F2FBD2DB7A5D/emoticons/1f447_1f3fb.png\",\"lia_victory-hand-tone-1\":\"/html/@626AC4FA6209475E21E4A228D4955550/emoticons/270c_1f3fb.png\",\"lia_crossed-fingers-tone-1\":\"/html/@493BA04F7462599B5458AF87877F2243/emoticons/1f91e_1f3fb.png\",\"lia_vulcan-salute-tone-1\":\"/html/@CFDDBDC01C1E0ADB28295807A1B22A9F/emoticons/1f596_1f3fb.png\",\"lia_sign-of-the-horns-tone-1\":\"/html/@3FC1692D89F83466BAD51BA51C8F920F/emoticons/1f918_1f3fb.png\",\"lia_call-me-hand-tone-1\":\"/html/@A4A89C2744E5ED72EDB723E5C7EDF4C1/emoticons/1f919_1f3fb.png\",\"lia_hand-with-fingers-splayed-tone-1\":\"/html/@FB769C693FF3A527378D559AAA7E94DF/emoticons/1f590_1f3fb.png\",\"lia_raised-hand-tone-1\":\"/html/@A3A0984A8C931C0E3D48B9EB87A5FB91/emoticons/270b_1f3fb.png\",\"lia_ok-hand-tone-1\":\"/html/@18809C4DE2274F720B74D2CAFA4D39AD/emoticons/1f44c_1f3fb.png\",\"lia_thumbs-up-tone-1\":\"/html/@DCBF8FAB5F942C53A27E815409644EAC/emoticons/1f44d_1f3fb.png\",\"lia_thumbs-down-tone-1\":\"/html/@D32CDF095AB6BDABCF1F75E37A7D462A/emoticons/1f44e_1f3fb.png\",\"lia_raised-fist-tone-1\":\"/html/@51A996CA6644DECCEB1E33DB933EA97B/emoticons/270a_1f3fb.png\",\"lia_oncoming-fist-tone-1\":\"/html/@8A4A9521F6958C940CDA3D2FF5A0519F/emoticons/1f44a_1f3fb.png\",\"lia_left-facing-fist-tone-1\":\"/html/@77773BF49578CA139788BB272765B4A2/emoticons/1f91b_1f3fb.png\",\"lia_right-facing-fist-tone-1\":\"/html/@E0C5A569ACD99D3C126034886D384F17/emoticons/1f91c_1f3fb.png\",\"lia_raised-back-of-hand-tone-1\":\"/html/@3AFD717AE86F4CF912059F2160358BB5/emoticons/1f91a_1f3fb.png\",\"lia_waving-hand-tone-1\":\"/html/@D717DA8D65192EF7EBD1FF8EC20F2A62/emoticons/1f44b_1f3fb.png\",\"lia_writing-hand-tone-1\":\"/html/@10502C4C46820C66514830D2977C03BE/emoticons/270d_1f3fb.png\",\"lia_clapping-hands-tone-1\":\"/html/@210D092B41BA9C0D918F4E9F1E3D8966/emoticons/1f44f_1f3fb.png\",\"lia_open-hands-tone-1\":\"/html/@4E7D9E45254D1247549A28F0F952C3F8/emoticons/1f450_1f3fb.png\",\"lia_raising-hands-tone-1\":\"/html/@D5118EAA030F3A9CF37C986FD021AF95/emoticons/1f64c_1f3fb.png\",\"lia_folded-hands-tone-1\":\"/html/@2E8435A1D710CC4F227496E64669EFAF/emoticons/1f64f_1f3fb.png\",\"lia_nail-polish-tone-1\":\"/html/@09E1748C969107DD2485F4BCE156FC21/emoticons/1f485_1f3fb.png\",\"lia_ear-tone-1\":\"/html/@32329C1A5A890E95F2F37F16BA0A18B9/emoticons/1f442_1f3fb.png\",\"lia_nose-tone-1\":\"/html/@511B13FB4B6A1A4BFE1D1024A3D6D9DD/emoticons/1f443_1f3fb.png\"},\"tone-4\":{\"lia_baby-tone-4\":\"/html/@3D6D9F12EE53BB846C050FDB190566A9/emoticons/1f476_1f3fe.png\",\"lia_boy-tone-4\":\"/html/@58BF4994627513D17C2B78D7C94CB2A5/emoticons/1f466_1f3fe.png\",\"lia_girl-tone-4\":\"/html/@6D481246584AB9DBAD5541596C654C9A/emoticons/1f467_1f3fe.png\",\"lia_man-tone-4\":\"/html/@8D78CB95C5DF8FA973919CD5AF846C4D/emoticons/1f468_1f3fe.png\",\"lia_woman-tone-4\":\"/html/@398EAA5926F3BCA5A518A0105C2540CB/emoticons/1f469_1f3fe.png\",\"lia_old-man-tone-4\":\"/html/@F63F216D961C9EF2A826AFADBE7794E7/emoticons/1f474_1f3fe.png\",\"lia_old-woman-tone-4\":\"/html/@0DB6A5AED56AF467D67FE8FAA7BA2BE3/emoticons/1f475_1f3fe.png\",\"lia_man-health-worker-tone-4\":\"/html/@1FE620C980D171A0F8EF5AF4529FDDA7/emoticons/1f468_1f3fe_200d_2695.png\",\"lia_woman-health-worker-tone-4\":\"/html/@F8E937D7B0C98544970B036E899B3209/emoticons/1f469_1f3fe_200d_2695.png\",\"lia_man-student-tone-4\":\"/html/@87159704AFD4DC7DEDC0F48488A4FD28/emoticons/1f468_1f3fe_200d_1f393.png\",\"lia_woman-student-tone-4\":\"/html/@11B794060281AFF27C01BB5C94B927B0/emoticons/1f469_1f3fe_200d_1f393.png\",\"lia_man-teacher-tone-4\":\"/html/@895ECD17E9004EFC9C9A50B6D1A012F5/emoticons/1f468_1f3fe_200d_1f3eb.png\",\"lia_woman-teacher-tone-4\":\"/html/@1AFD088E477F233D8E087B0B6EC7C13F/emoticons/1f469_1f3fe_200d_1f3eb.png\",\"lia_man-judge-tone-4\":\"/html/@D09C71B3F4086590A044FE613E3B894A/emoticons/1f468_1f3fe_200d_2696.png\",\"lia_woman-judge-tone-4\":\"/html/@40B3CC901262744A1D3FE8F1FB74D434/emoticons/1f469_1f3fe_200d_2696.png\",\"lia_man-farmer-tone-4\":\"/html/@DAAE87550FF6209B61AE213261560CDA/emoticons/1f468_1f3fe_200d_1f33e.png\",\"lia_woman-farmer-tone-4\":\"/html/@458E9688D0914FD199B0761E220E7DEA/emoticons/1f469_1f3fe_200d_1f33e.png\",\"lia_man-cook-tone-4\":\"/html/@6C00A170D96F8D7517CFA073FCCDD192/emoticons/1f468_1f3fe_200d_1f373.png\",\"lia_woman-cook-tone-4\":\"/html/@EABC2B69FEDD74F71A1846CE03AE0871/emoticons/1f469_1f3fe_200d_1f373.png\",\"lia_man-mechanic-tone-4\":\"/html/@42342F4208AC435E1409E5058ED3256A/emoticons/1f468_1f3fe_200d_1f527.png\",\"lia_woman-mechanic-tone-4\":\"/html/@A1E8C0F9C78FE321B9E61F147E5C7BAC/emoticons/1f469_1f3fe_200d_1f527.png\",\"lia_man-factory-worker-tone-4\":\"/html/@43A867124986C7C16B02D034E0D80629/emoticons/1f468_1f3fe_200d_1f3ed.png\",\"lia_woman-factory-worker-tone-4\":\"/html/@25121A048EE4F20241921B8C2EE677A1/emoticons/1f469_1f3fe_200d_1f3ed.png\",\"lia_man-office-worker-tone-4\":\"/html/@DDED350621C2FBF3D725E49D8BC2A965/emoticons/1f468_1f3fe_200d_1f4bc.png\",\"lia_woman-office-worker-tone-4\":\"/html/@1498BFC5AFB0EF50A5D704401A726ADB/emoticons/1f469_1f3fe_200d_1f4bc.png\",\"lia_man-scientist-tone-4\":\"/html/@BAFC1C61413019222ABD7545624CED33/emoticons/1f468_1f3fe_200d_1f52c.png\",\"lia_woman-scientist-tone-4\":\"/html/@33243B54F0D56A588D911D91E82A003E/emoticons/1f469_1f3fe_200d_1f52c.png\",\"lia_man-technologist-tone-4\":\"/html/@CE2BF78A5C6BDACDA0685465606954C9/emoticons/1f468_1f3fe_200d_1f4bb.png\",\"lia_woman-technologist-tone-4\":\"/html/@63C67C4E14BCE69C705246B01EC2C529/emoticons/1f469_1f3fe_200d_1f4bb.png\",\"lia_man-singer-tone-4\":\"/html/@DABF7AD382E5819B54B572199498BD28/emoticons/1f468_1f3fe_200d_1f3a4.png\",\"lia_woman-singer-tone-4\":\"/html/@C8FC321D5C918711CE398F026A6D4867/emoticons/1f469_1f3fe_200d_1f3a4.png\",\"lia_man-artist-tone-4\":\"/html/@719AF68D682C2D57FC8B85D167174111/emoticons/1f468_1f3fe_200d_1f3a8.png\",\"lia_woman-artist-tone-4\":\"/html/@907F1502C354958639D31ABF0CFB47A1/emoticons/1f469_1f3fe_200d_1f3a8.png\",\"lia_man-pilot-tone-4\":\"/html/@2B45A574FE8DDFD37F0E98C1FD2336BF/emoticons/1f468_1f3fe_200d_2708.png\",\"lia_woman-pilot-tone-4\":\"/html/@76E0F8B3D6F20DB94BC6625358931AF4/emoticons/1f469_1f3fe_200d_2708.png\",\"lia_man-astronaut-tone-4\":\"/html/@53A533FC5AB9D11D3001DBBAEAC1659A/emoticons/1f468_1f3fe_200d_1f680.png\",\"lia_woman-astronaut-tone-4\":\"/html/@0BCD471C223B0A47552F80F1A1183CC4/emoticons/1f469_1f3fe_200d_1f680.png\",\"lia_man-firefighter-tone-4\":\"/html/@F8E2C9AF9C6A7CD021D017802B6F5726/emoticons/1f468_1f3fe_200d_1f692.png\",\"lia_woman-firefighter-tone-4\":\"/html/@EE4C55CFD5531D7A2D21B7F3C544E5E6/emoticons/1f469_1f3fe_200d_1f692.png\",\"lia_prince-tone-4\":\"/html/@9E55979DF925B24581D826E275F3B86D/emoticons/1f934_1f3fe.png\",\"lia_princess-tone-4\":\"/html/@39FA63705199CF02283D990F5152F17E/emoticons/1f478_1f3fe.png\",\"lia_man-with-chinese-cap-tone-4\":\"/html/@FF7D288CEF9AB2BD18821DED3EF5703A/emoticons/1f472_1f3fe.png\",\"lia_man-in-tuxedo-tone-4\":\"/html/@158310CB98B29B0F2DA64EFB193D050C/emoticons/1f935_1f3fe.png\",\"lia_bride-with-veil-tone-4\":\"/html/@C900CB85740144B0A75EC4831D788EDA/emoticons/1f470_1f3fe.png\",\"lia_pregnant-woman-tone-4\":\"/html/@C355706968D0A4D83283134EF0DA4B9C/emoticons/1f930_1f3fe.png\",\"lia_baby-angel-tone-4\":\"/html/@D10A129F4316E9A18669B7958119DF0D/emoticons/1f47c_1f3fe.png\",\"lia_santa-claus-tone-4\":\"/html/@50914F0121C860A121515FEA09648DB3/emoticons/1f385_1f3fe.png\",\"lia_mrs.-claus-tone-4\":\"/html/@7C994B9721BCB359F8D84FE42B11AA68/emoticons/1f936_1f3fe.png\",\"lia_woman-dancing-tone-4\":\"/html/@ABE4A21980FD835816CFDCFBF10B32CE/emoticons/1f483_1f3fe.png\",\"lia_man-dancing-tone-4\":\"/html/@3A81808E46E6FA822659022F714D6941/emoticons/1f57a_1f3fe.png\",\"lia_person-taking-bath-tone-4\":\"/html/@1A13550978C7274DF15AAA837BAAA980/emoticons/1f6c0_1f3fe.png\",\"lia_person-in-bed-tone-4\":\"/html/@84A6E2B86B6F9FB555E8F942D3761A6B/emoticons/1f6cc_1f3fe.png\",\"lia_man-in-suit-levitating-tone-4\":\"/html/@99D4F437D4BE8A85A1DDCB827373C59F/emoticons/1f574_1f3fe.png\",\"lia_horse-racing-tone-4\":\"/html/@ECD0F438D06DB9644C8704E962EC4B61/emoticons/1f3c7_1f3fe.png\",\"lia_snowboarder-tone-4\":\"/html/@60B7E48F4F42B9CAD493162C0FC96791/emoticons/1f3c2_1f3fe.png\",\"lia_selfie-tone-4\":\"/html/@54D7BD599A701BA55822973BBB416F42/emoticons/1f933_1f3fe.png\",\"lia_flexed-biceps-tone-4\":\"/html/@615470691E94A15E7DD01CEC1EA51FB1/emoticons/1f4aa_1f3fe.png\",\"lia_backhand-index-pointing-left-tone-4\":\"/html/@485B37F7E9A5DFDB0DCB536BC3B4546D/emoticons/1f448_1f3fe.png\",\"lia_backhand-index-pointing-right-tone-4\":\"/html/@07C334AB0D9D25F34D98F7380219433A/emoticons/1f449_1f3fe.png\",\"lia_index-pointing-up-tone-4\":\"/html/@1593984301157BADB85E85AE0F6648F9/emoticons/261d_1f3fe.png\",\"lia_backhand-index-pointing-up-tone-4\":\"/html/@04E987A2D7F6C35AD81577B8D0EA22E1/emoticons/1f446_1f3fe.png\",\"lia_middle-finger-tone-4\":\"/html/@F25D74700C8FD168B7525A9C3073CE2C/emoticons/1f595_1f3fe.png\",\"lia_backhand-index-pointing-down-tone-4\":\"/html/@150D7AB0699EFFFF296122A776F4FBBE/emoticons/1f447_1f3fe.png\",\"lia_victory-hand-tone-4\":\"/html/@4BC7AA3428ADACBF1D8E2F0B95952559/emoticons/270c_1f3fe.png\",\"lia_crossed-fingers-tone-4\":\"/html/@65D52453E9E2CB82FCAED350F0ACB910/emoticons/1f91e_1f3fe.png\",\"lia_vulcan-salute-tone-4\":\"/html/@5E0C059FFE4DB3087A031D1F695F0A4E/emoticons/1f596_1f3fe.png\",\"lia_sign-of-the-horns-tone-4\":\"/html/@985F4559FE3F6E910388B340B3F4C086/emoticons/1f918_1f3fe.png\",\"lia_call-me-hand-tone-4\":\"/html/@CDE1762E6FD1314EC9CE5D816EB997B4/emoticons/1f919_1f3fe.png\",\"lia_hand-with-fingers-splayed-tone-4\":\"/html/@09990A390ADAE4D786BE6AB2B995C8A3/emoticons/1f590_1f3fe.png\",\"lia_raised-hand-tone-4\":\"/html/@751E39246751331A903C6C082561F69A/emoticons/270b_1f3fe.png\",\"lia_ok-hand-tone-4\":\"/html/@2EA031DC3F1D3BABD1E5BA8DB76F8000/emoticons/1f44c_1f3fe.png\",\"lia_thumbs-up-tone-4\":\"/html/@7D98605C9C6C31D35277FFD42DC47B8E/emoticons/1f44d_1f3fe.png\",\"lia_thumbs-down-tone-4\":\"/html/@107368E0A2F853525BC30917C18A55AA/emoticons/1f44e_1f3fe.png\",\"lia_raised-fist-tone-4\":\"/html/@73B49015E54CECCD7A447467DE9BA451/emoticons/270a_1f3fe.png\",\"lia_oncoming-fist-tone-4\":\"/html/@BE4BF6B4EDC907A5B3A2147E500B1FBD/emoticons/1f44a_1f3fe.png\",\"lia_left-facing-fist-tone-4\":\"/html/@7B9B0C8428E350B7C785D73E33067E54/emoticons/1f91b_1f3fe.png\",\"lia_right-facing-fist-tone-4\":\"/html/@8DD36807DB34634B2C6F01ED671482DE/emoticons/1f91c_1f3fe.png\",\"lia_raised-back-of-hand-tone-4\":\"/html/@809FF264D0C630F70B202B3E5AAD0CF3/emoticons/1f91a_1f3fe.png\",\"lia_waving-hand-tone-4\":\"/html/@E0D23E577F344F483048789DFEE8B28F/emoticons/1f44b_1f3fe.png\",\"lia_writing-hand-tone-4\":\"/html/@E1C1E98898869CDC077E5E3AB525484A/emoticons/270d_1f3fe.png\",\"lia_clapping-hands-tone-4\":\"/html/@74EFAD308C5FD6E4131AB6665FD68C33/emoticons/1f44f_1f3fe.png\",\"lia_open-hands-tone-4\":\"/html/@28327D6EBDB582A666AEA8C7A20CFAB4/emoticons/1f450_1f3fe.png\",\"lia_raising-hands-tone-4\":\"/html/@6033A49FC60023DA279E6FD4F8AC24C4/emoticons/1f64c_1f3fe.png\",\"lia_folded-hands-tone-4\":\"/html/@31210D24DE42355D22F7D5E16D72658F/emoticons/1f64f_1f3fe.png\",\"lia_nail-polish-tone-4\":\"/html/@7079EA433CFFFE880A31D6ABC8EA3323/emoticons/1f485_1f3fe.png\",\"lia_ear-tone-4\":\"/html/@31B34832F57F4EF3DA171EF180340F74/emoticons/1f442_1f3fe.png\",\"lia_nose-tone-4\":\"/html/@76B6E69087A46DC8FCE04E183B794958/emoticons/1f443_1f3fe.png\"},\"tone-3\":{\"lia_baby-tone-3\":\"/html/@A65EE9D337B83E8596BA6909AB8AEE1A/emoticons/1f476_1f3fd.png\",\"lia_boy-tone-3\":\"/html/@2FA55C88615D85DE9C27D59A5972621F/emoticons/1f466_1f3fd.png\",\"lia_girl-tone-3\":\"/html/@E97BBEE435B3AC66A024627E97B92160/emoticons/1f467_1f3fd.png\",\"lia_man-tone-3\":\"/html/@1504340E1F5D0F79F8A97E95256DD3FF/emoticons/1f468_1f3fd.png\",\"lia_woman-tone-3\":\"/html/@9FF346ACDAEA28F5A8E6F8E3411469C2/emoticons/1f469_1f3fd.png\",\"lia_old-man-tone-3\":\"/html/@F2E5222081389845F19290AEB001B69E/emoticons/1f474_1f3fd.png\",\"lia_old-woman-tone-3\":\"/html/@4953CEA12AEF096E5C2B05EC87B5342F/emoticons/1f475_1f3fd.png\",\"lia_man-health-worker-tone-3\":\"/html/@E85D983C590403DF2112C12D8D9D06B9/emoticons/1f468_1f3fd_200d_2695.png\",\"lia_woman-health-worker-tone-3\":\"/html/@0A356ADAA745032D9F4D8E0360554C39/emoticons/1f469_1f3fd_200d_2695.png\",\"lia_man-student-tone-3\":\"/html/@3CF1D41D758542C91F5925C5CBDB6A7C/emoticons/1f468_1f3fd_200d_1f393.png\",\"lia_woman-student-tone-3\":\"/html/@231C34BBD9B91965BC55230D7A27048B/emoticons/1f469_1f3fd_200d_1f393.png\",\"lia_man-teacher-tone-3\":\"/html/@B73665CAB3F3A07F97FDDBB2A2111B2C/emoticons/1f468_1f3fd_200d_1f3eb.png\",\"lia_woman-teacher-tone-3\":\"/html/@790E3D1D0B2EC82E11675E457641DB27/emoticons/1f469_1f3fd_200d_1f3eb.png\",\"lia_man-judge-tone-3\":\"/html/@615CAA95C8DABAF9E72590772FB36F30/emoticons/1f468_1f3fd_200d_2696.png\",\"lia_woman-judge-tone-3\":\"/html/@872C4DD40311A35CDAF14BEDBDB64D05/emoticons/1f469_1f3fd_200d_2696.png\",\"lia_man-farmer-tone-3\":\"/html/@38481AFE2B9692BBF5D2E2FC3A516BCA/emoticons/1f468_1f3fd_200d_1f33e.png\",\"lia_woman-farmer-tone-3\":\"/html/@B5DF3A24D24FA070DEF303B86D617E8D/emoticons/1f469_1f3fd_200d_1f33e.png\",\"lia_man-cook-tone-3\":\"/html/@1F589AF751E638D73873CC890A48A063/emoticons/1f468_1f3fd_200d_1f373.png\",\"lia_woman-cook-tone-3\":\"/html/@A6DB04D30BCB9A97B9DAD6973A488A0B/emoticons/1f469_1f3fd_200d_1f373.png\",\"lia_man-mechanic-tone-3\":\"/html/@C1BCD79D6D01D5ADA6B818BEAF1FF72A/emoticons/1f468_1f3fd_200d_1f527.png\",\"lia_woman-mechanic-tone-3\":\"/html/@C8489E2132F305B946585EDD71F44F9D/emoticons/1f469_1f3fd_200d_1f527.png\",\"lia_man-factory-worker-tone-3\":\"/html/@B07D66AF242D8958215AD5A749FAE335/emoticons/1f468_1f3fd_200d_1f3ed.png\",\"lia_woman-factory-worker-tone-3\":\"/html/@9C1BA8F1F099D3A22B91897C3626D457/emoticons/1f469_1f3fd_200d_1f3ed.png\",\"lia_man-office-worker-tone-3\":\"/html/@2101CD455C514A7533CF129B3E6BA397/emoticons/1f468_1f3fd_200d_1f4bc.png\",\"lia_woman-office-worker-tone-3\":\"/html/@68F2FDC0B34A62930FE66625E9355266/emoticons/1f469_1f3fd_200d_1f4bc.png\",\"lia_man-scientist-tone-3\":\"/html/@F1724F4D53ABB8C488A25C8F4A2F4212/emoticons/1f468_1f3fd_200d_1f52c.png\",\"lia_woman-scientist-tone-3\":\"/html/@BDF71ED2A3827A7C7A5ABB379FAEDCB1/emoticons/1f469_1f3fd_200d_1f52c.png\",\"lia_man-technologist-tone-3\":\"/html/@99F8796BE26AC36DA96803B34DFE189E/emoticons/1f468_1f3fd_200d_1f4bb.png\",\"lia_woman-technologist-tone-3\":\"/html/@1DF1CB71E75FE09B084E9C364F7CBF38/emoticons/1f469_1f3fd_200d_1f4bb.png\",\"lia_man-singer-tone-3\":\"/html/@54B664806211F07E7E0D3D5F8FDDB4E5/emoticons/1f468_1f3fd_200d_1f3a4.png\",\"lia_woman-singer-tone-3\":\"/html/@EF6A5102869EE2301BA3B0C8E61E2313/emoticons/1f469_1f3fd_200d_1f3a4.png\",\"lia_man-artist-tone-3\":\"/html/@109934566C148C61A6B2C3A5D1F6B0E2/emoticons/1f468_1f3fd_200d_1f3a8.png\",\"lia_woman-artist-tone-3\":\"/html/@C7B6C8DB08785380060184A7F02C8D1C/emoticons/1f469_1f3fd_200d_1f3a8.png\",\"lia_man-pilot-tone-3\":\"/html/@969D6FC8E735FC701F37634387D447F5/emoticons/1f468_1f3fd_200d_2708.png\",\"lia_woman-pilot-tone-3\":\"/html/@A5A63D5136482F872F601B07B03487E7/emoticons/1f469_1f3fd_200d_2708.png\",\"lia_man-astronaut-tone-3\":\"/html/@3DA42578F6B1882F974DDB8BFC5C8774/emoticons/1f468_1f3fd_200d_1f680.png\",\"lia_woman-astronaut-tone-3\":\"/html/@0D8A4A83248F31FC2079B0977143954C/emoticons/1f469_1f3fd_200d_1f680.png\",\"lia_man-firefighter-tone-3\":\"/html/@2D5AF1628376444CD5F4F8C71CC94D9E/emoticons/1f468_1f3fd_200d_1f692.png\",\"lia_woman-firefighter-tone-3\":\"/html/@2960F8B8591C69B55238D54AFBFED039/emoticons/1f469_1f3fd_200d_1f692.png\",\"lia_prince-tone-3\":\"/html/@212BEFBC386AD72A339BD31E5DF88AD3/emoticons/1f934_1f3fd.png\",\"lia_princess-tone-3\":\"/html/@580DC1EADD8FDCE4D695B6484920A5A9/emoticons/1f478_1f3fd.png\",\"lia_man-with-chinese-cap-tone-3\":\"/html/@833D8F38EEBF6E72A2528CD6E4C9CB1D/emoticons/1f472_1f3fd.png\",\"lia_man-in-tuxedo-tone-3\":\"/html/@E53DF3A2678D1EADB30F609535C91788/emoticons/1f935_1f3fd.png\",\"lia_bride-with-veil-tone-3\":\"/html/@F761481BCBCE96C5D5E36C9FAAD36285/emoticons/1f470_1f3fd.png\",\"lia_pregnant-woman-tone-3\":\"/html/@490895E3B8BD69DB6762018D1EF7220A/emoticons/1f930_1f3fd.png\",\"lia_baby-angel-tone-3\":\"/html/@5CC2D0F628FBBD751F19BBC1290D7633/emoticons/1f47c_1f3fd.png\",\"lia_santa-claus-tone-3\":\"/html/@921204DD048374F3CF4740BEF24761D3/emoticons/1f385_1f3fd.png\",\"lia_mrs.-claus-tone-3\":\"/html/@9708238CA3EA66DE778FB6D9DC1ECB40/emoticons/1f936_1f3fd.png\",\"lia_woman-dancing-tone-3\":\"/html/@831425A48BC4210186236402DFF76BFD/emoticons/1f483_1f3fd.png\",\"lia_man-dancing-tone-3\":\"/html/@78E2ADC1609BA52997613B08443B0BB4/emoticons/1f57a_1f3fd.png\",\"lia_person-taking-bath-tone-3\":\"/html/@AF1258E2C54B0E6D4AEB8C1763BE4AA2/emoticons/1f6c0_1f3fd.png\",\"lia_person-in-bed-tone-3\":\"/html/@683DD60404D82D2BA3560D8CCF682D5D/emoticons/1f6cc_1f3fd.png\",\"lia_man-in-suit-levitating-tone-3\":\"/html/@EA8BEAEDDB046224902BD8DC715131E5/emoticons/1f574_1f3fd.png\",\"lia_horse-racing-tone-3\":\"/html/@D53FD48EF4A1A83D915F60A8CFD7D0EF/emoticons/1f3c7_1f3fd.png\",\"lia_snowboarder-tone-3\":\"/html/@E0EE9C8113572F48E731C15CB0837B91/emoticons/1f3c2_1f3fd.png\",\"lia_selfie-tone-3\":\"/html/@0D92F373974D3352FFC4232B5361AE3D/emoticons/1f933_1f3fd.png\",\"lia_flexed-biceps-tone-3\":\"/html/@7F8A80A8205DAFE5773274F153F055E2/emoticons/1f4aa_1f3fd.png\",\"lia_backhand-index-pointing-left-tone-3\":\"/html/@5B8DD3D8402A70F1ECA320919447DB49/emoticons/1f448_1f3fd.png\",\"lia_backhand-index-pointing-right-tone-3\":\"/html/@CC167D4C79B74D35772944809AC2F9B7/emoticons/1f449_1f3fd.png\",\"lia_index-pointing-up-tone-3\":\"/html/@7AFC93FF1041D65738A93D9610F42E4A/emoticons/261d_1f3fd.png\",\"lia_backhand-index-pointing-up-tone-3\":\"/html/@2134A79A80265A24943D7AFE2DB58EF3/emoticons/1f446_1f3fd.png\",\"lia_middle-finger-tone-3\":\"/html/@C85C002AB26640E844081730D4846F3D/emoticons/1f595_1f3fd.png\",\"lia_backhand-index-pointing-down-tone-3\":\"/html/@5FB9E514CFADB5D2A42529483E7BFFE7/emoticons/1f447_1f3fd.png\",\"lia_victory-hand-tone-3\":\"/html/@158F22D0B6C18FA5D2A3412D23CD49BC/emoticons/270c_1f3fd.png\",\"lia_crossed-fingers-tone-3\":\"/html/@60D39EAE85221B3F30161606D7B569BA/emoticons/1f91e_1f3fd.png\",\"lia_vulcan-salute-tone-3\":\"/html/@2B0CB84AA43B645DF8F54A7B9CD615F4/emoticons/1f596_1f3fd.png\",\"lia_sign-of-the-horns-tone-3\":\"/html/@41A173D46CA16B94A8F74D4D07D4E7BA/emoticons/1f918_1f3fd.png\",\"lia_call-me-hand-tone-3\":\"/html/@07A6034FE60641B0880A928192652950/emoticons/1f919_1f3fd.png\",\"lia_hand-with-fingers-splayed-tone-3\":\"/html/@C26BB662F1C200C9F10BD75EDE872607/emoticons/1f590_1f3fd.png\",\"lia_raised-hand-tone-3\":\"/html/@76C2765899035DEC000411505D09086E/emoticons/270b_1f3fd.png\",\"lia_ok-hand-tone-3\":\"/html/@5E1A0B16EA109AE29CC0545B32F52067/emoticons/1f44c_1f3fd.png\",\"lia_thumbs-up-tone-3\":\"/html/@E95D415DA3A517C598B81FD4C80319D4/emoticons/1f44d_1f3fd.png\",\"lia_thumbs-down-tone-3\":\"/html/@D91F5B9AB8F38800E06B25F6D282250A/emoticons/1f44e_1f3fd.png\",\"lia_raised-fist-tone-3\":\"/html/@40F9B1E1EB1639ED975DE1394C88A725/emoticons/270a_1f3fd.png\",\"lia_oncoming-fist-tone-3\":\"/html/@1A413995760184C07F744F352D888455/emoticons/1f44a_1f3fd.png\",\"lia_left-facing-fist-tone-3\":\"/html/@CAF40290AF40DB4D9D8F67A2E954B252/emoticons/1f91b_1f3fd.png\",\"lia_right-facing-fist-tone-3\":\"/html/@5CC1875EAEE3F46C63B937E2336F240B/emoticons/1f91c_1f3fd.png\",\"lia_raised-back-of-hand-tone-3\":\"/html/@DBB5A31B7BBD7A91B8DC6F96D02934A5/emoticons/1f91a_1f3fd.png\",\"lia_waving-hand-tone-3\":\"/html/@ADAC57BD4E0405220D8B3C8F32E5DFD0/emoticons/1f44b_1f3fd.png\",\"lia_writing-hand-tone-3\":\"/html/@CEF8CA6BE38A4124123882A68B1B75C7/emoticons/270d_1f3fd.png\",\"lia_clapping-hands-tone-3\":\"/html/@ADFB61AE9BF856873251B21E5E742D8F/emoticons/1f44f_1f3fd.png\",\"lia_open-hands-tone-3\":\"/html/@4B2965D57C3E5CDAC4E24410414E1766/emoticons/1f450_1f3fd.png\",\"lia_raising-hands-tone-3\":\"/html/@7DFF9A414CC971B0A649E1271211DC1F/emoticons/1f64c_1f3fd.png\",\"lia_folded-hands-tone-3\":\"/html/@D37975EBF2CAC59E7F5886B1E648C842/emoticons/1f64f_1f3fd.png\",\"lia_nail-polish-tone-3\":\"/html/@3B91B43D4E989C2AE1582EFAFDF44E5C/emoticons/1f485_1f3fd.png\",\"lia_ear-tone-3\":\"/html/@427568ADC1A7D4DFEBECF813A7901C6A/emoticons/1f442_1f3fd.png\",\"lia_nose-tone-3\":\"/html/@58A60B8FCB54CC6D678EB79D888674D9/emoticons/1f443_1f3fd.png\"},\"tone-5\":{\"lia_baby-tone-5\":\"/html/@9B488FBA091C983456FD1CFDAB864D5B/emoticons/1f476_1f3ff.png\",\"lia_boy-tone-5\":\"/html/@166498AFA13982DB79A36132DEC8C59C/emoticons/1f466_1f3ff.png\",\"lia_girl-tone-5\":\"/html/@6CF694E431BEF0A5ADF079F5B1921ACC/emoticons/1f467_1f3ff.png\",\"lia_man-tone-5\":\"/html/@3A061D85E7FB5318DB88AABE8CC5F157/emoticons/1f468_1f3ff.png\",\"lia_woman-tone-5\":\"/html/@D0F21D3E19FF98152E963DD8D19D8153/emoticons/1f469_1f3ff.png\",\"lia_old-man-tone-5\":\"/html/@B71D463EA2C16B788458642B3F060431/emoticons/1f474_1f3ff.png\",\"lia_old-woman-tone-5\":\"/html/@AA09E61D4ADD70228C0C6D2F3C64B50D/emoticons/1f475_1f3ff.png\",\"lia_man-health-worker-tone-5\":\"/html/@E3A168ABCD2EBA894E30D22764FFFF42/emoticons/1f468_1f3ff_200d_2695.png\",\"lia_woman-health-worker-tone-5\":\"/html/@0062A1343E77DACF3CDCDCC62969F29C/emoticons/1f469_1f3ff_200d_2695.png\",\"lia_man-student-tone-5\":\"/html/@9DCE2F51DD3B91761FEDF2636B5665BC/emoticons/1f468_1f3ff_200d_1f393.png\",\"lia_woman-student-tone-5\":\"/html/@4AEFCB37F2B23D708696C3ACD8492E2F/emoticons/1f469_1f3ff_200d_1f393.png\",\"lia_man-teacher-tone-5\":\"/html/@82CEFC5786CF8EA96EABCA26129F807D/emoticons/1f468_1f3ff_200d_1f3eb.png\",\"lia_woman-teacher-tone-5\":\"/html/@30234840B3AD66CB5C41FBBDC8C5A91E/emoticons/1f469_1f3ff_200d_1f3eb.png\",\"lia_man-judge-tone-5\":\"/html/@5F67B4016958E1567BE4407418611D5E/emoticons/1f468_1f3ff_200d_2696.png\",\"lia_woman-judge-tone-5\":\"/html/@87559B3B31C683E27E2331A940EBC724/emoticons/1f469_1f3ff_200d_2696.png\",\"lia_man-farmer-tone-5\":\"/html/@CF226D8273C48152F1E005635C63360D/emoticons/1f468_1f3ff_200d_1f33e.png\",\"lia_woman-farmer-tone-5\":\"/html/@BEAA7F887DAEE14C6300AFD3087579C5/emoticons/1f469_1f3ff_200d_1f33e.png\",\"lia_man-cook-tone-5\":\"/html/@7D1FB7640A7456CB85E5A633962B5EA7/emoticons/1f468_1f3ff_200d_1f373.png\",\"lia_woman-cook-tone-5\":\"/html/@5AA6E7611E4C66D3006FA4ED06826F03/emoticons/1f469_1f3ff_200d_1f373.png\",\"lia_man-mechanic-tone-5\":\"/html/@7C9D5BA03869848726DA33C82727B518/emoticons/1f468_1f3ff_200d_1f527.png\",\"lia_woman-mechanic-tone-5\":\"/html/@C6D82C7C4EC3E81B52E2EED424B9D567/emoticons/1f469_1f3ff_200d_1f527.png\",\"lia_man-factory-worker-tone-5\":\"/html/@30701FBA0EF1032FAD4C650EBCA576FE/emoticons/1f468_1f3ff_200d_1f3ed.png\",\"lia_woman-factory-worker-tone-5\":\"/html/@BB612322E1BE184FDC994517A9E3333F/emoticons/1f469_1f3ff_200d_1f3ed.png\",\"lia_man-office-worker-tone-5\":\"/html/@627986DC553EFF9AA0278B9F142DDF66/emoticons/1f468_1f3ff_200d_1f4bc.png\",\"lia_woman-office-worker-tone-5\":\"/html/@E053D40AFA05CB004277503C1869179E/emoticons/1f469_1f3ff_200d_1f4bc.png\",\"lia_man-scientist-tone-5\":\"/html/@12A11CF79891190DA4B584AD92139536/emoticons/1f468_1f3ff_200d_1f52c.png\",\"lia_woman-scientist-tone-5\":\"/html/@C09E006FA7E3C8D4D77912814D421398/emoticons/1f469_1f3ff_200d_1f52c.png\",\"lia_man-technologist-tone-5\":\"/html/@1461565F93C16BE734F120FB9877F299/emoticons/1f468_1f3ff_200d_1f4bb.png\",\"lia_woman-technologist-tone-5\":\"/html/@4AB1B944312422608F871EDA96CC3C05/emoticons/1f469_1f3ff_200d_1f4bb.png\",\"lia_man-singer-tone-5\":\"/html/@20DE2E919FEB901BDCADF17907E2D373/emoticons/1f468_1f3ff_200d_1f3a4.png\",\"lia_woman-singer-tone-5\":\"/html/@7FF98AD04FC4459DEFD345D04E4CD55D/emoticons/1f469_1f3ff_200d_1f3a4.png\",\"lia_man-artist-tone-5\":\"/html/@52174605DF13DCD36789E216AB1FEE7D/emoticons/1f468_1f3ff_200d_1f3a8.png\",\"lia_woman-artist-tone-5\":\"/html/@F145EFF5EB59C8087EBAF1A84314007A/emoticons/1f469_1f3ff_200d_1f3a8.png\",\"lia_man-pilot-tone-5\":\"/html/@1AB208DDE14D864D17DD1C5543629C1D/emoticons/1f468_1f3ff_200d_2708.png\",\"lia_woman-pilot-tone-5\":\"/html/@D005D2AB05AAE6CE6CA177491E36A86F/emoticons/1f469_1f3ff_200d_2708.png\",\"lia_man-astronaut-tone-5\":\"/html/@384E8F3C757EA282F816F22166887B89/emoticons/1f468_1f3ff_200d_1f680.png\",\"lia_woman-astronaut-tone-5\":\"/html/@69F331E04AB5AEE5B7AE3F71B5CBA0EC/emoticons/1f469_1f3ff_200d_1f680.png\",\"lia_man-firefighter-tone-5\":\"/html/@06DC25E6B2184D3D574AAE6A4F78DE03/emoticons/1f468_1f3ff_200d_1f692.png\",\"lia_woman-firefighter-tone-5\":\"/html/@D27FA2E2A2ECFA2E3294A1441932D382/emoticons/1f469_1f3ff_200d_1f692.png\",\"lia_prince-tone-5\":\"/html/@ECF78A922CEE91E237D84DC4811F4165/emoticons/1f934_1f3ff.png\",\"lia_princess-tone-5\":\"/html/@4CC8293378EE280D4DFA104760333C31/emoticons/1f478_1f3ff.png\",\"lia_man-with-chinese-cap-tone-5\":\"/html/@33C55B149D33FBCF448B7E45C9EF53B3/emoticons/1f472_1f3ff.png\",\"lia_man-in-tuxedo-tone-5\":\"/html/@F18380427C2E39EDB51775CE2D942B97/emoticons/1f935_1f3ff.png\",\"lia_bride-with-veil-tone-5\":\"/html/@02B38E2DBEF7C1F8A3EC843EBDFA4054/emoticons/1f470_1f3ff.png\",\"lia_pregnant-woman-tone-5\":\"/html/@0977FC1EC4A4BC377AF9DCEEE6CC4A1A/emoticons/1f930_1f3ff.png\",\"lia_baby-angel-tone-5\":\"/html/@BDB775EA3B66A9AD8AE45DF972624BEF/emoticons/1f47c_1f3ff.png\",\"lia_santa-claus-tone-5\":\"/html/@E4DD052E5F4430C43298F0286E65E62B/emoticons/1f385_1f3ff.png\",\"lia_mrs.-claus-tone-5\":\"/html/@E5CCEA515E11E04121095D01A50416D7/emoticons/1f936_1f3ff.png\",\"lia_woman-dancing-tone-5\":\"/html/@93B4AA397CC662DA571834B6939A285A/emoticons/1f483_1f3ff.png\",\"lia_man-dancing-tone-5\":\"/html/@83C128C8C454DD58C9A0FC3C5579209F/emoticons/1f57a_1f3ff.png\",\"lia_person-taking-bath-tone-5\":\"/html/@AB6A716CC67F4F267DB053947B2E8574/emoticons/1f6c0_1f3ff.png\",\"lia_person-in-bed-tone-5\":\"/html/@64D8E1E289EEC367933AB6041951B10D/emoticons/1f6cc_1f3ff.png\",\"lia_man-in-suit-levitating-tone-5\":\"/html/@ACDCB9D4D5B6FDD484A96457F84D61AE/emoticons/1f574_1f3ff.png\",\"lia_horse-racing-tone-5\":\"/html/@7A2B6441E06558880F28D86CD8FB1F7D/emoticons/1f3c7_1f3ff.png\",\"lia_snowboarder-tone-5\":\"/html/@C2B71620F71330A985A93E8003CD2241/emoticons/1f3c2_1f3ff.png\",\"lia_selfie-tone-5\":\"/html/@7DDC63BA7D54B896914A6C027062E7A7/emoticons/1f933_1f3ff.png\",\"lia_flexed-biceps-tone-5\":\"/html/@1D26A63E0BA2C078CB0580777CCF68CE/emoticons/1f4aa_1f3ff.png\",\"lia_backhand-index-pointing-left-tone-5\":\"/html/@B73D322321DA36AAEF945E98B548C872/emoticons/1f448_1f3ff.png\",\"lia_backhand-index-pointing-right-tone-5\":\"/html/@C078E47570B3A5647083728A8149B3BC/emoticons/1f449_1f3ff.png\",\"lia_index-pointing-up-tone-5\":\"/html/@5CDA989D05A709947C49D3179B1DCEDA/emoticons/261d_1f3ff.png\",\"lia_backhand-index-pointing-up-tone-5\":\"/html/@3828982B56C678BEA1C0BCC1145F990C/emoticons/1f446_1f3ff.png\",\"lia_middle-finger-tone-5\":\"/html/@179902C761DC6A1C74488AABAB240CFF/emoticons/1f595_1f3ff.png\",\"lia_backhand-index-pointing-down-tone-5\":\"/html/@1277E3E5C624904FC66F7F148085B2CB/emoticons/1f447_1f3ff.png\",\"lia_victory-hand-tone-5\":\"/html/@6AD824161CB8D6F135C084996A48E45F/emoticons/270c_1f3ff.png\",\"lia_crossed-fingers-tone-5\":\"/html/@CE3B3D7FB008C77DF4EFE9B658F27DE0/emoticons/1f91e_1f3ff.png\",\"lia_vulcan-salute-tone-5\":\"/html/@D0503D1AE0A4D15C2C8073817AAE4EEF/emoticons/1f596_1f3ff.png\",\"lia_sign-of-the-horns-tone-5\":\"/html/@9F230799793E72DA9B0F34AFF9542EFC/emoticons/1f918_1f3ff.png\",\"lia_call-me-hand-tone-5\":\"/html/@9E2B341CA05E1CA16B8102035AD51370/emoticons/1f919_1f3ff.png\",\"lia_hand-with-fingers-splayed-tone-5\":\"/html/@B8782C315580AA225B9029D9B90D287C/emoticons/1f590_1f3ff.png\",\"lia_raised-hand-tone-5\":\"/html/@205F535D7BB7B495D042AED68764ADD5/emoticons/270b_1f3ff.png\",\"lia_ok-hand-tone-5\":\"/html/@555CA88E2BC2124896BA1712314E74FD/emoticons/1f44c_1f3ff.png\",\"lia_thumbs-up-tone-5\":\"/html/@04BEE72EA5849F4A35B6F1F9A0F1676C/emoticons/1f44d_1f3ff.png\",\"lia_thumbs-down-tone-5\":\"/html/@DC0DC805F23C601A6137F44EFFF4C4AA/emoticons/1f44e_1f3ff.png\",\"lia_raised-fist-tone-5\":\"/html/@F13656BCC60253A33428C97D0DE30F6F/emoticons/270a_1f3ff.png\",\"lia_oncoming-fist-tone-5\":\"/html/@631CA9A103E63F3012BC41B2F8B0BF05/emoticons/1f44a_1f3ff.png\",\"lia_left-facing-fist-tone-5\":\"/html/@9EEBDB6BFC1A7DB88E9F6FD5E99467F1/emoticons/1f91b_1f3ff.png\",\"lia_right-facing-fist-tone-5\":\"/html/@6192F6FA18152FF4CB1D788EE01CF9A2/emoticons/1f91c_1f3ff.png\",\"lia_raised-back-of-hand-tone-5\":\"/html/@F9263857DFA6CE70F040246212E0BE0E/emoticons/1f91a_1f3ff.png\",\"lia_waving-hand-tone-5\":\"/html/@18147A31D0538F7E384789D237916CD8/emoticons/1f44b_1f3ff.png\",\"lia_writing-hand-tone-5\":\"/html/@741B41F83F2882756108B38C681FFC34/emoticons/270d_1f3ff.png\",\"lia_clapping-hands-tone-5\":\"/html/@142D714B37A19FFD49CEE3A488B53164/emoticons/1f44f_1f3ff.png\",\"lia_open-hands-tone-5\":\"/html/@8A7DCF758938FE1C867325ED4861FEB3/emoticons/1f450_1f3ff.png\",\"lia_raising-hands-tone-5\":\"/html/@766DCAA9D3179A7E60513CA1A20253CD/emoticons/1f64c_1f3ff.png\",\"lia_folded-hands-tone-5\":\"/html/@B3CC1AC4AF932825DBB3549052E60C18/emoticons/1f64f_1f3ff.png\",\"lia_nail-polish-tone-5\":\"/html/@4F9A3BBF9E62D981350588EB084CDC3A/emoticons/1f485_1f3ff.png\",\"lia_ear-tone-5\":\"/html/@5002EB9A06C4C734C1330BD8564DF3FF/emoticons/1f442_1f3ff.png\",\"lia_nose-tone-5\":\"/html/@EED66391AF6E9F05BDD2C547EE9F9E08/emoticons/1f443_1f3ff.png\"}}","emoticonsAutosuggestionTextMaxLength":20,"html":"

    <\/span><\/i><\/span><\/i><\/span><\/i><\/span><\/i><\/span><\/i><\/span><\/i><\/span><\/i><\/span><\/i><\/span><\/i><\/div>

    <\/i><\/input><\/div>

    Search Results<\/div>

    No Matching Results<\/div>